From dbc69fd59ae6c6a5c867a80b144d340db28f6025 Mon Sep 17 00:00:00 2001 From: Paras Garg Date: Mon, 2 Dec 2024 19:45:12 +0530 Subject: [PATCH] chore: update batcher contract address for coredao and oas Ticket: WIN-3863 TICKET: WIN-3863 --- modules/bitgo/test/v2/unit/wallets.ts | 4 ++-- modules/statics/src/networks.ts | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/modules/bitgo/test/v2/unit/wallets.ts b/modules/bitgo/test/v2/unit/wallets.ts index 001b38bca0..be7140e376 100644 --- a/modules/bitgo/test/v2/unit/wallets.ts +++ b/modules/bitgo/test/v2/unit/wallets.ts @@ -1001,7 +1001,7 @@ describe('V2 Wallets:', function () { }); const walletNock = nock('https://bitgo.fakeurl') - .post(`/api/v2/${coin}/wallet`, { + .post(`/api/v2/${coin}/wallet/add`, { label: 'tss wallet', m: 2, n: 3, @@ -1059,7 +1059,7 @@ describe('V2 Wallets:', function () { }; const walletNock = nock('https://bitgo.fakeurl') - .post(`/api/v2/${coin}/wallet`) + .post(`/api/v2/${coin}/wallet/add`) .times(1) .reply(200, { ...params, keys }); diff --git a/modules/statics/src/networks.ts b/modules/statics/src/networks.ts index f5a0439188..6f893d1f07 100644 --- a/modules/statics/src/networks.ts +++ b/modules/statics/src/networks.ts @@ -1083,7 +1083,7 @@ class OasTestnet extends Testnet implements EthereumNetwork { accountExplorerUrl = 'https://explorer.testnet.oasys.games/address/'; chainId = 9372; nativeCoinOperationHashPrefix = '9372'; - batcherContractAddress = '0x55670664990e6efb9189cb15ff59d25c0579d32b'; + batcherContractAddress = '0xedf1a0016d9c41d2ad0c275e1ba708361a90c0d1'; forwarderFactoryAddress = '0x37996e762fa8b671869740c79eb33f625b3bf92a'; forwarderImplementationAddress = '0xd5fe1c1f216b775dfd30638fa7164d41321ef79b'; } @@ -1106,7 +1106,7 @@ class CoredaoTestnet extends Testnet implements EthereumNetwork { accountExplorerUrl = 'https://scan.test.btcs.network/address/'; chainId = 1115; nativeCoinOperationHashPrefix = '1115'; - batcherContractAddress = '0x103a5e8b870ca1de37982ddc09cbb4f2fd6fe6fe'; + batcherContractAddress = '0xad7a34aa9c0c7cb2c4d1f07ce8d1d0530b07fe27'; forwarderFactoryAddress = '0x37996e762fa8b671869740c79eb33f625b3bf92a'; forwarderImplementationAddress = '0xd5fe1c1f216b775dfd30638fa7164d41321ef79b'; }