Remove artifacts from migrations package and update contract-wrappers accordingly

This commit is contained in:
Alex Browne
2018-10-03 16:21:17 -07:00
parent 2aa73fc839
commit 3a7bb97ad1
87 changed files with 493 additions and 49977 deletions

View File

@@ -624,3 +624,25 @@ export interface EIP712TypedData {
export interface Stats {
orderCount: number;
}
export interface ContractAddresses {
erc20Proxy: string;
erc721Proxy: string;
zrxToken: string;
etherToken: string;
exchange: string;
assetProxyOwner: string;
forwarder: string;
orderValidator: string;
}
export interface OptionalContractAddresses {
erc20Proxy?: string;
erc721Proxy?: string;
zrxToken?: string;
etherToken?: string;
exchange?: string;
assetProxyOwner?: string;
forwarder?: string;
orderValidator?: string;
}