Skip to content

Commit

Permalink
Merge pull request #93 from stakedotlink/arb-token-deployments
Browse files Browse the repository at this point in the history
Added arbitrum token deployments
  • Loading branch information
BkChoy authored Feb 23, 2024
2 parents ee55c7f + 7a3067a commit 59de3a8
Show file tree
Hide file tree
Showing 3 changed files with 21 additions and 9 deletions.
15 changes: 15 additions & 0 deletions deployments/arbitrum.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
{
"LINKToken": {
"address": "0xf97f4df75117a78c1A5a0DBb814Af92458539FB4",
"artifact": "contracts/core/tokens/base/ERC677.sol:ERC677"
},
"SDLToken": {
"address": "0xdFeA35757264F5b6C0ff21104151D9F991D0eEC0",
"artifact": "BurnMintERC677"
},
"LINK_WrappedSDToken": {
"address": "0x3106E2e148525b3DB36795b04691D444c24972fB",
"artifact": "BurnMintERC677"
}
}

13 changes: 5 additions & 8 deletions hardhat.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -30,19 +30,16 @@ const config: HardhatUserConfig = {
url: 'http://127.0.0.1:8545',
accounts,
},
rinkeby: {
url: '',
accounts,
},
ropsten: {
url: '',
accounts,
},
mainnet: {
url: 'http://localhost:1248',
accounts: 'remote',
timeout: 600000,
},
arbitrum: {
url: '',
chainId: 42161,
accounts,
},
testnet: {
url: '',
accounts,
Expand Down
2 changes: 1 addition & 1 deletion scripts/prod/ccip/deploy-ccip-dest-tokens.ts
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ async function main() {
SDLToken: sdlToken.address,
LINK_WrappedSDToken: wrappedSDToken.address,
},
{ SDLToken: 'BurnMintERC677', LINK_wrappedSDToken: 'BurnMintERC677' }
{ SDLToken: 'BurnMintERC677', LINK_WrappedSDToken: 'BurnMintERC677' }
)
}

Expand Down

0 comments on commit 59de3a8

Please sign in to comment.