npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2025 – Pkg Stats / Ryan Hefner

@syvlabshq/surge-addresses

v0.0.1-snapshot.293edc0

Published

Surge smart contract addresses and configuration

Readme

Deploy Surge Script

This package includes a CLI script for deploying the latest Surge smart contracts to any EVM (Ethereum Virtual Machine) compatible network.

Usage

This package vends a CLI for executing a deployment script that results in a full deployment of Surge Protocol.

The arguments are:


Options:
  -pk, --private-key <string>               Private key used to deploy all contracts
  -e, --env <string>                        Environment (Network type: mainnet, testnet, devnet, local, stagenet)
  -j, --json-rpc <url>                      JSON RPC URL where the program should be deployed
  -w9, --wrapped-native-token-address <address>            Address of the wrapped native token contract on this chain (optional, will deploy WrappedNativeERC20 if not provided)
  -ncl, --native-currency-label <string>    Native currency label, e.g. ETH
  -ncd, --native-currency-decimals <number> Native currency decimals (default: 18)
  -o, --owner-address <address>             Contract address that will own the deployed artifacts after the script runs
  -g, --gas-price <number>                  The gas price to pay in GWEI for each transaction (optional)
  -c, --confirmations <number>              How many confirmations to wait for after each transaction (optional) (default: "2")
  -t, --timeout <number>                    Timeout for RPC calls in seconds (default: 30)
  -u, --upgrade                             To upgrade proxy implementation
  -h, --help                                display help for command
  --chain-id <string>                       Chain id (optional, will fetch from RPC if not provided)
  --chain-name <string>                     Chain name
  --explorer-url <string>                   Chain explorer url
  --wss-url <string>                        Chain web socket url

The script runs a set of migrations, each migration deploying a contract or executing a transaction. Migration state is saved in a JSON file at the supplied path (./config/${env}.json).

To use the script, you must fund an address, and pass the private key of that address to the script so that it can construct and broadcast the deployment transactions.

Examples

Deploy to Hedera Testnet (8 decimals)

yarn workflow_start \
  --env testnet \
  --json-rpc "https://testnet.hashio.io/api" \
  --native-currency-label "HBAR" \
  --native-currency-decimals 8 \
  --owner-address "0xYourOwnerAddress" \
  --chain-name "Hedera Testnet"

Deploy with existing WETH9

yarn workflow_start \
  --env testnet \
  --json-rpc "https://your-rpc-url" \
  --wrapped-native-token-address "0xExistingWrappedNativeTokenAddress" \
  --native-currency-label "ETH" \
  --owner-address "0xYourOwnerAddress" \
  --chain-name "Your Chain"

The block explorer verification process (e.g. Etherscan) is specific to the network. For the existing deployments, we have used the @nomiclabs/hardhat-etherscan hardhat plugin in the individual repositories to verify the deployment addresses.

Note that in between deployment steps, the script waits for confirmations. By default, this is set to 2. If the network only mines blocks when the transactions is queued (e.g. a local testnet), you must set confirmations to 0.

Using Environment Variables

You can provide required options via environment variables instead of command-line arguments. This is useful for CI/CD or local development. The script will automatically use these environment variables if the corresponding CLI option is not provided.

Supported environment variables:

  • PRIVATE_KEY – Private key used to deploy all contracts
  • JSON_RPC – JSON RPC URL where the program should be deployed
  • WRAPPED_NATIVE_TOKEN_ADDRESS – Address of the wrapped native token contract on this chain
  • NATIVE_CURRENCY_LABEL – Native currency label, e.g. ETH
  • OWNER_ADDRESS – Contract address that will own the deployed artifacts after the script runs
  • GAS_PRICE – The gas price to pay in GWEI for each transaction (optional)
  • CONFIRMATIONS – How many confirmations to wait for after each transaction (optional)
  • ENV – Network type (mainnet, testnet, devnet, local, stagenet)
  • CHAIN_ID – Chain id
  • CHAIN_NAME – Chain name
  • EXPLORER_URL – Chain explorer url
  • WSS_URL – Chain web socket url

You can set these in a .env file (for local development) or in your CI/CD environment configuration. Example .env file:

PRIVATE_KEY=your_private_key_here
JSON_RPC=https://your.rpc.url
WRAPPED_NATIVE_TOKEN_ADDRESS=0x...
NATIVE_CURRENCY_LABEL=ETH
OWNER_ADDRESS=0x...
GAS_PRICE=20
CONFIRMATIONS=2

The script will prioritize CLI arguments over environment variables if both are provided.

Using as a Library

This package can be used as a Node.js library to access Surge contract addresses programmatically:

// Using named exports
import { testnet, mainnet } from '@syvlabshq/surge-addresses';
console.log(testnet.chains['xrpl-evm'].contracts.coreFactoryAddress.address);

// Or using default export
import addresses from '@syvlabshq/surge-addresses';
console.log(addresses.testnet.chains['base-sepolia'].contracts.swapRouter.address);

Note: This package uses ES modules and requires Node.js 17.5.0 or higher.

Development

To run unit tests, run yarn test.

For testing the script, run yarn start.

To publish the addresses package, first create a version: npm version <version identifier>, then publish via npm publish. Don't forget to push your tagged commit!

FAQs

How much gas should I expect to use for full completion?

We estimate 30M - 40M gas needed to run the full deploy script.

Where can I see all the addresses where each contract is deployed?

Check out config/${env}.json. It'll show you the final deployed addresses.

How long will the script take?

Depends on the confirmation times and gas parameter. The deploy script sends up to a total of 14 transactions.

Where should I ask questions or report issues?

You can file them in issues on this repo and we'll try our best to respond.