Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions modules/statics/src/coinFeatures.ts
Original file line number Diff line number Diff line change
Expand Up @@ -87,6 +87,7 @@ export const AVAXC_FEATURES = [
CoinFeature.MULTISIG,
CoinFeature.EIP1559,
CoinFeature.STAKING,
CoinFeature.ERC20_BULK_TRANSACTION,
];
export const CELO_FEATURES = [
...ETH_FEATURES,
Expand Down
2 changes: 2 additions & 0 deletions modules/statics/src/networks.ts
Original file line number Diff line number Diff line change
Expand Up @@ -305,6 +305,7 @@ class AvalancheC extends Mainnet implements AccountNetwork {
explorerUrl = 'https://subnets.avax.network/c-chain/tx/';
accountExplorerUrl = 'https://subnets.avax.network/c-chain/address/';
chainId = 43114;
batcherContractAddress = '0x3e1e5d78e44f15593b3b61ed278f12c27f0ff33e';
}

class AvalancheCTestnet extends Testnet implements AccountNetwork {
Expand All @@ -314,6 +315,7 @@ class AvalancheCTestnet extends Testnet implements AccountNetwork {
explorerUrl = 'https://subnets-test.avax.network/c-chain/tx/';
accountExplorerUrl = 'https://subnets-test.avax.network/c-chain/address/';
chainId = 43113;
batcherContractAddress = '0x3e1e5d78e44f15593b3b61ed278f12c27f0ff33e';
}

class AvalancheP extends Mainnet implements AvalancheNetwork {
Expand Down
1 change: 1 addition & 0 deletions modules/statics/test/unit/coins.ts
Original file line number Diff line number Diff line change
Expand Up @@ -1119,6 +1119,7 @@ describe('ERC20 Bulk Transaction Feature', () => {
'txdc',
'bsc',
'tbsc',
'tavaxc',
];
erc20BulkTransactionCoins.forEach((coinName) => {
const coin = coins.get(coinName);
Expand Down