Use ethers in abi_decoder utils
This commit is contained in:
@@ -35,7 +35,7 @@
|
||||
"@0xproject/typescript-typings": "^0.2.0",
|
||||
"@types/node": "^8.0.53",
|
||||
"bignumber.js": "~4.1.0",
|
||||
"ethers-contracts": "^2.2.1",
|
||||
"ethers": "^3.0.15",
|
||||
"js-sha3": "^0.7.0",
|
||||
"lodash": "^4.17.4",
|
||||
"web3": "^0.20.0"
|
||||
|
@@ -9,7 +9,7 @@ import {
|
||||
RawLog,
|
||||
SolidityTypes,
|
||||
} from '@0xproject/types';
|
||||
import * as ethersContracts from 'ethers-contracts';
|
||||
import * as ethers from 'ethers';
|
||||
import * as _ from 'lodash';
|
||||
|
||||
import { BigNumber } from './configured_bignumber';
|
||||
@@ -36,7 +36,7 @@ export class AbiDecoder {
|
||||
if (_.isUndefined(event)) {
|
||||
return log;
|
||||
}
|
||||
const ethersInterface = new ethersContracts.Interface([event]);
|
||||
const ethersInterface = new ethers.Interface([event]);
|
||||
const logData = log.data;
|
||||
const decodedParams: DecodedLogArgs = {};
|
||||
let topicsIndex = 1;
|
||||
@@ -77,7 +77,7 @@ export class AbiDecoder {
|
||||
if (_.isUndefined(abiArray)) {
|
||||
return;
|
||||
}
|
||||
const ethersInterface = new ethersContracts.Interface(abiArray);
|
||||
const ethersInterface = new ethers.Interface(abiArray);
|
||||
_.map(abiArray, (abi: AbiDefinition) => {
|
||||
if (abi.type === AbiType.Event) {
|
||||
const topic = ethersInterface.events[abi.name].topic;
|
||||
|
Reference in New Issue
Block a user