Make ZeroEx constructor accept Web3Provider instead of Web3 instance
This commit is contained in:
@@ -1,4 +1,5 @@
|
||||
import * as _ from 'lodash';
|
||||
import * as Web3 from 'web3';
|
||||
|
||||
// Utility function to create a K:V from a list of strings
|
||||
// Adapted from: https://basarat.gitbooks.io/typescript/content/docs/types/literal-types.html
|
||||
@@ -280,3 +281,5 @@ export interface ContractEventEmitter {
|
||||
watch: (eventCallback: EventCallback) => void;
|
||||
stopWatchingAsync: () => Promise<void>;
|
||||
}
|
||||
|
||||
export type Web3Provider = Web3.Provider;
|
||||
|
Reference in New Issue
Block a user