aboutsummaryrefslogtreecommitdiffstats
path: root/packages/pipeline/src/parsers/web3/index.ts
diff options
context:
space:
mode:
authorAlex Browne <stephenalexbrowne@gmail.com>2018-12-05 12:20:49 +0800
committerAlex Browne <stephenalexbrowne@gmail.com>2018-12-05 12:20:49 +0800
commite0348f9c044b4909260e4864398b4f50232da620 (patch)
tree2250eb061a4b2c27d3dc1727a26e1380cb8d9226 /packages/pipeline/src/parsers/web3/index.ts
parent2e704ac01a077b0c73288aaa53c9cf66c73e27f1 (diff)
downloaddexon-sol-tools-e0348f9c044b4909260e4864398b4f50232da620.tar
dexon-sol-tools-e0348f9c044b4909260e4864398b4f50232da620.tar.gz
dexon-sol-tools-e0348f9c044b4909260e4864398b4f50232da620.tar.bz2
dexon-sol-tools-e0348f9c044b4909260e4864398b4f50232da620.tar.lz
dexon-sol-tools-e0348f9c044b4909260e4864398b4f50232da620.tar.xz
dexon-sol-tools-e0348f9c044b4909260e4864398b4f50232da620.tar.zst
dexon-sol-tools-e0348f9c044b4909260e4864398b4f50232da620.zip
Change type of transactions.gas_used and gas_price to BigNumber/numeric
Diffstat (limited to 'packages/pipeline/src/parsers/web3/index.ts')
-rw-r--r--packages/pipeline/src/parsers/web3/index.ts5
1 files changed, 3 insertions, 2 deletions
diff --git a/packages/pipeline/src/parsers/web3/index.ts b/packages/pipeline/src/parsers/web3/index.ts
index 86f924151..f986efc59 100644
--- a/packages/pipeline/src/parsers/web3/index.ts
+++ b/packages/pipeline/src/parsers/web3/index.ts
@@ -1,3 +1,4 @@
+import { BigNumber } from '@0x/utils';
import { BlockWithoutTransactionData, Transaction as EthTransaction } from 'ethereum-types';
import { Block, Transaction } from '../../entities';
@@ -41,8 +42,8 @@ export function parseTransaction(rawTransaction: EthTransaction): Transaction {
tx.blockHash = rawTransaction.blockHash;
tx.blockNumber = rawTransaction.blockNumber;
- tx.gasUsed = rawTransaction.gas;
- tx.gasPrice = rawTransaction.gasPrice.toNumber();
+ tx.gasUsed = new BigNumber(rawTransaction.gas);
+ tx.gasPrice = rawTransaction.gasPrice;
return tx;
}