btc-wallet 0.3.2 → 0.3.4
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/core/btcUtils.d.ts +16 -0
- package/dist/core/btcWalletSelectorContext.d.ts +3 -3
- package/dist/index.d.ts +1 -1
- package/dist/index.js +161 -136
- package/dist/index.js.map +4 -4
- package/dist/utils/request.d.ts +1 -1
- package/esm/index.js +159 -134
- package/esm/index.js.map +4 -4
- package/package.json +1 -1
- package/dist/core/bridgeSupplyUtils.d.ts +0 -10
package/package.json
CHANGED
@@ -1,10 +0,0 @@
|
|
1
|
-
interface ExecuteBurrowSupplyParams {
|
2
|
-
/** btc amount, e.g. 0.01 */
|
3
|
-
amount: string;
|
4
|
-
/** fee rate, if not provided, will use the recommended fee rate from the btc node */
|
5
|
-
feeRate?: number;
|
6
|
-
/** environment, default is mainnet */
|
7
|
-
environment?: 'dev' | 'testnet' | 'mainnet';
|
8
|
-
}
|
9
|
-
export declare function executeBurrowSupply({ amount, feeRate, environment, }: ExecuteBurrowSupplyParams): Promise<void>;
|
10
|
-
export {};
|