diff options
author | Hsuan Lee <boczeratul@gmail.com> | 2019-03-06 17:46:50 +0800 |
---|---|---|
committer | Hsuan Lee <boczeratul@gmail.com> | 2019-03-06 17:46:50 +0800 |
commit | 35703539d0f2b4ddb3b11d0de8c9634af59ab71f (patch) | |
tree | ae3731221dbbb3a6fa40060a8d916cfd3f738289 /packages/order-utils | |
parent | 92a1fde5b1ecd81b07cdb5bf0c9c1cd3544799db (diff) | |
download | dexon-0x-contracts-35703539d0f2b4ddb3b11d0de8c9634af59ab71f.tar.gz dexon-0x-contracts-35703539d0f2b4ddb3b11d0de8c9634af59ab71f.tar.zst dexon-0x-contracts-35703539d0f2b4ddb3b11d0de8c9634af59ab71f.zip |
Deploy @dexon-foundation/0x.jsstable
Diffstat (limited to 'packages/order-utils')
-rw-r--r-- | packages/order-utils/README.md | 2 | ||||
-rw-r--r-- | packages/order-utils/package.json | 2 | ||||
-rw-r--r-- | packages/order-utils/src/types.ts | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/packages/order-utils/README.md b/packages/order-utils/README.md index 4a8287098..e2fe7aee8 100644 --- a/packages/order-utils/README.md +++ b/packages/order-utils/README.md @@ -14,7 +14,7 @@ If your project is in [TypeScript](https://www.typescriptlang.org/), add the fol ```json "compilerOptions": { - "typeRoots": ["node_modules/@0x/typescript-typings/types", "node_modules/@types"], + "typeRoots": ["node_modules/@dexon-foundation/typescript-typings/types", "node_modules/@types"], } ``` diff --git a/packages/order-utils/package.json b/packages/order-utils/package.json index e2d0bcc98..047ca14df 100644 --- a/packages/order-utils/package.json +++ b/packages/order-utils/package.json @@ -60,7 +60,7 @@ "@0x/contract-artifacts": "^1.3.0", "@0x/json-schemas": "^3.0.2", "@0x/types": "^2.0.2", - "@0x/typescript-typings": "^4.0.0", + "@dexon-foundation/typescript-typings": "^4.0.0", "@0x/utils": "^4.0.3", "@0x/web3-wrapper": "^4.0.2", "@types/node": "*", diff --git a/packages/order-utils/src/types.ts b/packages/order-utils/src/types.ts index 55ec553db..26add2cdb 100644 --- a/packages/order-utils/src/types.ts +++ b/packages/order-utils/src/types.ts @@ -2,7 +2,7 @@ import { BigNumber } from '@0x/utils'; export enum OrderError { InvalidSignature = 'INVALID_SIGNATURE', - InvalidMetamaskSigner = "MetaMask provider must be wrapped in a MetamaskSubprovider (from the '@0x/subproviders' package) in order to work with this method.", + InvalidMetamaskSigner = "MetaMask provider must be wrapped in a MetamaskSubprovider (from the '@dexon-foundation/subproviders' package) in order to work with this method.", } export enum TradeSide { |