Skip to content

Commit

Permalink
Merge pull request #233 from renproject/release/3.6.0
Browse files Browse the repository at this point in the history
Migrate Optimism and Arbitrum testnets to Goerli
  • Loading branch information
jazg authored Nov 2, 2022
2 parents c6f67c2 + 90c41d3 commit bb970c5
Show file tree
Hide file tree
Showing 2 changed files with 21 additions and 13 deletions.
16 changes: 10 additions & 6 deletions packages/chains/chains-ethereum/src/arbitrum.ts
Original file line number Diff line number Diff line change
Expand Up @@ -34,28 +34,32 @@ const configMap: EthereumBaseChain["configMap"] = {
isTestnet: true,

nativeAsset: {
name: "Arbitrum Rinkeby Ether",
name: "Arbitrum Görli Ether",
symbol: "ArbETH",
decimals: 18,
},
averageConfirmationTime: 4,

config: {
chainId: "0x66eeb",
chainName: "Arbitrum Rinkeby",
chainName: "Arbitrum Görli",
nativeCurrency: {
name: "Arbitrum Rinkeby Ether",
name: "Arbitrum Görli Ether",
symbol: "ARETH",
decimals: 18,
},
rpcUrls: ["https://rinkeby.arbitrum.io/rpc"],
blockExplorerUrls: ["https://testnet.arbiscan.io"],
rpcUrls: [
"https://goerli-rollup.arbitrum.io/rpc",
"https://arb-goerli.g.alchemy.com/v2/${ALCHEMY_API_KEY}",
"wss://arb-goerli.g.alchemy.com/v2/${ALCHEMY_API_KEY}",
],
blockExplorerUrls: ["https://goerli.arbiscan.io"],
},

logRequestLimit: 20000,
addresses: {
GatewayRegistry: "0x5076a1F237531fa4dC8ad99bb68024aB6e1Ff701",
BasicBridge: "0xcb6bD6B6c7D7415C0157e393Bb2B6Def7555d518",
BasicBridge: "0x081636b68aBD7695006e0baE4d8663b91EC5Cfc1",
},
},
};
Expand Down
18 changes: 11 additions & 7 deletions packages/chains/chains-ethereum/src/optimism.ts
Original file line number Diff line number Diff line change
Expand Up @@ -32,25 +32,29 @@ const configMap: EthereumBaseChain["configMap"] = {
[RenNetwork.Testnet]: {
selector: "Optimism",

nativeAsset: { name: "Optimism Ether", symbol: "oETH", decimals: 18 },
nativeAsset: {
name: "Optimism Görli Ether",
symbol: "oETH",
decimals: 18,
},
averageConfirmationTime: 5,
logRequestLimit: 10000,

config: {
chainId: "0x45",
chainName: "Optimism",
chainName: "Optimism Görli",
nativeCurrency: { name: "Ether", symbol: "ETH", decimals: 18 },
rpcUrls: [
"https://kovan.optimism.io/",
"https://opt-kovan.g.alchemy.com/v2/${ALCHEMY_API_KEY}",
"wss://opt-kovan.g.alchemy.com/v2/${ALCHEMY_API_KEY}",
"https://goerli.optimism.io",
"https://opt-goerli.g.alchemy.com/v2/${ALCHEMY_API_KEY}",
"wss://opt-goerli.g.alchemy.com/v2/${ALCHEMY_API_KEY}",
],
blockExplorerUrls: ["https://kovan-optimistic.etherscan.io"],
blockExplorerUrls: ["https://goerli-optimism.etherscan.io"],
},

addresses: {
GatewayRegistry: "0x5076a1F237531fa4dC8ad99bb68024aB6e1Ff701",
BasicBridge: "0xcb6bD6B6c7D7415C0157e393Bb2B6Def7555d518",
BasicBridge: "0x081636b68aBD7695006e0baE4d8663b91EC5Cfc1",
},
},
};
Expand Down

0 comments on commit bb970c5

Please sign in to comment.