@waves/waves-transactions
Advanced tools
Comparing version 3.7.2 to 3.8.0
@@ -21,3 +21,3 @@ "use strict"; | ||
feeAssetId: paramsOrTx.feeAssetId, | ||
timestamp: Date.now(), | ||
timestamp: paramsOrTx.timestamp || Date.now(), | ||
chainId: generic_1.networkByte(paramsOrTx.chainId, 87), | ||
@@ -24,0 +24,0 @@ proofs: paramsOrTx.proofs || [], |
@@ -23,3 +23,3 @@ "use strict"; | ||
fee: generic_1.fee(paramsOrTx, 100000000), | ||
timestamp: Date.now(), | ||
timestamp: paramsOrTx.timestamp || Date.now(), | ||
chainId: generic_1.networkByte(paramsOrTx.chainId, 87), | ||
@@ -26,0 +26,0 @@ proofs: paramsOrTx.proofs || [], |
@@ -19,3 +19,3 @@ "use strict"; | ||
fee: generic_1.fee(paramsOrTx, 100000000), | ||
timestamp: Date.now(), | ||
timestamp: paramsOrTx.timestamp || Date.now(), | ||
proofs: paramsOrTx.proofs || [], | ||
@@ -22,0 +22,0 @@ id: '', |
{ | ||
"name": "@waves/waves-transactions", | ||
"version": "3.7.2", | ||
"version": "3.8.0", | ||
"description": "Build and sign(multi-sign) transactions for Waves blockchain.", | ||
@@ -68,3 +68,3 @@ "keywords": [ | ||
"dependencies": { | ||
"@waves/marshall": "^0.7.3", | ||
"@waves/marshall": "^0.7.6", | ||
"@waves/waves-crypto": "^2.0.4", | ||
@@ -71,0 +71,0 @@ "axios": "^0.18.0" |
@@ -32,3 +32,3 @@ import { | ||
feeAssetId: paramsOrTx.feeAssetId, | ||
timestamp: Date.now(), | ||
timestamp: paramsOrTx.timestamp || Date.now(), | ||
chainId: networkByte(paramsOrTx.chainId, 87), | ||
@@ -35,0 +35,0 @@ proofs: paramsOrTx.proofs || [], |
@@ -28,3 +28,3 @@ import { IIssueTransaction, TRANSACTION_TYPE, IIssueParams, WithId, WithSender } from '../transactions' | ||
fee: fee(paramsOrTx, 100000000), | ||
timestamp: Date.now(), | ||
timestamp: paramsOrTx.timestamp || Date.now(), | ||
chainId: networkByte(paramsOrTx.chainId, 87), | ||
@@ -31,0 +31,0 @@ proofs: paramsOrTx.proofs || [], |
@@ -24,3 +24,3 @@ import { TRANSACTION_TYPE, WithId, WithSender, ISponsorshipParams, ISponsorshipTransaction } from '../transactions' | ||
fee: fee(paramsOrTx, 100000000), | ||
timestamp: Date.now(), | ||
timestamp: paramsOrTx.timestamp || Date.now(), | ||
proofs: paramsOrTx.proofs || [], | ||
@@ -27,0 +27,0 @@ id: '', |
Sorry, the diff of this file is too big to display
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
736217
5845
Updated@waves/marshall@^0.7.6