bitmask-core 1.0.7-beta.13 → 1.0.7-beta.14
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/bitmask_core.d.ts +69 -67
- package/bitmask_core.js +619 -608
- package/bitmask_core_bg.wasm +0 -0
- package/bitmask_core_bg.wasm.d.ts +37 -36
- package/index.d.ts +6 -1
- package/index.js +11 -1
- package/package.json +1 -1
- package/rgb.d.ts +12 -0
- package/rgb.js +3 -1
package/bitmask_core.d.ts
CHANGED
|
@@ -1,5 +1,28 @@
|
|
|
1
1
|
/* tslint:disable */
|
|
2
2
|
/* eslint-disable */
|
|
3
|
+
export function convert_contract_amount_raw(decimal: string, precision: number): string;
|
|
4
|
+
export function convert_contract_amount_string(amount: bigint, precision: number): string;
|
|
5
|
+
export function parse_contract_amount(amount: string): any;
|
|
6
|
+
export function parse_contract_amount_precision(amount: string, precision: number): string;
|
|
7
|
+
export function version(): any;
|
|
8
|
+
export function fund_rgb_vault(sk: string, fee_rate: number, secrets: any, broadcast: boolean, fund_value: bigint | null | undefined, coordinator_fee: boolean): Promise<any>;
|
|
9
|
+
export function transfer_sats(sk: string, address: string, sats: bigint, fee_rate: number, secrets: any): Promise<any>;
|
|
10
|
+
export function get_btc_wallet(sk: string): Promise<any>;
|
|
11
|
+
export function backup_btc_data(nostr_hex_sk: string): Promise<any>;
|
|
12
|
+
export function recover_funds_from_bad_wallets(seed: string, pass_phrase: string, recover_address: string): Promise<any>;
|
|
13
|
+
export function restore_btc_data(nostr_hex_sk: string): Promise<any>;
|
|
14
|
+
export function store(secret_key: string, name: string, data: Uint8Array, force: boolean, metadata?: Uint8Array | null): Promise<any>;
|
|
15
|
+
export function retrieve(secret_key: string, name: string): Promise<any>;
|
|
16
|
+
export function retrieve_metadata(secret_key: string, name: string): Promise<any>;
|
|
17
|
+
export function encode_hex(bytes: Uint8Array): string;
|
|
18
|
+
export function encode_base64(bytes: Uint8Array): string;
|
|
19
|
+
export function decode_hex(string: string): Uint8Array;
|
|
20
|
+
export function decode_base64(string: string): Uint8Array;
|
|
21
|
+
export function get_network(): Promise<any>;
|
|
22
|
+
export function switch_network(network_str: string): Promise<any>;
|
|
23
|
+
export function get_env(key: string): Promise<any>;
|
|
24
|
+
export function set_env(key: string, value: string): Promise<any>;
|
|
25
|
+
export function sleep(ms: number): Promise<any>;
|
|
3
26
|
export function hash_password(password: string): string;
|
|
4
27
|
export function new_mnemonic(password: string): Promise<any>;
|
|
5
28
|
export function save_mnemonic(seed: string, password: string): Promise<any>;
|
|
@@ -17,6 +40,14 @@ export function drain_wallet(destination: string, descriptor: string, change_des
|
|
|
17
40
|
export function bump_fee(txid: string, fee_rate: number, descriptor: string, change_descriptor: string | null | undefined, broadcast: boolean): Promise<any>;
|
|
18
41
|
export function psbt_sign_and_publish_file(request: any): Promise<any>;
|
|
19
42
|
export function psbt_publish_file(request: any): Promise<any>;
|
|
43
|
+
export function create_watcher(nostr_hex_sk: string, request: any): Promise<any>;
|
|
44
|
+
export function recover_watcher(nostr_hex_sk: string, request: any): Promise<any>;
|
|
45
|
+
export function destroy_watcher(nostr_hex_sk: string): Promise<any>;
|
|
46
|
+
export function destroy_recover_watcher(nostr_hex_sk: string): Promise<any>;
|
|
47
|
+
export function check_watcher(nostr_hex_sk: string): Promise<any>;
|
|
48
|
+
export function watcher_next_address(nostr_hex_sk: string, request: string): Promise<any>;
|
|
49
|
+
export function watcher_next_utxo(nostr_hex_sk: string, request: string): Promise<any>;
|
|
50
|
+
export function watcher_unspent_utxos(nostr_hex_sk: string, request: string): Promise<any>;
|
|
20
51
|
export function create_wallet(username: string, password: string): Promise<any>;
|
|
21
52
|
export function auth(username: string, password: string): Promise<any>;
|
|
22
53
|
export function ln_create_invoice(description: string, amount: number, token: string): Promise<any>;
|
|
@@ -26,18 +57,6 @@ export function pay_invoice(payment_request: string, token: string): Promise<any
|
|
|
26
57
|
export function check_payment(payment_hash: string): Promise<any>;
|
|
27
58
|
export function swap_btc_ln(token: string, ln_address?: string | null): Promise<any>;
|
|
28
59
|
export function swap_ln_btc(address: string, amount: bigint, token: string): Promise<any>;
|
|
29
|
-
export function get_network(): Promise<any>;
|
|
30
|
-
export function switch_network(network_str: string): Promise<any>;
|
|
31
|
-
export function get_env(key: string): Promise<any>;
|
|
32
|
-
export function set_env(key: string, value: string): Promise<any>;
|
|
33
|
-
export function sleep(ms: number): Promise<any>;
|
|
34
|
-
export function store(secret_key: string, name: string, data: Uint8Array, force: boolean, metadata?: Uint8Array | null): Promise<any>;
|
|
35
|
-
export function retrieve(secret_key: string, name: string): Promise<any>;
|
|
36
|
-
export function retrieve_metadata(secret_key: string, name: string): Promise<any>;
|
|
37
|
-
export function encode_hex(bytes: Uint8Array): string;
|
|
38
|
-
export function encode_base64(bytes: Uint8Array): string;
|
|
39
|
-
export function decode_hex(string: string): Uint8Array;
|
|
40
|
-
export function decode_base64(string: string): Uint8Array;
|
|
41
60
|
export function get_rgb_version(): string;
|
|
42
61
|
export function get_rgb_wallet(nostr_hex_sk: string): Promise<any>;
|
|
43
62
|
export function get_btc_wallet_data(nostr_hex_sk: string): Promise<any>;
|
|
@@ -58,6 +77,7 @@ export function accept_transfer(nostr_hex_sk: string, request: any): Promise<any
|
|
|
58
77
|
export function save_transfer(nostr_hex_sk: string, request: any): Promise<any>;
|
|
59
78
|
export function list_transfers(nostr_hex_sk: string): Promise<any>;
|
|
60
79
|
export function verify_transfers(nostr_hex_sk: string): Promise<any>;
|
|
80
|
+
export function verify_transfers_force(nostr_hex_sk: string): Promise<any>;
|
|
61
81
|
export function list_offers(nostr_hex_sk: string): Promise<any>;
|
|
62
82
|
/**
|
|
63
83
|
* Cache-bypassing variant of `list_offers`. Fetches marketplace data
|
|
@@ -81,30 +101,34 @@ export function backup_rgb_data(nostr_hex_sk: string): Promise<any>;
|
|
|
81
101
|
export function restore_rgb_data(nostr_hex_sk: string): Promise<any>;
|
|
82
102
|
export function new_nostr_pubkey(pubkey: string, token: string): Promise<any>;
|
|
83
103
|
export function update_nostr_pubkey(pubkey: string, token: string): Promise<any>;
|
|
84
|
-
export function fund_rgb_vault(sk: string, fee_rate: number, secrets: any, broadcast: boolean, fund_value: bigint | null | undefined, coordinator_fee: boolean): Promise<any>;
|
|
85
|
-
export function transfer_sats(sk: string, address: string, sats: bigint, fee_rate: number, secrets: any): Promise<any>;
|
|
86
|
-
export function get_btc_wallet(sk: string): Promise<any>;
|
|
87
|
-
export function backup_btc_data(nostr_hex_sk: string): Promise<any>;
|
|
88
|
-
export function recover_funds_from_bad_wallets(seed: string, pass_phrase: string, recover_address: string): Promise<any>;
|
|
89
|
-
export function restore_btc_data(nostr_hex_sk: string): Promise<any>;
|
|
90
|
-
export function create_watcher(nostr_hex_sk: string, request: any): Promise<any>;
|
|
91
|
-
export function recover_watcher(nostr_hex_sk: string, request: any): Promise<any>;
|
|
92
|
-
export function destroy_watcher(nostr_hex_sk: string): Promise<any>;
|
|
93
|
-
export function destroy_recover_watcher(nostr_hex_sk: string): Promise<any>;
|
|
94
|
-
export function check_watcher(nostr_hex_sk: string): Promise<any>;
|
|
95
|
-
export function watcher_next_address(nostr_hex_sk: string, request: string): Promise<any>;
|
|
96
|
-
export function watcher_next_utxo(nostr_hex_sk: string, request: string): Promise<any>;
|
|
97
|
-
export function watcher_unspent_utxos(nostr_hex_sk: string, request: string): Promise<any>;
|
|
98
|
-
export function convert_contract_amount_raw(decimal: string, precision: number): string;
|
|
99
|
-
export function convert_contract_amount_string(amount: bigint, precision: number): string;
|
|
100
|
-
export function parse_contract_amount(amount: string): any;
|
|
101
|
-
export function parse_contract_amount_precision(amount: string, precision: number): string;
|
|
102
|
-
export function version(): any;
|
|
103
104
|
|
|
104
105
|
export type InitInput = RequestInfo | URL | Response | BufferSource | WebAssembly.Module;
|
|
105
106
|
|
|
106
107
|
export interface InitOutput {
|
|
107
108
|
readonly memory: WebAssembly.Memory;
|
|
109
|
+
readonly convert_contract_amount_raw: (a: number, b: number, c: number) => [number, number];
|
|
110
|
+
readonly convert_contract_amount_string: (a: bigint, b: number) => [number, number];
|
|
111
|
+
readonly parse_contract_amount: (a: number, b: number) => any;
|
|
112
|
+
readonly parse_contract_amount_precision: (a: number, b: number, c: number) => [number, number];
|
|
113
|
+
readonly version: () => any;
|
|
114
|
+
readonly fund_rgb_vault: (a: number, b: number, c: number, d: any, e: number, f: number, g: bigint, h: number) => any;
|
|
115
|
+
readonly transfer_sats: (a: number, b: number, c: number, d: number, e: bigint, f: number, g: any) => any;
|
|
116
|
+
readonly get_btc_wallet: (a: number, b: number) => any;
|
|
117
|
+
readonly backup_btc_data: (a: number, b: number) => any;
|
|
118
|
+
readonly recover_funds_from_bad_wallets: (a: number, b: number, c: number, d: number, e: number, f: number) => any;
|
|
119
|
+
readonly restore_btc_data: (a: number, b: number) => any;
|
|
120
|
+
readonly store: (a: number, b: number, c: number, d: number, e: number, f: number, g: number, h: number, i: number) => any;
|
|
121
|
+
readonly retrieve: (a: number, b: number, c: number, d: number) => any;
|
|
122
|
+
readonly retrieve_metadata: (a: number, b: number, c: number, d: number) => any;
|
|
123
|
+
readonly encode_hex: (a: number, b: number) => [number, number];
|
|
124
|
+
readonly encode_base64: (a: number, b: number) => [number, number];
|
|
125
|
+
readonly decode_hex: (a: number, b: number) => [number, number, number, number];
|
|
126
|
+
readonly decode_base64: (a: number, b: number) => [number, number, number, number];
|
|
127
|
+
readonly get_network: () => any;
|
|
128
|
+
readonly switch_network: (a: number, b: number) => any;
|
|
129
|
+
readonly get_env: (a: number, b: number) => any;
|
|
130
|
+
readonly set_env: (a: number, b: number, c: number, d: number) => any;
|
|
131
|
+
readonly sleep: (a: number) => any;
|
|
108
132
|
readonly hash_password: (a: number, b: number) => [number, number];
|
|
109
133
|
readonly new_mnemonic: (a: number, b: number) => any;
|
|
110
134
|
readonly save_mnemonic: (a: number, b: number, c: number, d: number) => any;
|
|
@@ -122,6 +146,14 @@ export interface InitOutput {
|
|
|
122
146
|
readonly bump_fee: (a: number, b: number, c: number, d: number, e: number, f: number, g: number, h: number) => any;
|
|
123
147
|
readonly psbt_sign_and_publish_file: (a: any) => any;
|
|
124
148
|
readonly psbt_publish_file: (a: any) => any;
|
|
149
|
+
readonly create_watcher: (a: number, b: number, c: any) => any;
|
|
150
|
+
readonly recover_watcher: (a: number, b: number, c: any) => any;
|
|
151
|
+
readonly destroy_watcher: (a: number, b: number) => any;
|
|
152
|
+
readonly destroy_recover_watcher: (a: number, b: number) => any;
|
|
153
|
+
readonly check_watcher: (a: number, b: number) => any;
|
|
154
|
+
readonly watcher_next_address: (a: number, b: number, c: number, d: number) => any;
|
|
155
|
+
readonly watcher_next_utxo: (a: number, b: number, c: number, d: number) => any;
|
|
156
|
+
readonly watcher_unspent_utxos: (a: number, b: number, c: number, d: number) => any;
|
|
125
157
|
readonly create_wallet: (a: number, b: number, c: number, d: number) => any;
|
|
126
158
|
readonly auth: (a: number, b: number, c: number, d: number) => any;
|
|
127
159
|
readonly ln_create_invoice: (a: number, b: number, c: number, d: number, e: number) => any;
|
|
@@ -131,18 +163,6 @@ export interface InitOutput {
|
|
|
131
163
|
readonly check_payment: (a: number, b: number) => any;
|
|
132
164
|
readonly swap_btc_ln: (a: number, b: number, c: number, d: number) => any;
|
|
133
165
|
readonly swap_ln_btc: (a: number, b: number, c: bigint, d: number, e: number) => any;
|
|
134
|
-
readonly get_network: () => any;
|
|
135
|
-
readonly switch_network: (a: number, b: number) => any;
|
|
136
|
-
readonly get_env: (a: number, b: number) => any;
|
|
137
|
-
readonly set_env: (a: number, b: number, c: number, d: number) => any;
|
|
138
|
-
readonly sleep: (a: number) => any;
|
|
139
|
-
readonly store: (a: number, b: number, c: number, d: number, e: number, f: number, g: number, h: number, i: number) => any;
|
|
140
|
-
readonly retrieve: (a: number, b: number, c: number, d: number) => any;
|
|
141
|
-
readonly retrieve_metadata: (a: number, b: number, c: number, d: number) => any;
|
|
142
|
-
readonly encode_hex: (a: number, b: number) => [number, number];
|
|
143
|
-
readonly encode_base64: (a: number, b: number) => [number, number];
|
|
144
|
-
readonly decode_hex: (a: number, b: number) => [number, number, number, number];
|
|
145
|
-
readonly decode_base64: (a: number, b: number) => [number, number, number, number];
|
|
146
166
|
readonly get_rgb_version: () => [number, number];
|
|
147
167
|
readonly get_rgb_wallet: (a: number, b: number) => any;
|
|
148
168
|
readonly get_btc_wallet_data: (a: number, b: number) => any;
|
|
@@ -163,6 +183,7 @@ export interface InitOutput {
|
|
|
163
183
|
readonly save_transfer: (a: number, b: number, c: any) => any;
|
|
164
184
|
readonly list_transfers: (a: number, b: number) => any;
|
|
165
185
|
readonly verify_transfers: (a: number, b: number) => any;
|
|
186
|
+
readonly verify_transfers_force: (a: number, b: number) => any;
|
|
166
187
|
readonly list_offers: (a: number, b: number) => any;
|
|
167
188
|
readonly list_offers_fresh: (a: number, b: number) => any;
|
|
168
189
|
readonly offers: (a: number, b: number) => any;
|
|
@@ -182,25 +203,6 @@ export interface InitOutput {
|
|
|
182
203
|
readonly restore_rgb_data: (a: number, b: number) => any;
|
|
183
204
|
readonly new_nostr_pubkey: (a: number, b: number, c: number, d: number) => any;
|
|
184
205
|
readonly update_nostr_pubkey: (a: number, b: number, c: number, d: number) => any;
|
|
185
|
-
readonly fund_rgb_vault: (a: number, b: number, c: number, d: any, e: number, f: number, g: bigint, h: number) => any;
|
|
186
|
-
readonly transfer_sats: (a: number, b: number, c: number, d: number, e: bigint, f: number, g: any) => any;
|
|
187
|
-
readonly get_btc_wallet: (a: number, b: number) => any;
|
|
188
|
-
readonly backup_btc_data: (a: number, b: number) => any;
|
|
189
|
-
readonly recover_funds_from_bad_wallets: (a: number, b: number, c: number, d: number, e: number, f: number) => any;
|
|
190
|
-
readonly restore_btc_data: (a: number, b: number) => any;
|
|
191
|
-
readonly create_watcher: (a: number, b: number, c: any) => any;
|
|
192
|
-
readonly recover_watcher: (a: number, b: number, c: any) => any;
|
|
193
|
-
readonly destroy_watcher: (a: number, b: number) => any;
|
|
194
|
-
readonly destroy_recover_watcher: (a: number, b: number) => any;
|
|
195
|
-
readonly check_watcher: (a: number, b: number) => any;
|
|
196
|
-
readonly watcher_next_address: (a: number, b: number, c: number, d: number) => any;
|
|
197
|
-
readonly watcher_next_utxo: (a: number, b: number, c: number, d: number) => any;
|
|
198
|
-
readonly watcher_unspent_utxos: (a: number, b: number, c: number, d: number) => any;
|
|
199
|
-
readonly convert_contract_amount_raw: (a: number, b: number, c: number) => [number, number];
|
|
200
|
-
readonly convert_contract_amount_string: (a: bigint, b: number) => [number, number];
|
|
201
|
-
readonly parse_contract_amount: (a: number, b: number) => any;
|
|
202
|
-
readonly parse_contract_amount_precision: (a: number, b: number, c: number) => [number, number];
|
|
203
|
-
readonly version: () => any;
|
|
204
206
|
readonly rustsecp256k1_v0_9_2_context_create: (a: number) => number;
|
|
205
207
|
readonly rustsecp256k1_v0_9_2_context_destroy: (a: number) => void;
|
|
206
208
|
readonly rustsecp256k1_v0_9_2_default_illegal_callback_fn: (a: number, b: number) => void;
|
|
@@ -226,12 +228,12 @@ export interface InitOutput {
|
|
|
226
228
|
readonly __wbindgen_free: (a: number, b: number, c: number) => void;
|
|
227
229
|
readonly __wbindgen_export_7: WebAssembly.Table;
|
|
228
230
|
readonly __externref_table_dealloc: (a: number) => void;
|
|
229
|
-
readonly
|
|
230
|
-
readonly
|
|
231
|
-
readonly
|
|
231
|
+
readonly closure1936_externref_shim: (a: number, b: number, c: any) => void;
|
|
232
|
+
readonly closure2726_externref_shim: (a: number, b: number, c: any) => void;
|
|
233
|
+
readonly closure2757_externref_shim: (a: number, b: number, c: any) => void;
|
|
232
234
|
readonly _dyn_core__ops__function__FnMut_____Output___R_as_wasm_bindgen__closure__WasmClosure___describe__invoke__h7ceba1bc0c075797: (a: number, b: number) => void;
|
|
233
|
-
readonly
|
|
234
|
-
readonly
|
|
235
|
+
readonly closure3937_externref_shim: (a: number, b: number, c: any) => void;
|
|
236
|
+
readonly closure4229_externref_shim: (a: number, b: number, c: any, d: any) => void;
|
|
235
237
|
readonly __wbindgen_start: () => void;
|
|
236
238
|
}
|
|
237
239
|
|