aboutsummaryrefslogtreecommitdiffstats
path: root/packages/contract-wrappers/src/utils/contract_addresses.ts
diff options
context:
space:
mode:
Diffstat (limited to 'packages/contract-wrappers/src/utils/contract_addresses.ts')
-rw-r--r--packages/contract-wrappers/src/utils/contract_addresses.ts15
1 files changed, 0 insertions, 15 deletions
diff --git a/packages/contract-wrappers/src/utils/contract_addresses.ts b/packages/contract-wrappers/src/utils/contract_addresses.ts
deleted file mode 100644
index dc156e017..000000000
--- a/packages/contract-wrappers/src/utils/contract_addresses.ts
+++ /dev/null
@@ -1,15 +0,0 @@
-import { ContractAddresses, getContractAddressesForNetworkOrThrow, NetworkId } from '@0x/contract-addresses';
-import * as _ from 'lodash';
-
-/**
- * Returns the default contract addresses for the given networkId or throws with
- * a context-specific error message if the networkId is not recognized.
- */
-export function _getDefaultContractAddresses(networkId: number): ContractAddresses {
- if (!(networkId in NetworkId)) {
- throw new Error(
- `No default contract addresses found for the given network id (${networkId}). If you want to use ContractWrappers on this network, you must manually pass in the contract address(es) to the constructor.`,
- );
- }
- return getContractAddressesForNetworkOrThrow(networkId);
-}