Skip to content

Commit

Permalink
feat(testnet): configure more evm chains
Browse files Browse the repository at this point in the history
  • Loading branch information
imsk17 committed Jan 27, 2025
1 parent 7861a97 commit 7c8f9fd
Showing 1 changed file with 55 additions and 11 deletions.
66 changes: 55 additions & 11 deletions src/config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,39 @@ export const bridgeTestChains = [
decimals: 18,
blockChunks: 1000,
},
{
chain: "POLYGON",
rpcURL: "https://rpc-amoy.polygon.technology",
nativeCoinSymbol: "POLY",
intialFund: "50000000000000000",
contractAddress: "0x04cAEd1763B2C121D92FcaEaB41BFfe3EAB57EFC",
chainType: "evm",
lastBlock: 17353311,
decimals: 18,
blockChunks: 1000,
},
{
chain: "AVALANCHE",
rpcURL: "https://api.avax-test.network/ext/bc/C/rpc",
nativeCoinSymbol: "AVAX",
intialFund: "50000000000000000",
contractAddress: "0x04cAEd1763B2C121D92FcaEaB41BFfe3EAB57EFC",
chainType: "evm",
lastBlock: 17755186,
decimals: 18,
blockChunks: 1000,
},
{
chain: "ETHEREUM",
rpcURL: "https://1rpc.io/sepolia",
nativeCoinSymbol: "ETH",
intialFund: "50000000000000000",
contractAddress: "0x243f450ce9cD86b25401854F97b41E33523Da333",
chainType: "evm",
lastBlock: 7581112,
decimals: 18,
blockChunks: 1000,
},
{
chain: "HEDERA",
rpcURL: "https://testnet.hashio.io/api",
Expand Down Expand Up @@ -118,17 +151,17 @@ export const bridgeTestChains = [
theGraphApiUrl:
"https://api.studio.thegraph.com/query/89122/near-xp/version/latest",
},
// {
// chain: "BLAST",
// rpcURL: "https://blast-sepolia.blockpi.network/v1/rpc/public",
// nativeCoinSymbol: "ETH",
// intialFund: "50000000000000000",
// contractAddress: "0x2Aa8Dbb7543754d70B5A40D52cB81c2a0bB08B83",
// chainType: "evm",
// lastBlock: 11980723,
// decimals: 18,
// blockChunks: 1000,
// },
{
chain: "BLAST",
rpcURL: "https://blast-sepolia.blockpi.network/v1/rpc/public",
nativeCoinSymbol: "ETH",
intialFund: "50000000000000000",
contractAddress: "0x2Aa8Dbb7543754d70B5A40D52cB81c2a0bB08B83",
chainType: "evm",
lastBlock: 11980723,
decimals: 18,
blockChunks: 1000,
},
{
chain: "APTOS",
chainType: "aptos",
Expand Down Expand Up @@ -177,6 +210,17 @@ export const bridgeTestChains = [
rpcURL: "https://rpc.testcosmos.directory/terra2testnet",
walletPrefix: "terra",
},
{
chain: "SKALE",
rpcURL: "https://testnet.skalenodes.com/v1/juicy-low-small-testnet",
nativeCoinSymbol: "ETH",
intialFund: "50000000000000000",
contractAddress: "0x8Cd9d547a12FDd886266b102210B2BF123E993Ff",
chainType: "evm",
lastBlock: 5255449,
decimals: 18,
blockChunks: 1000,
},
] as const satisfies TChain[];

export const storageTestnetConfig: IEvmChainConfig = {
Expand Down

0 comments on commit 7c8f9fd

Please sign in to comment.