Skip to content

Commit

Permalink
Merge pull request #4891 from BitGo/WIN-3441
Browse files Browse the repository at this point in the history
feat(sui): enable token bulk transactions
  • Loading branch information
hitansh-bitgo authored Sep 9, 2024
2 parents 58f99dd + 7ba7ddf commit faa6546
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions modules/statics/src/account.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2123,7 +2123,7 @@ export function suiToken(
module: string,
symbol: string,
asset: UnderlyingAsset,
features: CoinFeature[] = AccountCoin.DEFAULT_FEATURES,
features: CoinFeature[] = [...AccountCoin.DEFAULT_FEATURES, CoinFeature.BULK_TRANSACTION],
prefix = '',
suffix: string = name.toUpperCase(),
network: AccountNetwork = Networks.main.sui,
Expand Down Expand Up @@ -2177,7 +2177,7 @@ export function tsuiToken(
module: string,
symbol: string,
asset: UnderlyingAsset,
features: CoinFeature[] = AccountCoin.DEFAULT_FEATURES,
features: CoinFeature[] = [...AccountCoin.DEFAULT_FEATURES, CoinFeature.BULK_TRANSACTION],
prefix = '',
suffix: string = name.toUpperCase(),
network: AccountNetwork = Networks.test.sui,
Expand Down

0 comments on commit faa6546

Please sign in to comment.