Skip to content

Commit 97f51d9

Browse files
committed
feat(canton): added new merge utxo feature flag
Ticket: CHALO-375
1 parent 18f9f86 commit 97f51d9

2 files changed

Lines changed: 5 additions & 1 deletion

File tree

modules/statics/src/allCoinsAndTokens.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3422,7 +3422,7 @@ export const allCoinsAndTokens = [
34223422
'Testnet Canton Coin',
34233423
Networks.test.canton,
34243424
UnderlyingAsset.CANTON,
3425-
[...CANTON_FEATURES, CoinFeature.UNSPENT_MODEL],
3425+
[...CANTON_FEATURES, CoinFeature.UNSPENT_MODEL, CoinFeature.MERGE_UTXOS],
34263426
KeyCurve.Ed25519
34273427
),
34283428
gasTankAccount(

modules/statics/src/base.ts

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -202,6 +202,10 @@ export enum CoinFeature {
202202
* These are typically Bitcoin and forks of it, such as Litecoin and Bitcoin Cash.
203203
*/
204204
UNSPENT_MODEL = 'unspent-model',
205+
/*
206+
* This coin supports merging multiple UTXO-like holdings into fewer outputs.
207+
*/
208+
MERGE_UTXOS = 'merge-utxos',
205209
/*
206210
* Does this coin align with the Lightning Network model?
207211
*

0 commit comments

Comments
 (0)