saito-wasm 0.2.169 → 0.2.171
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/Cargo.toml +1 -1
- package/package.json +1 -1
- package/pkg/node/index.d.ts +158 -141
- package/pkg/node/index.js +357 -329
- package/pkg/node/index_bg.wasm +0 -0
- package/pkg/node/index_bg.wasm.d.ts +46 -42
- package/pkg/node/package.json +3 -3
- package/pkg/web/index.d.ts +204 -183
- package/pkg/web/index.js +358 -330
- package/pkg/web/index_bg.wasm +0 -0
- package/pkg/web/index_bg.wasm.d.ts +46 -42
- package/pkg/web/package.json +3 -3
- /package/pkg/node/snippets/{saito-wasm-ac621af49b696a83 → saito-wasm-d893e173c1089dfc}/js/msg_handler.js +0 -0
- /package/pkg/web/snippets/{saito-wasm-ac621af49b696a83 → saito-wasm-d893e173c1089dfc}/js/msg_handler.js +0 -0
package/pkg/web/index.d.ts
CHANGED
|
@@ -2,38 +2,47 @@
|
|
|
2
2
|
/* eslint-disable */
|
|
3
3
|
/**
|
|
4
4
|
* @param {Uint8Array} buffer
|
|
5
|
-
* @
|
|
5
|
+
* @param {number} msg_index
|
|
6
|
+
* @param {bigint} peer_index
|
|
7
|
+
* @returns {Promise<void>}
|
|
6
8
|
*/
|
|
7
|
-
export function
|
|
9
|
+
export function send_api_call(buffer: Uint8Array, msg_index: number, peer_index: bigint): Promise<void>;
|
|
8
10
|
/**
|
|
9
|
-
* @param {
|
|
11
|
+
* @param {Uint8Array} hash
|
|
12
|
+
* @param {bigint} block_id
|
|
13
|
+
* @param {bigint} peer_index
|
|
10
14
|
* @returns {Promise<void>}
|
|
11
15
|
*/
|
|
12
|
-
export function
|
|
16
|
+
export function process_failed_block_fetch(hash: Uint8Array, block_id: bigint, peer_index: bigint): Promise<void>;
|
|
13
17
|
/**
|
|
18
|
+
* @param {string} key
|
|
19
|
+
* @returns {boolean}
|
|
20
|
+
*/
|
|
21
|
+
export function is_valid_public_key(key: string): boolean;
|
|
22
|
+
/**
|
|
23
|
+
* @param {Uint8Array} buffer
|
|
24
|
+
* @param {number} msg_index
|
|
14
25
|
* @param {bigint} peer_index
|
|
15
26
|
* @returns {Promise<void>}
|
|
16
27
|
*/
|
|
17
|
-
export function
|
|
28
|
+
export function send_api_success(buffer: Uint8Array, msg_index: number, peer_index: bigint): Promise<void>;
|
|
18
29
|
/**
|
|
19
|
-
* @returns {Promise<
|
|
30
|
+
* @returns {Promise<void>}
|
|
20
31
|
*/
|
|
21
|
-
export function
|
|
32
|
+
export function disable_producing_blocks_by_timer(): Promise<void>;
|
|
22
33
|
/**
|
|
23
|
-
* @param {
|
|
24
|
-
* @param {
|
|
25
|
-
* @param {Uint8Array} tx_msg
|
|
34
|
+
* @param {Array<any>} public_keys
|
|
35
|
+
* @param {BigUint64Array} amounts
|
|
26
36
|
* @param {bigint} fee
|
|
27
|
-
* @param {
|
|
28
|
-
* @param {string} nft_type
|
|
37
|
+
* @param {boolean} _force_merge
|
|
29
38
|
* @returns {Promise<WasmTransaction>}
|
|
30
39
|
*/
|
|
31
|
-
export function
|
|
40
|
+
export function create_transaction_with_multiple_payments(public_keys: Array<any>, amounts: BigUint64Array, fee: bigint, _force_merge: boolean): Promise<WasmTransaction>;
|
|
32
41
|
/**
|
|
33
|
-
* @param {
|
|
34
|
-
* @returns {Promise<
|
|
42
|
+
* @param {bigint} peer_index
|
|
43
|
+
* @returns {Promise<WasmPeer | undefined>}
|
|
35
44
|
*/
|
|
36
|
-
export function
|
|
45
|
+
export function get_peer(peer_index: bigint): Promise<WasmPeer | undefined>;
|
|
37
46
|
/**
|
|
38
47
|
* @param {bigint} peer_index
|
|
39
48
|
* @param {string} public_key
|
|
@@ -41,113 +50,120 @@ export function propagate_transaction(tx: WasmTransaction): Promise<void>;
|
|
|
41
50
|
*/
|
|
42
51
|
export function process_stun_peer(peer_index: bigint, public_key: string): Promise<void>;
|
|
43
52
|
/**
|
|
44
|
-
* @param {
|
|
45
|
-
* @param {
|
|
53
|
+
* @param {bigint} num
|
|
54
|
+
* @param {bigint} deposit
|
|
55
|
+
* @param {Uint8Array} tx_msg
|
|
46
56
|
* @param {bigint} fee
|
|
47
|
-
* @param {
|
|
57
|
+
* @param {string} recipient_public_key
|
|
58
|
+
* @param {string} nft_type
|
|
48
59
|
* @returns {Promise<WasmTransaction>}
|
|
49
60
|
*/
|
|
50
|
-
export function
|
|
61
|
+
export function create_bound_transaction(num: bigint, deposit: bigint, tx_msg: Uint8Array, fee: bigint, recipient_public_key: string, nft_type: string): Promise<WasmTransaction>;
|
|
51
62
|
/**
|
|
52
|
-
* @param {
|
|
53
|
-
* @param {
|
|
54
|
-
* @param {
|
|
63
|
+
* @param {number} major
|
|
64
|
+
* @param {number} minor
|
|
65
|
+
* @param {number} patch
|
|
55
66
|
* @returns {Promise<void>}
|
|
56
67
|
*/
|
|
57
|
-
export function
|
|
68
|
+
export function set_wallet_version(major: number, minor: number, patch: number): Promise<void>;
|
|
58
69
|
/**
|
|
59
|
-
* @param {
|
|
70
|
+
* @param {bigint} threshold
|
|
71
|
+
* @returns {Promise<void>}
|
|
72
|
+
*/
|
|
73
|
+
export function write_issuance_file(threshold: bigint): Promise<void>;
|
|
74
|
+
/**
|
|
75
|
+
* @param {Uint8Array} buffer
|
|
60
76
|
* @returns {string}
|
|
61
77
|
*/
|
|
62
|
-
export function
|
|
78
|
+
export function hash(buffer: Uint8Array): string;
|
|
63
79
|
/**
|
|
64
|
-
* @
|
|
65
|
-
* @returns {boolean}
|
|
80
|
+
* @returns {Promise<string>}
|
|
66
81
|
*/
|
|
67
|
-
export function
|
|
82
|
+
export function get_congestion_stats(): Promise<string>;
|
|
68
83
|
/**
|
|
69
|
-
* @
|
|
84
|
+
* @param {string} slip1_utxo_key
|
|
85
|
+
* @param {string} slip2_utxo_key
|
|
86
|
+
* @param {string} slip3_utxo_key
|
|
87
|
+
* @param {number} left_count
|
|
88
|
+
* @param {number} right_count
|
|
89
|
+
* @param {Uint8Array} tx_msg
|
|
90
|
+
* @returns {Promise<WasmTransaction>}
|
|
70
91
|
*/
|
|
71
|
-
export function
|
|
92
|
+
export function create_split_bound_transaction(slip1_utxo_key: string, slip2_utxo_key: string, slip3_utxo_key: string, left_count: number, right_count: number, tx_msg: Uint8Array): Promise<WasmTransaction>;
|
|
72
93
|
/**
|
|
73
|
-
* @
|
|
94
|
+
* @param {string} public_key
|
|
95
|
+
* @param {bigint} amount
|
|
96
|
+
* @param {bigint} fee
|
|
97
|
+
* @param {boolean} force_merge
|
|
98
|
+
* @returns {Promise<WasmTransaction>}
|
|
74
99
|
*/
|
|
75
|
-
export function
|
|
100
|
+
export function create_transaction(public_key: string, amount: bigint, fee: bigint, force_merge: boolean): Promise<WasmTransaction>;
|
|
76
101
|
/**
|
|
77
102
|
* @param {Uint8Array} buffer
|
|
78
|
-
* @param {
|
|
79
|
-
* @param {
|
|
80
|
-
* @returns {
|
|
103
|
+
* @param {string} signature
|
|
104
|
+
* @param {string} public_key
|
|
105
|
+
* @returns {boolean}
|
|
81
106
|
*/
|
|
82
|
-
export function
|
|
107
|
+
export function verify_signature(buffer: Uint8Array, signature: string, public_key: string): boolean;
|
|
83
108
|
/**
|
|
84
|
-
* @param {
|
|
85
|
-
* @
|
|
109
|
+
* @param {string} nft_id_hex
|
|
110
|
+
* @param {Uint8Array} tx_msg
|
|
111
|
+
* @returns {Promise<WasmTransaction>}
|
|
86
112
|
*/
|
|
87
|
-
export function
|
|
113
|
+
export function create_merge_bound_transaction(nft_id_hex: string, tx_msg: Uint8Array): Promise<WasmTransaction>;
|
|
88
114
|
/**
|
|
89
|
-
* @param {
|
|
90
|
-
* @returns {Promise<
|
|
115
|
+
* @param {string} block_hash
|
|
116
|
+
* @returns {Promise<WasmBlock>}
|
|
91
117
|
*/
|
|
92
|
-
export function
|
|
118
|
+
export function get_block(block_hash: string): Promise<WasmBlock>;
|
|
93
119
|
/**
|
|
120
|
+
* @param {Uint8Array} buffer
|
|
121
|
+
* @param {Uint8Array} hash
|
|
122
|
+
* @param {bigint} block_id
|
|
94
123
|
* @param {bigint} peer_index
|
|
95
|
-
* @param {string} ip
|
|
96
124
|
* @returns {Promise<void>}
|
|
97
125
|
*/
|
|
98
|
-
export function
|
|
99
|
-
/**
|
|
100
|
-
* @param {WasmBalanceSnapshot} snapshot
|
|
101
|
-
* @returns {Promise<void>}
|
|
102
|
-
*/
|
|
103
|
-
export function update_from_balance_snapshot(snapshot: WasmBalanceSnapshot): Promise<void>;
|
|
126
|
+
export function process_fetched_block(buffer: Uint8Array, hash: Uint8Array, block_id: bigint, peer_index: bigint): Promise<void>;
|
|
104
127
|
/**
|
|
105
|
-
* @
|
|
106
|
-
* @returns {Promise<WasmBalanceSnapshot>}
|
|
128
|
+
* @returns {Promise<string>}
|
|
107
129
|
*/
|
|
108
|
-
export function
|
|
130
|
+
export function get_peer_stats(): Promise<string>;
|
|
109
131
|
/**
|
|
110
|
-
* @returns {Promise<
|
|
132
|
+
* @returns {Promise<Array<any>>}
|
|
111
133
|
*/
|
|
112
|
-
export function
|
|
134
|
+
export function get_nft_list(): Promise<Array<any>>;
|
|
113
135
|
/**
|
|
136
|
+
* @param {string} public_key
|
|
114
137
|
* @returns {Promise<Array<any>>}
|
|
115
138
|
*/
|
|
116
|
-
export function
|
|
139
|
+
export function get_account_slips(public_key: string): Promise<Array<any>>;
|
|
117
140
|
/**
|
|
118
|
-
* @
|
|
141
|
+
* @param {bigint} duration_in_ms
|
|
142
|
+
* @returns {Promise<void>}
|
|
119
143
|
*/
|
|
120
|
-
export function
|
|
144
|
+
export function process_timer_event(duration_in_ms: bigint): Promise<void>;
|
|
121
145
|
/**
|
|
122
|
-
* @returns {string}
|
|
146
|
+
* @returns {Promise<string>}
|
|
123
147
|
*/
|
|
124
|
-
export function
|
|
148
|
+
export function get_latest_block_hash(): Promise<string>;
|
|
125
149
|
/**
|
|
126
|
-
* @param {Uint8Array} buffer
|
|
127
|
-
* @param {number} msg_index
|
|
128
150
|
* @param {bigint} peer_index
|
|
129
151
|
* @returns {Promise<void>}
|
|
130
152
|
*/
|
|
131
|
-
export function
|
|
153
|
+
export function remove_stun_peer(peer_index: bigint): Promise<void>;
|
|
132
154
|
/**
|
|
133
155
|
* @param {bigint} peer_index
|
|
134
|
-
* @returns {Promise<WasmPeer | undefined>}
|
|
135
|
-
*/
|
|
136
|
-
export function get_peer(peer_index: bigint): Promise<WasmPeer | undefined>;
|
|
137
|
-
/**
|
|
138
156
|
* @returns {Promise<void>}
|
|
139
157
|
*/
|
|
140
|
-
export function
|
|
158
|
+
export function process_peer_disconnection(peer_index: bigint): Promise<void>;
|
|
141
159
|
/**
|
|
142
|
-
* @returns {Promise<
|
|
160
|
+
* @returns {Promise<string>}
|
|
143
161
|
*/
|
|
144
|
-
export function
|
|
162
|
+
export function get_stats(): Promise<string>;
|
|
145
163
|
/**
|
|
146
|
-
* @
|
|
147
|
-
* @param {Uint8Array} tx_msg
|
|
148
|
-
* @returns {Promise<WasmTransaction>}
|
|
164
|
+
* @returns {Promise<boolean>}
|
|
149
165
|
*/
|
|
150
|
-
export function
|
|
166
|
+
export function produce_block_with_gt(): Promise<boolean>;
|
|
151
167
|
/**
|
|
152
168
|
* @param {string} config_json
|
|
153
169
|
* @param {string} private_key
|
|
@@ -158,124 +174,108 @@ export function create_merge_bound_transaction(nft_id_hex: string, tx_msg: Uint8
|
|
|
158
174
|
*/
|
|
159
175
|
export function initialize(config_json: string, private_key: string, log_level_num: number, hasten_multiplier: bigint, delete_old_blocks: boolean): Promise<any>;
|
|
160
176
|
/**
|
|
161
|
-
* @
|
|
162
|
-
* @param {string} signature
|
|
163
|
-
* @param {string} public_key
|
|
164
|
-
* @returns {boolean}
|
|
177
|
+
* @returns {string}
|
|
165
178
|
*/
|
|
166
|
-
export function
|
|
179
|
+
export function generate_private_key(): string;
|
|
167
180
|
/**
|
|
168
|
-
* @param {string} public_key
|
|
169
181
|
* @returns {Promise<Array<any>>}
|
|
170
182
|
*/
|
|
171
|
-
export function
|
|
172
|
-
/**
|
|
173
|
-
* @param {string} block_hash
|
|
174
|
-
* @returns {Promise<WasmBlock>}
|
|
175
|
-
*/
|
|
176
|
-
export function get_block(block_hash: string): Promise<WasmBlock>;
|
|
177
|
-
/**
|
|
178
|
-
* @param {string} public_key
|
|
179
|
-
* @param {bigint} amount
|
|
180
|
-
* @param {bigint} fee
|
|
181
|
-
* @param {boolean} force_merge
|
|
182
|
-
* @returns {Promise<WasmTransaction>}
|
|
183
|
-
*/
|
|
184
|
-
export function create_transaction(public_key: string, amount: bigint, fee: bigint, force_merge: boolean): Promise<WasmTransaction>;
|
|
185
|
-
/**
|
|
186
|
-
* @param {Uint8Array} buffer
|
|
187
|
-
* @param {string} private_key
|
|
188
|
-
* @returns {string}
|
|
189
|
-
*/
|
|
190
|
-
export function sign_buffer(buffer: Uint8Array, private_key: string): string;
|
|
183
|
+
export function get_mempool_txs(): Promise<Array<any>>;
|
|
191
184
|
/**
|
|
192
185
|
* @param {bigint} current_time
|
|
193
186
|
* @returns {Promise<void>}
|
|
194
187
|
*/
|
|
195
188
|
export function process_stat_interval(current_time: bigint): Promise<void>;
|
|
196
189
|
/**
|
|
197
|
-
* @returns {Promise<
|
|
190
|
+
* @returns {Promise<boolean>}
|
|
198
191
|
*/
|
|
199
|
-
export function
|
|
192
|
+
export function produce_block_without_gt(): Promise<boolean>;
|
|
200
193
|
/**
|
|
201
|
-
* @param {
|
|
202
|
-
* @param {bigint} peer_index
|
|
194
|
+
* @param {WasmTransaction} tx
|
|
203
195
|
* @returns {Promise<void>}
|
|
204
196
|
*/
|
|
205
|
-
export function
|
|
197
|
+
export function propagate_transaction(tx: WasmTransaction): Promise<void>;
|
|
206
198
|
/**
|
|
207
199
|
* @param {Uint8Array} buffer
|
|
208
200
|
* @param {number} msg_index
|
|
209
201
|
* @param {bigint} peer_index
|
|
210
202
|
* @returns {Promise<void>}
|
|
211
203
|
*/
|
|
212
|
-
export function
|
|
204
|
+
export function send_api_error(buffer: Uint8Array, msg_index: number, peer_index: bigint): Promise<void>;
|
|
205
|
+
/**
|
|
206
|
+
* @param {WasmBalanceSnapshot} snapshot
|
|
207
|
+
* @returns {Promise<void>}
|
|
208
|
+
*/
|
|
209
|
+
export function update_from_balance_snapshot(snapshot: WasmBalanceSnapshot): Promise<void>;
|
|
213
210
|
/**
|
|
211
|
+
* @param {bigint} peer_index
|
|
212
|
+
* @param {string} ip
|
|
213
|
+
* @returns {Promise<void>}
|
|
214
|
+
*/
|
|
215
|
+
export function process_new_peer(peer_index: bigint, ip: string): Promise<void>;
|
|
216
|
+
/**
|
|
217
|
+
* @param {bigint} amt
|
|
214
218
|
* @param {string} slip1_utxo_key
|
|
215
219
|
* @param {string} slip2_utxo_key
|
|
216
220
|
* @param {string} slip3_utxo_key
|
|
221
|
+
* @param {string} recipient_public_key
|
|
222
|
+
* @param {Uint8Array} tx_msg
|
|
217
223
|
* @returns {Promise<WasmTransaction>}
|
|
218
224
|
*/
|
|
219
|
-
export function
|
|
225
|
+
export function create_send_bound_transaction(amt: bigint, slip1_utxo_key: string, slip2_utxo_key: string, slip3_utxo_key: string, recipient_public_key: string, tx_msg: Uint8Array): Promise<WasmTransaction>;
|
|
220
226
|
/**
|
|
221
|
-
* @returns {Promise<
|
|
227
|
+
* @returns {Promise<Array<any>>}
|
|
222
228
|
*/
|
|
223
|
-
export function
|
|
229
|
+
export function get_peers(): Promise<Array<any>>;
|
|
224
230
|
/**
|
|
225
|
-
* @returns {Promise<
|
|
231
|
+
* @returns {Promise<void>}
|
|
226
232
|
*/
|
|
227
|
-
export function
|
|
233
|
+
export function start_from_received_ghost_chain(): Promise<void>;
|
|
228
234
|
/**
|
|
229
|
-
* @returns {Promise<
|
|
235
|
+
* @returns {Promise<any>}
|
|
230
236
|
*/
|
|
231
|
-
export function
|
|
237
|
+
export function get_confirmations(): Promise<any>;
|
|
232
238
|
/**
|
|
233
|
-
* @param {
|
|
234
|
-
* @param {
|
|
235
|
-
* @param {
|
|
236
|
-
* @returns {Promise<
|
|
239
|
+
* @param {string} slip1_utxo_key
|
|
240
|
+
* @param {string} slip2_utxo_key
|
|
241
|
+
* @param {string} slip3_utxo_key
|
|
242
|
+
* @returns {Promise<WasmTransaction>}
|
|
237
243
|
*/
|
|
238
|
-
export function
|
|
244
|
+
export function create_remove_bound_transaction(slip1_utxo_key: string, slip2_utxo_key: string, slip3_utxo_key: string): Promise<WasmTransaction>;
|
|
239
245
|
/**
|
|
240
|
-
* @returns {Promise<
|
|
246
|
+
* @returns {Promise<WasmWallet>}
|
|
241
247
|
*/
|
|
242
|
-
export function
|
|
248
|
+
export function get_wallet(): Promise<WasmWallet>;
|
|
243
249
|
/**
|
|
244
|
-
* @
|
|
250
|
+
* @param {string} private_key
|
|
251
|
+
* @returns {string}
|
|
245
252
|
*/
|
|
246
|
-
export function
|
|
253
|
+
export function generate_public_key(private_key: string): string;
|
|
247
254
|
/**
|
|
248
255
|
* @param {Uint8Array} buffer
|
|
249
|
-
* @param {Uint8Array} hash
|
|
250
|
-
* @param {bigint} block_id
|
|
251
256
|
* @param {bigint} peer_index
|
|
252
257
|
* @returns {Promise<void>}
|
|
253
258
|
*/
|
|
254
|
-
export function
|
|
259
|
+
export function process_msg_buffer_from_peer(buffer: Uint8Array, peer_index: bigint): Promise<void>;
|
|
260
|
+
/**
|
|
261
|
+
* @returns {Promise<WasmBlockchain>}
|
|
262
|
+
*/
|
|
263
|
+
export function get_blockchain(): Promise<WasmBlockchain>;
|
|
255
264
|
/**
|
|
256
265
|
* @returns {Promise<bigint>}
|
|
257
266
|
*/
|
|
258
267
|
export function get_next_peer_index(): Promise<bigint>;
|
|
259
268
|
/**
|
|
260
|
-
* @param {
|
|
261
|
-
* @
|
|
262
|
-
* @param {string} slip3_utxo_key
|
|
263
|
-
* @param {number} left_count
|
|
264
|
-
* @param {number} right_count
|
|
265
|
-
* @param {Uint8Array} tx_msg
|
|
266
|
-
* @returns {Promise<WasmTransaction>}
|
|
269
|
+
* @param {Array<any>} keys
|
|
270
|
+
* @returns {Promise<WasmBalanceSnapshot>}
|
|
267
271
|
*/
|
|
268
|
-
export function
|
|
272
|
+
export function get_balance_snapshot(keys: Array<any>): Promise<WasmBalanceSnapshot>;
|
|
269
273
|
/**
|
|
270
|
-
* @param {
|
|
271
|
-
* @param {string}
|
|
272
|
-
* @
|
|
273
|
-
* @param {string} slip3_utxo_key
|
|
274
|
-
* @param {string} recipient_public_key
|
|
275
|
-
* @param {Uint8Array} tx_msg
|
|
276
|
-
* @returns {Promise<WasmTransaction>}
|
|
274
|
+
* @param {Uint8Array} buffer
|
|
275
|
+
* @param {string} private_key
|
|
276
|
+
* @returns {string}
|
|
277
277
|
*/
|
|
278
|
-
export function
|
|
278
|
+
export function sign_buffer(buffer: Uint8Array, private_key: string): string;
|
|
279
279
|
/**
|
|
280
280
|
*/
|
|
281
281
|
export class SaitoWasm {
|
|
@@ -498,6 +498,11 @@ export class WasmBlockchain {
|
|
|
498
498
|
*/
|
|
499
499
|
get_last_block_id(): Promise<bigint>;
|
|
500
500
|
/**
|
|
501
|
+
* @param {string} utxokey_hex
|
|
502
|
+
* @returns {Promise<boolean>}
|
|
503
|
+
*/
|
|
504
|
+
is_slip_spendable(utxokey_hex: string): Promise<boolean>;
|
|
505
|
+
/**
|
|
501
506
|
* @param {Function} reorg_cb
|
|
502
507
|
* @param {Function} add_block_cb
|
|
503
508
|
* @param {Function} confirm_cb
|
|
@@ -726,6 +731,11 @@ export class WasmPeerServiceList {
|
|
|
726
731
|
export class WasmSlip {
|
|
727
732
|
free(): void;
|
|
728
733
|
/**
|
|
734
|
+
* @param {string} key_hex
|
|
735
|
+
* @returns {WasmSlip | undefined}
|
|
736
|
+
*/
|
|
737
|
+
static parse_slip_from_utxokey(key_hex: string): WasmSlip | undefined;
|
|
738
|
+
/**
|
|
729
739
|
*/
|
|
730
740
|
constructor();
|
|
731
741
|
/**
|
|
@@ -773,6 +783,13 @@ export class WasmTransaction {
|
|
|
773
783
|
*/
|
|
774
784
|
add_from_slip(slip: WasmSlip): void;
|
|
775
785
|
/**
|
|
786
|
+
* @returns {Uint8Array}
|
|
787
|
+
*/
|
|
788
|
+
get_hash_for_signature(): Uint8Array;
|
|
789
|
+
/**
|
|
790
|
+
*/
|
|
791
|
+
generate_hash_for_signature(): void;
|
|
792
|
+
/**
|
|
776
793
|
*/
|
|
777
794
|
constructor();
|
|
778
795
|
/**
|
|
@@ -1007,9 +1024,7 @@ export interface InitOutput {
|
|
|
1007
1024
|
readonly wasmconsensusvalues_total_rebroadcast_slips: (a: number) => number;
|
|
1008
1025
|
readonly wasmconsensusvalues_total_rebroadcast_staking_payouts_nolan: (a: number) => number;
|
|
1009
1026
|
readonly wasmconsensusvalues_avg_total_fees: (a: number) => number;
|
|
1010
|
-
readonly __wbg_wasmstats_free: (a: number) => void;
|
|
1011
1027
|
readonly __wbg_wasmblock_free: (a: number) => void;
|
|
1012
|
-
readonly __wbg_wasmblockchain_free: (a: number) => void;
|
|
1013
1028
|
readonly __wbg_wasmtransaction_free: (a: number) => void;
|
|
1014
1029
|
readonly wasmblock_avg_fee_per_byte: (a: number) => number;
|
|
1015
1030
|
readonly wasmblock_avg_income: (a: number) => number;
|
|
@@ -1067,31 +1082,13 @@ export interface InitOutput {
|
|
|
1067
1082
|
readonly wasmblock_total_rebroadcast_slips: (a: number) => number;
|
|
1068
1083
|
readonly wasmblock_total_work: (a: number) => number;
|
|
1069
1084
|
readonly wasmblock_treasury: (a: number) => number;
|
|
1070
|
-
readonly wasmblockchain_get_block_confirmation_limit: (a: number) => number;
|
|
1071
|
-
readonly wasmblockchain_get_fork_id: (a: number) => number;
|
|
1072
|
-
readonly wasmblockchain_get_genesis_block_id: (a: number) => number;
|
|
1073
|
-
readonly wasmblockchain_get_genesis_timestamp: (a: number) => number;
|
|
1074
|
-
readonly wasmblockchain_get_hashes_at_id: (a: number, b: number) => number;
|
|
1075
|
-
readonly wasmblockchain_get_last_block_hash: (a: number) => number;
|
|
1076
|
-
readonly wasmblockchain_get_last_block_id: (a: number) => number;
|
|
1077
|
-
readonly wasmblockchain_get_last_burnfee: (a: number) => number;
|
|
1078
|
-
readonly wasmblockchain_get_last_timestamp: (a: number) => number;
|
|
1079
|
-
readonly wasmblockchain_get_latest_block_id: (a: number) => number;
|
|
1080
|
-
readonly wasmblockchain_get_longest_chain_hash_at: (a: number, b: number) => number;
|
|
1081
|
-
readonly wasmblockchain_get_longest_chain_hash_at_id: (a: number, b: number) => number;
|
|
1082
|
-
readonly wasmblockchain_get_lowest_acceptable_block_hash: (a: number) => number;
|
|
1083
|
-
readonly wasmblockchain_get_lowest_acceptable_block_id: (a: number) => number;
|
|
1084
|
-
readonly wasmblockchain_get_lowest_acceptable_timestamp: (a: number) => number;
|
|
1085
|
-
readonly wasmblockchain_get_prune_after_blocks: (a: number) => number;
|
|
1086
|
-
readonly wasmblockchain_register_callback: (a: number, b: number, c: number, d: number) => number;
|
|
1087
|
-
readonly wasmblockchain_reset: (a: number) => number;
|
|
1088
|
-
readonly wasmblockchain_set_fork_id: (a: number, b: number) => number;
|
|
1089
|
-
readonly wasmblockchain_set_safe_to_prune_transaction: (a: number, b: number) => number;
|
|
1090
1085
|
readonly wasmtransaction_add_from_slip: (a: number, b: number) => void;
|
|
1091
1086
|
readonly wasmtransaction_add_to_slip: (a: number, b: number) => void;
|
|
1092
1087
|
readonly wasmtransaction_deserialize: (a: number, b: number) => void;
|
|
1093
1088
|
readonly wasmtransaction_from: (a: number) => number;
|
|
1089
|
+
readonly wasmtransaction_generate_hash_for_signature: (a: number) => void;
|
|
1094
1090
|
readonly wasmtransaction_get_data: (a: number) => number;
|
|
1091
|
+
readonly wasmtransaction_get_hash_for_signature: (a: number) => number;
|
|
1095
1092
|
readonly wasmtransaction_get_routing_path: (a: number) => number;
|
|
1096
1093
|
readonly wasmtransaction_get_timestamp: (a: number) => number;
|
|
1097
1094
|
readonly wasmtransaction_get_txs_replacements: (a: number) => number;
|
|
@@ -1111,7 +1108,8 @@ export interface InitOutput {
|
|
|
1111
1108
|
readonly wasmtransaction_total_fees: (a: number) => number;
|
|
1112
1109
|
readonly wasmblock_avg_total_fees: (a: number) => number;
|
|
1113
1110
|
readonly __wbg_saitowasm_free: (a: number) => void;
|
|
1114
|
-
readonly
|
|
1111
|
+
readonly __wbg_wasmblockchain_free: (a: number) => void;
|
|
1112
|
+
readonly __wbg_wasmnft_free: (a: number) => void;
|
|
1115
1113
|
readonly create_bound_transaction: (a: number, b: number, c: number, d: number, e: number, f: number) => number;
|
|
1116
1114
|
readonly create_merge_bound_transaction: (a: number, b: number, c: number) => number;
|
|
1117
1115
|
readonly create_remove_bound_transaction: (a: number, b: number, c: number) => number;
|
|
@@ -1160,25 +1158,27 @@ export interface InitOutput {
|
|
|
1160
1158
|
readonly start_from_received_ghost_chain: () => number;
|
|
1161
1159
|
readonly update_from_balance_snapshot: (a: number) => number;
|
|
1162
1160
|
readonly verify_signature: (a: number, b: number, c: number) => number;
|
|
1163
|
-
readonly
|
|
1164
|
-
readonly
|
|
1165
|
-
readonly
|
|
1166
|
-
readonly
|
|
1167
|
-
readonly
|
|
1168
|
-
readonly
|
|
1169
|
-
readonly
|
|
1170
|
-
readonly
|
|
1171
|
-
readonly
|
|
1172
|
-
readonly
|
|
1173
|
-
readonly
|
|
1174
|
-
readonly
|
|
1175
|
-
readonly
|
|
1176
|
-
readonly
|
|
1177
|
-
readonly
|
|
1178
|
-
readonly
|
|
1179
|
-
readonly
|
|
1180
|
-
readonly
|
|
1181
|
-
readonly
|
|
1161
|
+
readonly wasmblockchain_get_block_confirmation_limit: (a: number) => number;
|
|
1162
|
+
readonly wasmblockchain_get_fork_id: (a: number) => number;
|
|
1163
|
+
readonly wasmblockchain_get_genesis_block_id: (a: number) => number;
|
|
1164
|
+
readonly wasmblockchain_get_genesis_timestamp: (a: number) => number;
|
|
1165
|
+
readonly wasmblockchain_get_hashes_at_id: (a: number, b: number) => number;
|
|
1166
|
+
readonly wasmblockchain_get_last_block_hash: (a: number) => number;
|
|
1167
|
+
readonly wasmblockchain_get_last_block_id: (a: number) => number;
|
|
1168
|
+
readonly wasmblockchain_get_last_burnfee: (a: number) => number;
|
|
1169
|
+
readonly wasmblockchain_get_last_timestamp: (a: number) => number;
|
|
1170
|
+
readonly wasmblockchain_get_latest_block_id: (a: number) => number;
|
|
1171
|
+
readonly wasmblockchain_get_longest_chain_hash_at: (a: number, b: number) => number;
|
|
1172
|
+
readonly wasmblockchain_get_longest_chain_hash_at_id: (a: number, b: number) => number;
|
|
1173
|
+
readonly wasmblockchain_get_lowest_acceptable_block_hash: (a: number) => number;
|
|
1174
|
+
readonly wasmblockchain_get_lowest_acceptable_block_id: (a: number) => number;
|
|
1175
|
+
readonly wasmblockchain_get_lowest_acceptable_timestamp: (a: number) => number;
|
|
1176
|
+
readonly wasmblockchain_get_prune_after_blocks: (a: number) => number;
|
|
1177
|
+
readonly wasmblockchain_is_slip_spendable: (a: number, b: number) => number;
|
|
1178
|
+
readonly wasmblockchain_register_callback: (a: number, b: number, c: number, d: number) => number;
|
|
1179
|
+
readonly wasmblockchain_reset: (a: number) => number;
|
|
1180
|
+
readonly wasmblockchain_set_fork_id: (a: number, b: number) => number;
|
|
1181
|
+
readonly wasmblockchain_set_safe_to_prune_transaction: (a: number, b: number) => number;
|
|
1182
1182
|
readonly wasmnft_id: (a: number) => number;
|
|
1183
1183
|
readonly wasmnft_new: () => number;
|
|
1184
1184
|
readonly wasmnft_set_id: (a: number, b: number) => void;
|
|
@@ -1190,9 +1190,29 @@ export interface InitOutput {
|
|
|
1190
1190
|
readonly wasmnft_slip2: (a: number) => number;
|
|
1191
1191
|
readonly wasmnft_slip3: (a: number) => number;
|
|
1192
1192
|
readonly wasmnft_tx_sig: (a: number) => number;
|
|
1193
|
+
readonly write_issuance_file: (a: number) => number;
|
|
1194
|
+
readonly __wbg_wasmbalancesnapshot_free: (a: number) => void;
|
|
1195
|
+
readonly __wbg_wasmpeer_free: (a: number) => void;
|
|
1196
|
+
readonly __wbg_wasmslip_free: (a: number) => void;
|
|
1197
|
+
readonly __wbg_wasmwallet_free: (a: number) => void;
|
|
1198
|
+
readonly __wbg_wasmwalletslip_free: (a: number) => void;
|
|
1199
|
+
readonly wasmbalancesnapshot_from_string: (a: number, b: number) => void;
|
|
1200
|
+
readonly wasmbalancesnapshot_get_entries: (a: number) => number;
|
|
1201
|
+
readonly wasmbalancesnapshot_get_file_name: (a: number) => number;
|
|
1202
|
+
readonly wasmbalancesnapshot_to_string: (a: number) => number;
|
|
1203
|
+
readonly wasmpeer_get_key_list: (a: number) => number;
|
|
1204
|
+
readonly wasmpeer_get_peer_index: (a: number) => number;
|
|
1205
|
+
readonly wasmpeer_get_public_key: (a: number) => number;
|
|
1206
|
+
readonly wasmpeer_get_services: (a: number) => number;
|
|
1207
|
+
readonly wasmpeer_get_status: (a: number) => number;
|
|
1208
|
+
readonly wasmpeer_get_sync_type: (a: number) => number;
|
|
1209
|
+
readonly wasmpeer_has_service: (a: number, b: number) => number;
|
|
1210
|
+
readonly wasmpeer_new: (a: number) => number;
|
|
1211
|
+
readonly wasmpeer_set_services: (a: number, b: number) => void;
|
|
1193
1212
|
readonly wasmslip_amount: (a: number) => number;
|
|
1194
1213
|
readonly wasmslip_block_id: (a: number) => number;
|
|
1195
1214
|
readonly wasmslip_new: () => number;
|
|
1215
|
+
readonly wasmslip_parse_slip_from_utxokey: (a: number) => number;
|
|
1196
1216
|
readonly wasmslip_public_key: (a: number) => number;
|
|
1197
1217
|
readonly wasmslip_set_amount: (a: number, b: number) => void;
|
|
1198
1218
|
readonly wasmslip_set_block_id: (a: number, b: number) => void;
|
|
@@ -1237,6 +1257,7 @@ export interface InitOutput {
|
|
|
1237
1257
|
readonly wasmwalletslip_get_amount: (a: number) => number;
|
|
1238
1258
|
readonly wasmwalletslip_get_block_id: (a: number) => number;
|
|
1239
1259
|
readonly wasmwalletslip_get_tx_ordinal: (a: number) => number;
|
|
1260
|
+
readonly __wbg_wasmstats_free: (a: number) => void;
|
|
1240
1261
|
readonly rustsecp256k1_v0_10_0_context_create: (a: number) => number;
|
|
1241
1262
|
readonly rustsecp256k1_v0_10_0_context_destroy: (a: number) => void;
|
|
1242
1263
|
readonly rustsecp256k1_v0_10_0_default_error_callback_fn: (a: number, b: number) => void;
|