evernode-js-client 0.6.30 → 0.6.31
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/build/Release/secp256k1.node +0 -0
- package/index.js +1 -1
- package/package.json +1 -1
|
Binary file
|
package/index.js
CHANGED
|
@@ -57386,7 +57386,7 @@ class XrplAccount {
|
|
|
57386
57386
|
|
|
57387
57387
|
Object.assign(tx, txOptions);
|
|
57388
57388
|
const txnBlob = this.xrplApi.xrplHelper.encode(tx);
|
|
57389
|
-
const fees = options.fee || await this.xrplApi.getTransactionFee(txnBlob);
|
|
57389
|
+
const fees = options.fee || (options.feeUplift ? (`${options.feeUplift + Number(await this.xrplApi.getTransactionFee(txnBlob))}`) : await this.xrplApi.getTransactionFee(txnBlob));
|
|
57390
57390
|
delete tx['SigningPubKey'];
|
|
57391
57391
|
tx.Fee = fees + '';
|
|
57392
57392
|
return tx;
|
package/package.json
CHANGED
|
@@ -6,7 +6,7 @@
|
|
|
6
6
|
],
|
|
7
7
|
"homepage": "https://github.com/HotPocketDev/evernode-js-client",
|
|
8
8
|
"license": "SEE LICENSE IN https://raw.githubusercontent.com/EvernodeXRPL/evernode-resources/main/license/evernode-license.pdf",
|
|
9
|
-
"version": "0.6.
|
|
9
|
+
"version": "0.6.31",
|
|
10
10
|
"dependencies": {
|
|
11
11
|
"elliptic": "6.5.4",
|
|
12
12
|
"libsodium-wrappers": "0.7.10",
|