@utexo/rgb-lib-linux-x64 0.3.0-beta.15 → 0.3.0-beta.16.dev
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/package.json
CHANGED
|
@@ -44,7 +44,7 @@ CResultString rgblib_backup_info(const COpaqueStruct *wallet);
|
|
|
44
44
|
CResultString rgblib_blind_receive(const COpaqueStruct *wallet,
|
|
45
45
|
const char *asset_id_opt,
|
|
46
46
|
const char *assignment,
|
|
47
|
-
const char *
|
|
47
|
+
const char *expiration_timestamp_opt,
|
|
48
48
|
const char *transport_endpoints,
|
|
49
49
|
const char *min_confirmations);
|
|
50
50
|
|
|
@@ -131,7 +131,6 @@ CResultString rgblib_issue_asset_ifa(const COpaqueStruct *wallet,
|
|
|
131
131
|
const char *precision,
|
|
132
132
|
const char *amounts,
|
|
133
133
|
const char *inflation_amounts,
|
|
134
|
-
const char *replace_rights_num,
|
|
135
134
|
const char *reject_list_url_opt);
|
|
136
135
|
|
|
137
136
|
CResultString rgblib_issue_asset_nia(const COpaqueStruct *wallet,
|
|
@@ -163,7 +162,7 @@ CResultString rgblib_list_unspents(const COpaqueStruct *wallet,
|
|
|
163
162
|
|
|
164
163
|
CResult rgblib_new_vss_backup_client(const char *config_json);
|
|
165
164
|
|
|
166
|
-
CResult rgblib_new_wallet(const char *wallet_data);
|
|
165
|
+
CResult rgblib_new_wallet(const char *wallet_data, const char *keys);
|
|
167
166
|
|
|
168
167
|
CResultString rgblib_refresh(const COpaqueStruct *wallet,
|
|
169
168
|
const COpaqueStruct *online,
|
|
@@ -179,12 +178,17 @@ CResultString rgblib_restore_from_vss(const char *config_json, const char *targe
|
|
|
179
178
|
|
|
180
179
|
CResultString rgblib_restore_keys(const char *bitcoin_network, const char *mnemonic);
|
|
181
180
|
|
|
181
|
+
CResultString rgblib_rotate_colored_address(const COpaqueStruct *wallet);
|
|
182
|
+
|
|
183
|
+
CResultString rgblib_rotate_vanilla_address(const COpaqueStruct *wallet);
|
|
184
|
+
|
|
182
185
|
CResultString rgblib_send(const COpaqueStruct *wallet,
|
|
183
186
|
const COpaqueStruct *online,
|
|
184
187
|
const char *recipient_map,
|
|
185
188
|
bool donation,
|
|
186
189
|
const char *fee_rate,
|
|
187
190
|
const char *min_confirmations,
|
|
191
|
+
const char *expiration_timestamp_opt,
|
|
188
192
|
bool skip_sync);
|
|
189
193
|
|
|
190
194
|
CResultString rgblib_send_begin(const COpaqueStruct *wallet,
|
|
@@ -192,7 +196,9 @@ CResultString rgblib_send_begin(const COpaqueStruct *wallet,
|
|
|
192
196
|
const char *recipient_map,
|
|
193
197
|
bool donation,
|
|
194
198
|
const char *fee_rate,
|
|
195
|
-
const char *min_confirmations
|
|
199
|
+
const char *min_confirmations,
|
|
200
|
+
const char *expiration_timestamp_opt,
|
|
201
|
+
bool dry_run);
|
|
196
202
|
|
|
197
203
|
CResultString rgblib_send_btc(const COpaqueStruct *wallet,
|
|
198
204
|
const COpaqueStruct *online,
|
|
@@ -201,18 +207,6 @@ CResultString rgblib_send_btc(const COpaqueStruct *wallet,
|
|
|
201
207
|
const char *fee_rate,
|
|
202
208
|
bool skip_sync);
|
|
203
209
|
|
|
204
|
-
CResultString rgblib_send_btc_begin(const COpaqueStruct *wallet,
|
|
205
|
-
const COpaqueStruct *online,
|
|
206
|
-
const char *address,
|
|
207
|
-
const char *amount,
|
|
208
|
-
const char *fee_rate,
|
|
209
|
-
bool skip_sync);
|
|
210
|
-
|
|
211
|
-
CResultString rgblib_send_btc_end(const COpaqueStruct *wallet,
|
|
212
|
-
const COpaqueStruct *online,
|
|
213
|
-
const char *signed_psbt,
|
|
214
|
-
bool skip_sync);
|
|
215
|
-
|
|
216
210
|
CResultString rgblib_send_end(const COpaqueStruct *wallet,
|
|
217
211
|
const COpaqueStruct *online,
|
|
218
212
|
const char *signed_psbt,
|
|
@@ -226,6 +220,11 @@ CResultString rgblib_validate_consignment(const char *file_path,
|
|
|
226
220
|
const char *indexer_url,
|
|
227
221
|
const char *bitcoin_network);
|
|
228
222
|
|
|
223
|
+
CResultString rgblib_validate_consignment_offchain(const char *file_path,
|
|
224
|
+
const char *txid,
|
|
225
|
+
const char *indexer_url,
|
|
226
|
+
const char *bitcoin_network);
|
|
227
|
+
|
|
229
228
|
CResultString rgblib_vss_backup(const COpaqueStruct *wallet, const COpaqueStruct *client);
|
|
230
229
|
|
|
231
230
|
CResultString rgblib_vss_backup_client_encryption_enabled(const COpaqueStruct *client);
|
|
@@ -237,7 +236,7 @@ CResultString rgblib_vss_delete_backup(const COpaqueStruct *client);
|
|
|
237
236
|
CResultString rgblib_witness_receive(const COpaqueStruct *wallet,
|
|
238
237
|
const char *asset_id_opt,
|
|
239
238
|
const char *assignment,
|
|
240
|
-
const char *
|
|
239
|
+
const char *expiration_timestamp_opt,
|
|
241
240
|
const char *transport_endpoints,
|
|
242
241
|
const char *min_confirmations);
|
|
243
242
|
|