Introduce ethereum-types package

This commit is contained in:
Leonid Logvinov
2018-05-30 14:41:36 -07:00
parent c284f6dcd4
commit a7fc9caacb
81 changed files with 511 additions and 361 deletions

View File

@@ -1,5 +1,5 @@
import { Callback, ErrorCallback, NextCallback, Subprovider } from '@0xproject/subproviders';
import { BlockParam, CallData, JSONRPCRequestPayload, TransactionTrace, TxData } from '@0xproject/types';
import { BlockParam, CallData, JSONRPCRequestPayload, TransactionTrace, TxData } from 'ethereum-types';
import * as fs from 'fs';
import * as _ from 'lodash';
import { Lock } from 'semaphore-async-await';

View File

@@ -1,4 +1,4 @@
import { OpCode, StructLog, TransactionTrace } from '@0xproject/types';
import { OpCode, StructLog, TransactionTrace } from 'ethereum-types';
import { addressUtils, BigNumber, logUtils } from '@0xproject/utils';
import { addHexPrefix, stripHexPrefix } from 'ethereumjs-util';
import * as fs from 'fs';