Compare commits

...

3 Commits

Author SHA1 Message Date
Sebastián Claudio Nale 8de75452bb evm: updates addresses for sepolia and base sepolia 2024-01-12 18:32:58 -03:00
Sebastián Claudio Nale 179eddc5ac evm: fixes tsconfig 2024-01-12 13:47:35 -03:00
Sebastián Claudio Nale 3bc5d948d0 evm: adds polygon mainnet address 2024-01-10 21:22:32 -03:00
4 changed files with 22 additions and 8 deletions

14
evm/env/mainnet/polygon.env vendored Normal file
View File

@ -0,0 +1,14 @@
export CONFIGURE_CCTP_RPC="https://polygon-pokt.nodies.app"
### Contract addresses
export RELEASE_WORMHOLE_ADDRESS=0x7A4B5a56256163F07b2C80A7cA55aBE66c4ec4d7
export RELEASE_CIRCLE_BRIDGE_ADDRESS=0x9daF8c91AEFAE50b9c0E69629D3F6Ca40cA3B3FE
export RELEASE_WORMHOLE_FINALITY=1
### Deployed Circle Integration addresses
export CIRCLE_INTEGRATION_IMPLEMENTATION=0x03faBB06Fa052557143dC28eFCFc63FC12843f1D
export CIRCLE_INTEGRATION_SETUP=0x2703483B1a5a7c577e8680de9Df8Be03c6f30e3c
export CIRCLE_INTEGRATION_PROXY=0x0FF28217dCc90372345954563486528aa865cDd6
# Used in verification scripts
export RELEASE_EVM_CHAIN_ID=137

View File

@ -6,9 +6,9 @@ export RELEASE_CIRCLE_BRIDGE_ADDRESS=0x9f3B8679c73C2Fef8b59B4f3444d4e156fb70AA5
export RELEASE_WORMHOLE_FINALITY=1
### Deployed Circle Integration addresses
export CIRCLE_INTEGRATION_IMPLEMENTATION=
export CIRCLE_INTEGRATION_SETUP=
export CIRCLE_INTEGRATION_PROXY=
export CIRCLE_INTEGRATION_IMPLEMENTATION=0xD73aFD826D6bDD4D2fEF326DF5091451A5d8130a
export CIRCLE_INTEGRATION_SETUP=0xC5180b274Ead8aC34131B6dDa0323e403d671De7
export CIRCLE_INTEGRATION_PROXY=0x2703483B1a5a7c577e8680de9Df8Be03c6f30e3c
# Used in verification scripts
export RELEASE_EVM_CHAIN_ID=84532

View File

@ -1,4 +1,4 @@
export CONFIGURE_CCTP_RPC="https://rpc.notadegen.com/eth/sepolia"
export CONFIGURE_CCTP_RPC="https://rpc.sepolia.org"
### Contract addresses
export RELEASE_WORMHOLE_ADDRESS=0x4a8bc80Ed5a4067f1CCf107057b8270E0cC11A78
@ -6,9 +6,9 @@ export RELEASE_CIRCLE_BRIDGE_ADDRESS=0x9f3B8679c73C2Fef8b59B4f3444d4e156fb70AA5
export RELEASE_WORMHOLE_FINALITY=200
### Deployed Circle Integration addresses
export CIRCLE_INTEGRATION_IMPLEMENTATION=
export CIRCLE_INTEGRATION_SETUP=
export CIRCLE_INTEGRATION_PROXY=
export CIRCLE_INTEGRATION_IMPLEMENTATION=0xD73aFD826D6bDD4D2fEF326DF5091451A5d8130a
export CIRCLE_INTEGRATION_SETUP=0xC5180b274Ead8aC34131B6dDa0323e403d671De7
export CIRCLE_INTEGRATION_PROXY=0x2703483B1a5a7c577e8680de9Df8Be03c6f30e3c
# Used in verification scripts
export RELEASE_EVM_CHAIN_ID=11155111

View File

@ -1,6 +1,6 @@
{
"compilerOptions": {
"outdir": "build",
"outDir": "build",
"types": ["node", "mocha", "chai"],
"typeRoots": ["./node_modules/@types"],
"lib": ["ES2022", "dom"],