Skip to content

Commit

Permalink
Merge pull request #4116 from BitGo/bulk-staking-feature
Browse files Browse the repository at this point in the history
feat: add new coin feature for bulk staking transaction
  • Loading branch information
DinshawKothari authored Dec 4, 2023
2 parents 0e62960 + ec08d91 commit 1cd9404
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 0 deletions.
5 changes: 5 additions & 0 deletions modules/statics/src/base.ts
Original file line number Diff line number Diff line change
Expand Up @@ -245,6 +245,11 @@ export enum CoinFeature {
* This coin supports distributed custody wallets
*/
DISTRIBUTED_CUSTODY = 'distributed-custody',

/**
* This coin supports bulk staking transaction creation
*/
BULK_STAKING_TRANSACTION = 'bulk-staking-transaction',
}

/**
Expand Down
2 changes: 2 additions & 0 deletions modules/statics/src/coins.ts
Original file line number Diff line number Diff line change
Expand Up @@ -219,6 +219,7 @@ const SUI_FEATURES = [
CoinFeature.TSS_COLD,
CoinFeature.STAKING,
CoinFeature.BULK_TRANSACTION,
CoinFeature.BULK_STAKING_TRANSACTION,
];
const TRX_FEATURES = [
...AccountCoin.DEFAULT_FEATURES,
Expand All @@ -237,6 +238,7 @@ const COSMOS_SIDECHAIN_FEATURES = [
CoinFeature.REBUILD_ON_CUSTODY_SIGNING,
CoinFeature.INCREASED_TX_REQUEST_REBUILD_LIMIT,
CoinFeature.BULK_TRANSACTION,
CoinFeature.BULK_STAKING_TRANSACTION,
];
const GENERIC_TOKEN_FEATURES = [
CoinFeature.ACCOUNT_MODEL,
Expand Down

0 comments on commit 1cd9404

Please sign in to comment.