Remove ContractAddresses from packages/types (mistake after rebase)

This commit is contained in:
Alex Browne 2018-10-15 14:10:31 -07:00
parent 00db096d2e
commit be1a597250

View File

@ -624,25 +624,3 @@ export interface EIP712TypedData {
export interface Stats { export interface Stats {
orderCount: number; 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;
}