Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions .env.example
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,10 @@ RPC_URL_ZKEVM=https://zkevm-rpc.com

# Testnets
RPC_URL_CONSENSYS_ZKEVM_TESTNET=XXX
RPC_URL_FUJI=XXX
RPC_URL_BSC_TESTNET=XXX
RPC_URL_SCROLL_ALPHA=https://alpha-rpc.scroll.io/l2
RPC_URL_OPTIMISM_SEPOLIA=XXX

# Block Explorere for verification
ETHERSCAN_KEY=XXX
Expand All @@ -28,3 +30,6 @@ GNOSISBSCOUT_KEY=XXX
MOONRIVER_MOONSCAN_KEY=XXX
MOONBEAM_MOONSCAN_KEY=XXX
NOVA_ARBISCAN_KEY=XXX
OPTIMISM_SEPOLIA_ETHERSCAN_KEY=XXX
FUJI_SNOWTRACE_KEY=XXX

2 changes: 2 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -69,6 +69,8 @@ LIFI Supports a large number of chains and we are only growing. CREATE3 allows u
- Mumbai
- Sepolia
- Berachain Testnet
- Optimism Sepolia
- Fuji (Avalanche Testnet)

## Usage

Expand Down
3 changes: 3 additions & 0 deletions deployments/fuji.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
{
"CREATE3Factory": ""
}
3 changes: 3 additions & 0 deletions deployments/optimism-sepolia.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
{
"CREATE3Factory": ""
}
4 changes: 4 additions & 0 deletions foundry.toml
Original file line number Diff line number Diff line change
Expand Up @@ -47,8 +47,10 @@ zksync = "${RPC_URL_ZKSYNC}"
zkevm = "${RPC_URL_ZKEVM}"

# testnets
fuji = "${RPC_URL_FUJI}"
goerli = "${RPC_URL_GOERLI}"
sepolia = "${RPC_URL_SEPOLIA}"
optimism-sepolia = "${RPC_URL_OPTIMISM_SEPOLIA}"
mumbai = "${RPC_URL_MUMBAI}"
arbitrum-goerli = "${RPC_URL_ARBITRUM_GOERLI}"
consensys-zkevm-testnet = "${RPC_URL_CONSENSYS_ZKEVM_TESTNET}"
Expand Down Expand Up @@ -91,9 +93,11 @@ xlayer = { key = "${XLAYER_API_KEY}", url = "https://www.oklink.com/api/v5/explo

#testnets
goerli = { key = "${ETHERSCAN_KEY}" }
fuji = { key = "${FUJI_SNOWTRACE_KEY}", url = "https://subnets-test.avax.network/c-chain" }
sepolia = { key = "${ETHERSCAN_KEY}" }
mumbai = { key = "${POLYGONSCAN_KEY}", url = "https://api-testnet.polygonscan.com/api" }
arbitrum-goerli = { key = "${ARBISCAN_KEY}", url = "https://api-goerli.arbiscan.io/api" }
optimism-sepolia = { key = "${OPTIMISM_SEPOLIA_ETHERSCAN_KEY}", url = "https://api-optimistic.etherscan.io/api" }
beratest = { key = "${BERATEST_API_KEY}", url = "https://api.routescan.io/v2/network/testnet/evm/80084/etherscan/api", chain = "80084" }

# See more config options https://github.com/foundry-rs/foundry/tree/master/config
Expand Down