diff options
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 { |