Fix contract remove

This commit is contained in:
Agustin Pazos 2024-04-05 11:22:13 -03:00
parent ce478c99d9
commit 0658d5a739
2 changed files with 48 additions and 0 deletions

View File

@ -164,3 +164,19 @@ var OPTIMISM_MAINNET = WatcherBlockchainAddresses{
},
},
}
var BASE_MAINNET = WatcherBlockchainAddresses{
ChainID: vaa.ChainIDBase,
Name: "base",
SizeBlocks: 100,
WaitSeconds: 10,
InitialBlock: 1_422_314,
MethodsByAddress: map[string][]BlockchainMethod{
strings.ToLower("0x8d2de8d2f73F1F4cAB472AC9A881C9b123C79627"): {
{
ID: MetehodIDCompleteTransferWithRelay,
Name: MetehodCompleteTransferWithRelay,
},
},
},
}

View File

@ -155,3 +155,35 @@ var OPTIMISM_TESTNET = WatcherBlockchainAddresses{
},
},
}
var BASE_TESTNET = WatcherBlockchainAddresses{
ChainID: vaa.ChainIDBase,
Name: "base_goerli",
SizeBlocks: 100,
WaitSeconds: 10,
InitialBlock: 902_385,
MethodsByAddress: map[string][]BlockchainMethod{
strings.ToLower("0xA31aa3FDb7aF7Db93d18DDA4e19F811342EDF780"): {
{
ID: MetehodIDCompleteTransferWithRelay,
Name: MetehodCompleteTransferWithRelay,
},
},
},
}
var BASE_SEPOLIA_TESTNET = WatcherBlockchainAddresses{
ChainID: vaa.ChainIDBaseSepolia,
Name: "base_sepolia",
SizeBlocks: 100,
WaitSeconds: 10,
InitialBlock: 3_415_420,
MethodsByAddress: map[string][]BlockchainMethod{
strings.ToLower("0x86F55A04690fd7815A3D802bD587e83eA888B239"): {
{
ID: MetehodIDCompleteTransferWithRelay,
Name: MetehodCompleteTransferWithRelay,
},
},
},
}