turing-wallet-provider 1.4.1 → 1.4.2
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/README.md +2 -2
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -297,6 +297,7 @@ const params = [
|
|
|
297
297
|
},
|
|
298
298
|
];
|
|
299
299
|
const { txid } = await wallet.sendTransaction(params);
|
|
300
|
+
//const { error } = await wallet.sendTransaction(params);构建或广播交易时出现错误
|
|
300
301
|
```
|
|
301
302
|
|
|
302
303
|
### FT_TRANSFER
|
|
@@ -338,6 +339,7 @@ const params = [
|
|
|
338
339
|
},
|
|
339
340
|
];
|
|
340
341
|
const { txid } = await wallet.sendTransaction(params);
|
|
342
|
+
//const { error } = await wallet.sendTransaction(params);构建或广播交易时出现错误
|
|
341
343
|
```
|
|
342
344
|
|
|
343
345
|
### POOLNFT_INIT
|
|
@@ -469,7 +471,6 @@ const params = [
|
|
|
469
471
|
},
|
|
470
472
|
];
|
|
471
473
|
const { txid } = await wallet.sendTransaction(params);
|
|
472
|
-
//const { txraw } = await wallet.sendTransaction(params);broadcastEnabled为false
|
|
473
474
|
//const { error } = await wallet.sendTransaction(params);构建或广播交易时出现错误
|
|
474
475
|
```
|
|
475
476
|
|
|
@@ -486,6 +487,5 @@ const params = [
|
|
|
486
487
|
},
|
|
487
488
|
];
|
|
488
489
|
const { txid } = await wallet.sendTransaction(params);
|
|
489
|
-
//const { txraw } = await wallet.sendTransaction(params);broadcastEnabled为false
|
|
490
490
|
//const { error } = await wallet.sendTransaction(params);构建或广播交易时出现错误
|
|
491
491
|
```
|