Skip to content
Open
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
2 changes: 1 addition & 1 deletion modules/statics/src/allCoinsAndTokens.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3422,7 +3422,7 @@ export const allCoinsAndTokens = [
'Testnet Canton Coin',
Networks.test.canton,
UnderlyingAsset.CANTON,
[...CANTON_FEATURES, CoinFeature.UNSPENT_MODEL],
[...CANTON_FEATURES, CoinFeature.UNSPENT_MODEL, CoinFeature.MERGE_UTXOS],
KeyCurve.Ed25519
),
gasTankAccount(
Expand Down
4 changes: 4 additions & 0 deletions modules/statics/src/base.ts
Original file line number Diff line number Diff line change
Expand Up @@ -202,6 +202,10 @@ export enum CoinFeature {
* These are typically Bitcoin and forks of it, such as Litecoin and Bitcoin Cash.
*/
UNSPENT_MODEL = 'unspent-model',
/*
* This coin supports merging multiple UTXO-like holdings into fewer outputs.
*/
MERGE_UTXOS = 'merge-utxos',
/*
* Does this coin align with the Lightning Network model?
*
Expand Down
Loading