Skip to content

Commit ce7cc91

Browse files
committed
Add Liquid address
1 parent ee0920c commit ce7cc91

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

src/app/coinjoin/main_function.jsx

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@ const mpc = require('mprc-crypto-lib');
1111
const { setupMPCCeremony } = require('./mpc_ceremony.jsx');
1212
const { rescanOnchainSwaps} = require('@breeztech/react-native-breez-sdk-liquid');
1313
const { LiquidNetwork } = require('@breeztech/react-native-breez-sdk-liquid')
14+
const { LiquidAddress } = require('@breeztech/react-native-breez-sdk-liquid')
1415

1516
let converter = new BitcoinConverter();
1617

@@ -29,6 +30,7 @@ class Coinjoin {
2930
this.proof = null;
3031
this.payments = null;
3132
this.LiquidNetwork = LiquidNetwork;
33+
this.LiquidAddress = LiquidAddress;
3234
this.rescanOnchainSwaps = rescanOnchainSwaps;
3335
this.isEntering = isEntering; // Boolean flag to indicate whether the user is entering or exiting
3436
}
@@ -43,6 +45,7 @@ class CoinjoinTransaction {
4345
this.proof = null;
4446
this.rescanOnchainSwaps = rescanOnchainSwaps;
4547
this.LiquidNetwork = LiquidNetwork;
48+
this.LiquidAddress = LiquidAddress;
4649
}
4750
}
4851

0 commit comments

Comments
 (0)