aboutsummaryrefslogtreecommitdiffstats
path: root/packages/web3-wrapper/src/marshaller.ts
diff options
context:
space:
mode:
authorFrancesco Agosti <francesco.agosti93@gmail.com>2018-07-07 02:46:03 +0800
committerGitHub <noreply@github.com>2018-07-07 02:46:03 +0800
commitc4ab5bc65333204e7cf712e3330406120f163268 (patch)
tree7b6238c249db849d647e6679c0d1333cac317ef9 /packages/web3-wrapper/src/marshaller.ts
parent1d3bdfc3746255d4dfe28eabed884c7ef23bf1d8 (diff)
parent72fb1ee36f5ca7bceebb1ad2eac707295ccbe9c2 (diff)
downloaddexon-sol-tools-c4ab5bc65333204e7cf712e3330406120f163268.tar
dexon-sol-tools-c4ab5bc65333204e7cf712e3330406120f163268.tar.gz
dexon-sol-tools-c4ab5bc65333204e7cf712e3330406120f163268.tar.bz2
dexon-sol-tools-c4ab5bc65333204e7cf712e3330406120f163268.tar.lz
dexon-sol-tools-c4ab5bc65333204e7cf712e3330406120f163268.tar.xz
dexon-sol-tools-c4ab5bc65333204e7cf712e3330406120f163268.tar.zst
dexon-sol-tools-c4ab5bc65333204e7cf712e3330406120f163268.zip
Merge pull request #829 from 0xProject/bug/web3-wrapper/fix-invalid-transaction-format
Fix invalid transaction format errors when going through `SingerSubprovider`
Diffstat (limited to 'packages/web3-wrapper/src/marshaller.ts')
-rw-r--r--packages/web3-wrapper/src/marshaller.ts13
1 files changed, 13 insertions, 0 deletions
diff --git a/packages/web3-wrapper/src/marshaller.ts b/packages/web3-wrapper/src/marshaller.ts
index e9fd35a11..15384417e 100644
--- a/packages/web3-wrapper/src/marshaller.ts
+++ b/packages/web3-wrapper/src/marshaller.ts
@@ -73,6 +73,19 @@ export const marshaller = {
};
return tx;
},
+ unmarshalTxData(txDataRpc: TxDataRPC): TxData {
+ if (_.isUndefined(txDataRpc.from)) {
+ throw new Error(`txData must include valid 'from' value.`);
+ }
+ const txData = {
+ ...txDataRpc,
+ value: !_.isUndefined(txDataRpc.value) ? utils.convertHexToNumber(txDataRpc.value) : undefined,
+ gas: !_.isUndefined(txDataRpc.gas) ? utils.convertHexToNumber(txDataRpc.gas) : undefined,
+ gasPrice: !_.isUndefined(txDataRpc.gasPrice) ? utils.convertHexToNumber(txDataRpc.gasPrice) : undefined,
+ nonce: !_.isUndefined(txDataRpc.nonce) ? utils.convertHexToNumber(txDataRpc.nonce) : undefined,
+ };
+ return txData;
+ },
marshalTxData(txData: Partial<TxData>): Partial<TxDataRPC> {
if (_.isUndefined(txData.from)) {
throw new Error(`txData must include valid 'from' value.`);