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
4 changes: 4 additions & 0 deletions modules/statics/src/base.ts
Original file line number Diff line number Diff line change
Expand Up @@ -508,6 +508,10 @@ export enum CoinFeature {
* This coin requires a deposit acceptance transaction
*/
REQUIRES_DEPOSIT_ACCEPTANCE_TRANSACTION = 'requires-deposit-acceptance-transaction',
/**
* This coin allows negative fees in transactions
*/
ALLOWS_NEGATIVE_FEE = 'allows-negative-fee',
}

/**
Expand Down
2 changes: 2 additions & 0 deletions modules/statics/src/coinFeatures.ts
Original file line number Diff line number Diff line change
Expand Up @@ -399,12 +399,14 @@ export const SUI_FEATURES = [
CoinFeature.CUSTODY_BITGO_FRANKFURT,
CoinFeature.CUSTODY_BITGO_GERMANY,
CoinFeature.CUSTODY_BULK_TRANSACTION,
CoinFeature.ALLOWS_NEGATIVE_FEE,
];
export const SUI_TOKEN_FEATURES = [
...ACCOUNT_COIN_DEFAULT_FEATURES,
CoinFeature.TSS,
CoinFeature.TSS_COLD,
CoinFeature.BULK_TRANSACTION,
CoinFeature.ALLOWS_NEGATIVE_FEE,
];
export const SUI_TOKEN_FEATURES_EXCLUDE_SINGAPORE = SUI_TOKEN_FEATURES.filter(
(feature) => feature !== CoinFeature.CUSTODY_BITGO_SINGAPORE
Expand Down