@gardenfi/core 2.1.2 → 2.1.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.cjs +8 -8
- package/dist/index.js +150 -161
- package/dist/src/lib/garden/garden.d.ts +1 -2
- package/package.json +1 -1
|
@@ -30,13 +30,12 @@ export declare class Garden extends EventBroker<GardenEvents> implements IGarden
|
|
|
30
30
|
get evmHTLC(): IEVMHTLC | undefined;
|
|
31
31
|
get starknetHTLC(): IStarknetHTLC | undefined;
|
|
32
32
|
get quote(): IQuote;
|
|
33
|
-
get btcWallet(): IBitcoinWallet
|
|
33
|
+
get btcWallet(): IBitcoinWallet;
|
|
34
34
|
get orderbook(): IOrderbook;
|
|
35
35
|
get blockNumberFetcher(): IBlockNumberFetcher;
|
|
36
36
|
get secretManager(): ISecretManager;
|
|
37
37
|
get auth(): IAuth;
|
|
38
38
|
get digestKey(): DigestKey;
|
|
39
|
-
private initializeSMandBTCWallet;
|
|
40
39
|
swap(params: SwapParams): AsyncResult<MatchedOrder, string>;
|
|
41
40
|
private validateAndFillParams;
|
|
42
41
|
private getAddresses;
|