File tree Expand file tree Collapse file tree 2 files changed +3
-3
lines changed
Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Original file line number Diff line number Diff 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 ,
Original file line number Diff line number Diff 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' ,
You can’t perform that action at this time.
0 commit comments