File tree Expand file tree Collapse file tree 2 files changed +6
-0
lines changed
Expand file tree Collapse file tree 2 files changed +6
-0
lines changed Original file line number Diff line number Diff line change @@ -508,6 +508,10 @@ export enum CoinFeature {
508508 * This coin requires a deposit acceptance transaction
509509 */
510510 REQUIRES_DEPOSIT_ACCEPTANCE_TRANSACTION = 'requires-deposit-acceptance-transaction' ,
511+ /**
512+ * This coin allows negative fees in transactions
513+ */
514+ ALLOWS_NEGATIVE_FEE = 'allows-negative-fee' ,
511515}
512516
513517/**
Original file line number Diff line number Diff line change @@ -399,12 +399,14 @@ export const SUI_FEATURES = [
399399 CoinFeature . CUSTODY_BITGO_FRANKFURT ,
400400 CoinFeature . CUSTODY_BITGO_GERMANY ,
401401 CoinFeature . CUSTODY_BULK_TRANSACTION ,
402+ CoinFeature . ALLOWS_NEGATIVE_FEE ,
402403] ;
403404export const SUI_TOKEN_FEATURES = [
404405 ...ACCOUNT_COIN_DEFAULT_FEATURES ,
405406 CoinFeature . TSS ,
406407 CoinFeature . TSS_COLD ,
407408 CoinFeature . BULK_TRANSACTION ,
409+ CoinFeature . ALLOWS_NEGATIVE_FEE ,
408410] ;
409411export const SUI_TOKEN_FEATURES_EXCLUDE_SINGAPORE = SUI_TOKEN_FEATURES . filter (
410412 ( feature ) => feature !== CoinFeature . CUSTODY_BITGO_SINGAPORE
You can’t perform that action at this time.
0 commit comments