diff options
author | Fabio Berger <me@fabioberger.com> | 2018-10-18 21:08:26 +0800 |
---|---|---|
committer | Fabio Berger <me@fabioberger.com> | 2018-10-18 21:08:26 +0800 |
commit | 058c88735312bbf75070081a1743e73801211048 (patch) | |
tree | 68e5d3c8f1d6a8bf2e1df856aab7626bf1e64b46 | |
parent | 0affc7682fa1a7484bb77cc460e9b9d10553980f (diff) | |
download | dexon-sol-tools-058c88735312bbf75070081a1743e73801211048.tar dexon-sol-tools-058c88735312bbf75070081a1743e73801211048.tar.gz dexon-sol-tools-058c88735312bbf75070081a1743e73801211048.tar.bz2 dexon-sol-tools-058c88735312bbf75070081a1743e73801211048.tar.lz dexon-sol-tools-058c88735312bbf75070081a1743e73801211048.tar.xz dexon-sol-tools-058c88735312bbf75070081a1743e73801211048.tar.zst dexon-sol-tools-058c88735312bbf75070081a1743e73801211048.zip |
chore: missing converts
-rw-r--r-- | packages/contract_templates/contract.handlebars | 6 | ||||
-rw-r--r-- | packages/metacoin/tsconfig.json | 4 | ||||
-rw-r--r-- | typedoc-tsconfig.json | 2 |
3 files changed, 6 insertions, 6 deletions
diff --git a/packages/contract_templates/contract.handlebars b/packages/contract_templates/contract.handlebars index 41e5c8630..9c1952ed4 100644 --- a/packages/contract_templates/contract.handlebars +++ b/packages/contract_templates/contract.handlebars @@ -1,10 +1,10 @@ // tslint:disable:no-consecutive-blank-lines ordered-imports align trailing-comma whitespace class-name // tslint:disable:no-unused-variable // tslint:disable:no-unbound-method -import { BaseContract } from '@0xproject/base-contract'; +import { BaseContract } from '@0x/base-contract'; import { BlockParam, BlockParamLiteral, CallData, ContractAbi, ContractArtifact, DecodedLogArgs, MethodAbi, Provider, TxData, TxDataPayable } from 'ethereum-types'; -import { BigNumber, classUtils, logUtils } from '@0xproject/utils'; -import { Web3Wrapper } from '@0xproject/web3-wrapper'; +import { BigNumber, classUtils, logUtils } from '@0x/utils'; +import { Web3Wrapper } from '@0x/web3-wrapper'; import * as ethers from 'ethers'; import * as _ from 'lodash'; // tslint:enable:no-unused-variable diff --git a/packages/metacoin/tsconfig.json b/packages/metacoin/tsconfig.json index 3065396ff..163465cf5 100644 --- a/packages/metacoin/tsconfig.json +++ b/packages/metacoin/tsconfig.json @@ -5,10 +5,10 @@ "rootDir": ".", "typeRoots": [ "comment: for building within 0x-monorepo:", - "../../node_modules/@0xproject/typescript-typings/types", + "../../node_modules/@0x/typescript-typings/types", "../../node_modules/@types", "comment: for building in an isolated environment:", - "node_modules/@0xproject/typescript-typings/types", + "node_modules/@0x/typescript-typings/types", "node_modules/@types" ] }, diff --git a/typedoc-tsconfig.json b/typedoc-tsconfig.json index 32efdb4cf..1d3a15a33 100644 --- a/typedoc-tsconfig.json +++ b/typedoc-tsconfig.json @@ -11,7 +11,7 @@ "resolveJsonModule": true, "pretty": true, "skipLibCheck": true, - "typeRoots": ["node_modules/@0xproject/typescript-typings/types", "node_modules/@types"], + "typeRoots": ["node_modules/@0x/typescript-typings/types", "node_modules/@types"], "strict": true } } |