Skip to content

Commit

Permalink
Merge pull request #5195 from BitGo/WIN-3863-Add-contract-addresses
Browse files Browse the repository at this point in the history
chore: update batcher contract address for coredao and oas
  • Loading branch information
parasgarg-bitgo authored Dec 3, 2024
2 parents 05244ac + dbc69fd commit e050379
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions modules/bitgo/test/v2/unit/wallets.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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,
Expand Down Expand Up @@ -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 });

Expand Down
4 changes: 2 additions & 2 deletions modules/statics/src/networks.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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';
}
Expand All @@ -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';
}
Expand Down

0 comments on commit e050379

Please sign in to comment.