aboutsummaryrefslogtreecommitdiffstats
path: root/src/types.ts
diff options
context:
space:
mode:
authorFabio Berger <me@fabioberger.com>2017-05-31 16:35:40 +0800
committerFabio Berger <me@fabioberger.com>2017-05-31 16:35:40 +0800
commit03072049d67f460e2420ed5e05a91ab1c06972ac (patch)
tree15291703d1e0562e41bac8a8a8adac5efdd07043 /src/types.ts
parentd1d66f563581c7f56d4956903cfb1b23d149cf18 (diff)
downloaddexon-sol-tools-03072049d67f460e2420ed5e05a91ab1c06972ac.tar
dexon-sol-tools-03072049d67f460e2420ed5e05a91ab1c06972ac.tar.gz
dexon-sol-tools-03072049d67f460e2420ed5e05a91ab1c06972ac.tar.bz2
dexon-sol-tools-03072049d67f460e2420ed5e05a91ab1c06972ac.tar.lz
dexon-sol-tools-03072049d67f460e2420ed5e05a91ab1c06972ac.tar.xz
dexon-sol-tools-03072049d67f460e2420ed5e05a91ab1c06972ac.tar.zst
dexon-sol-tools-03072049d67f460e2420ed5e05a91ab1c06972ac.zip
remove InternalError type since this error could surface through the public interface
Diffstat (limited to 'src/types.ts')
-rw-r--r--src/types.ts6
1 files changed, 1 insertions, 5 deletions
diff --git a/src/types.ts b/src/types.ts
index bf0a1d8b4..caef50993 100644
--- a/src/types.ts
+++ b/src/types.ts
@@ -14,14 +14,10 @@ export const ZeroExError = strEnum([
'UNHANDLED_ERROR',
'USER_HAS_NO_ASSOCIATED_ADDRESSES',
'INVALID_SIGNATURE',
+ 'CONTRACT_NOT_DEPLOYED_ON_NETWORK',
]);
export type ZeroExError = keyof typeof ZeroExError;
-export const InternalError = strEnum([
- 'PROXY_ADDRESS_NOT_FOUND',
-]);
-export type InternalError = keyof typeof InternalError;
-
/**
* Elliptic Curve signature
*/