Skip to content

Commit 5fa5cbc

Browse files
Merge pull request #5951 from BitGo/COIN-3747
chore: add BULK_TRANSACTION to topeth and hteth tokens
2 parents 4c5573b + 7bda47a commit 5fa5cbc

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

modules/statics/src/account.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -733,7 +733,7 @@ export function terc20(
733733
decimalPlaces: number,
734734
contractAddress: string,
735735
asset: UnderlyingAsset,
736-
features: CoinFeature[] = AccountCoin.DEFAULT_FEATURES,
736+
features: CoinFeature[] = [...AccountCoin.DEFAULT_FEATURES, CoinFeature.BULK_TRANSACTION],
737737
prefix = '',
738738
suffix: string = name.toUpperCase(),
739739
network: EthereumNetwork = Networks.test.kovan
@@ -2075,7 +2075,7 @@ export function topethErc20(
20752075
decimalPlaces: number,
20762076
contractAddress: string,
20772077
asset: UnderlyingAsset,
2078-
features: CoinFeature[] = AccountCoin.DEFAULT_FEATURES,
2078+
features: CoinFeature[] = [...AccountCoin.DEFAULT_FEATURES, CoinFeature.BULK_TRANSACTION],
20792079
prefix = '',
20802080
suffix: string = name.toUpperCase(),
20812081
network: AccountNetwork = Networks.test.optimism,

modules/statics/src/coins.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1023,7 +1023,7 @@ export const coins = CoinMap.fromCoins([
10231023
18,
10241024
UnderlyingAsset.OPETH,
10251025
BaseUnit.ETH,
1026-
OPETH_FEATURES
1026+
[...OPETH_FEATURES, CoinFeature.BULK_TRANSACTION]
10271027
),
10281028
account(
10291029
'53b1e350-f907-45ec-abf7-11d132547055',

0 commit comments

Comments
 (0)