Skip to content

Commit 26d0805

Browse files
authored
Merge pull request #8855 from BitGo/CHALO-497
feat(sdk-coin-canton): added fanout utxos support for tcanton
2 parents d68cfc4 + 3cc5a28 commit 26d0805

2 files changed

Lines changed: 6 additions & 1 deletion

File tree

modules/statics/src/allCoinsAndTokens.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3591,7 +3591,7 @@ export const allCoinsAndTokens = [
35913591
'Testnet Canton Coin',
35923592
Networks.test.canton,
35933593
UnderlyingAsset.CANTON,
3594-
[...CANTON_FEATURES, CoinFeature.UNSPENT_MODEL, CoinFeature.MERGE_UTXOS],
3594+
[...CANTON_FEATURES, CoinFeature.UNSPENT_MODEL, CoinFeature.MERGE_UTXOS, CoinFeature.FANOUT_UTXOS],
35953595
KeyCurve.Ed25519
35963596
),
35973597
gasTankAccount(

modules/statics/src/base.ts

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -207,6 +207,11 @@ export enum CoinFeature {
207207
* This coin supports merging multiple UTXO-like holdings into fewer outputs.
208208
*/
209209
MERGE_UTXOS = 'merge-utxos',
210+
211+
/**
212+
* This coin supports fanning out multiple UTXO-like holdings into more outputs.
213+
*/
214+
FANOUT_UTXOS = 'fanout-utxos',
210215
/*
211216
* Does this coin align with the Lightning Network model?
212217
*

0 commit comments

Comments
 (0)