Skip to content

Commit e050379

Browse files
Merge pull request #5195 from BitGo/WIN-3863-Add-contract-addresses
chore: update batcher contract address for coredao and oas
2 parents 05244ac + dbc69fd commit e050379

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

modules/bitgo/test/v2/unit/wallets.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1001,7 +1001,7 @@ describe('V2 Wallets:', function () {
10011001
});
10021002

10031003
const walletNock = nock('https://bitgo.fakeurl')
1004-
.post(`/api/v2/${coin}/wallet`, {
1004+
.post(`/api/v2/${coin}/wallet/add`, {
10051005
label: 'tss wallet',
10061006
m: 2,
10071007
n: 3,
@@ -1059,7 +1059,7 @@ describe('V2 Wallets:', function () {
10591059
};
10601060

10611061
const walletNock = nock('https://bitgo.fakeurl')
1062-
.post(`/api/v2/${coin}/wallet`)
1062+
.post(`/api/v2/${coin}/wallet/add`)
10631063
.times(1)
10641064
.reply(200, { ...params, keys });
10651065

modules/statics/src/networks.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1083,7 +1083,7 @@ class OasTestnet extends Testnet implements EthereumNetwork {
10831083
accountExplorerUrl = 'https://explorer.testnet.oasys.games/address/';
10841084
chainId = 9372;
10851085
nativeCoinOperationHashPrefix = '9372';
1086-
batcherContractAddress = '0x55670664990e6efb9189cb15ff59d25c0579d32b';
1086+
batcherContractAddress = '0xedf1a0016d9c41d2ad0c275e1ba708361a90c0d1';
10871087
forwarderFactoryAddress = '0x37996e762fa8b671869740c79eb33f625b3bf92a';
10881088
forwarderImplementationAddress = '0xd5fe1c1f216b775dfd30638fa7164d41321ef79b';
10891089
}
@@ -1106,7 +1106,7 @@ class CoredaoTestnet extends Testnet implements EthereumNetwork {
11061106
accountExplorerUrl = 'https://scan.test.btcs.network/address/';
11071107
chainId = 1115;
11081108
nativeCoinOperationHashPrefix = '1115';
1109-
batcherContractAddress = '0x103a5e8b870ca1de37982ddc09cbb4f2fd6fe6fe';
1109+
batcherContractAddress = '0xad7a34aa9c0c7cb2c4d1f07ce8d1d0530b07fe27';
11101110
forwarderFactoryAddress = '0x37996e762fa8b671869740c79eb33f625b3bf92a';
11111111
forwarderImplementationAddress = '0xd5fe1c1f216b775dfd30638fa7164d41321ef79b';
11121112
}

0 commit comments

Comments
 (0)