Skip to content

Commit

Permalink
feat: added arbitrum sepolia deployments (#97)
Browse files Browse the repository at this point in the history
  • Loading branch information
Maikol authored Nov 27, 2023
1 parent 173b530 commit 87e9ecb
Show file tree
Hide file tree
Showing 2 changed files with 21 additions and 0 deletions.
5 changes: 5 additions & 0 deletions contracts/addresses.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,5 +5,10 @@
"421613": {
"Subscriptions": "0x29f49a438c747e7Dd1bfe7926b03783E47f9447B",
"Registry": "0xb9c4faA67f80e3fB4C4b7b7b2AcA6E0D1d7C711B"
},
"421614": {
"StableToken": "0x4ec3896563A0Ad3A3f054556E6e2D928D751EB36",
"Subscriptions": "0xCE7E2C9CC2f39de94E82b9E759DBd8cE1A8a54Ee",
"Registry": "0xBF29c01B0B897747C0032Ec4407ee030ed2bB7F7"
}
}
16 changes: 16 additions & 0 deletions contracts/hardhat.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,11 @@ const networkConfigs: NetworkConfig[] = [
chainId: 421613,
url: 'https://goerli-rollup.arbitrum.io/rpc',
},
{
network: 'arbitrum-sepolia',
chainId: 421614,
url: 'https://sepolia-rollup.arbitrum.io/rpcblock',
},
];

function getAccountsKeys() {
Expand Down Expand Up @@ -99,7 +104,18 @@ const config: HardhatUserConfig = {
apiKey: {
arbitrumOne: process.env.ARBISCAN_API_KEY!,
arbitrumGoerli: process.env.ARBISCAN_API_KEY!,
arbitrumSepolia: process.env.ARBISCAN_API_KEY!,
},
customChains: [
{
network: 'arbitrumSepolia',
chainId: 421614,
urls: {
apiURL: 'https://api-sepolia.arbiscan.io/api',
browserURL: 'https://sepolia.arbiscan.io',
},
},
],
},
};

Expand Down

0 comments on commit 87e9ecb

Please sign in to comment.