diff options
author | Kadinsky <kandinsky454@protonmail.ch> | 2018-10-16 21:21:46 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-10-16 21:21:46 +0800 |
commit | e62458705039f6a187ff23e4e4ee1737476eb431 (patch) | |
tree | 27497ebaf0e7da27561620b28b28cc30833261fc /packages/migrations/src/migrate.ts | |
parent | 05bf7a8280bcb46144dfef9b30bb7c0e2e4a15aa (diff) | |
parent | 5938e8a52daa913668593977e44ca25e38a29e41 (diff) | |
download | dexon-sol-tools-e62458705039f6a187ff23e4e4ee1737476eb431.tar dexon-sol-tools-e62458705039f6a187ff23e4e4ee1737476eb431.tar.gz dexon-sol-tools-e62458705039f6a187ff23e4e4ee1737476eb431.tar.bz2 dexon-sol-tools-e62458705039f6a187ff23e4e4ee1737476eb431.tar.lz dexon-sol-tools-e62458705039f6a187ff23e4e4ee1737476eb431.tar.xz dexon-sol-tools-e62458705039f6a187ff23e4e4ee1737476eb431.tar.zst dexon-sol-tools-e62458705039f6a187ff23e4e4ee1737476eb431.zip |
Merge pull request #1105 from 0xProject/feature/contracts-artifacts-re-org
Reorganize and modularize generated contract wrappers and artifacts
Diffstat (limited to 'packages/migrations/src/migrate.ts')
-rw-r--r-- | packages/migrations/src/migrate.ts | 39 |
1 files changed, 8 insertions, 31 deletions
diff --git a/packages/migrations/src/migrate.ts b/packages/migrations/src/migrate.ts index 338832feb..27f36ba34 100644 --- a/packages/migrations/src/migrate.ts +++ b/packages/migrations/src/migrate.ts @@ -2,43 +2,20 @@ import { devConstants, web3Factory } from '@0xproject/dev-utils'; import { logUtils } from '@0xproject/utils'; import { Provider } from 'ethereum-types'; -import * as yargs from 'yargs'; -import { runV1MigrationsAsync } from './1.0.0/migration'; -import { runV2MigrationsAsync } from './2.0.0/migration'; - -enum ContractVersions { - V1 = '1.0.0', - V2 = '2.0.0', -} -const args = yargs.argv; +import { runMigrationsAsync } from './migration'; (async () => { - const contractsVersion = args.contractsVersion; - const artifactsDir = `artifacts/${contractsVersion}`; let providerConfigs; let provider: Provider; let txDefaults; - switch (contractsVersion) { - case ContractVersions.V1: - providerConfigs = { shouldUseInProcessGanache: false }; - provider = web3Factory.getRpcProvider(providerConfigs); - txDefaults = { - from: devConstants.TESTRPC_FIRST_ADDRESS, - }; - await runV1MigrationsAsync(provider, artifactsDir, txDefaults); - break; - case ContractVersions.V2: - providerConfigs = { shouldUseInProcessGanache: false }; - provider = web3Factory.getRpcProvider(providerConfigs); - txDefaults = { - from: devConstants.TESTRPC_FIRST_ADDRESS, - }; - await runV2MigrationsAsync(provider, artifactsDir, txDefaults); - break; - default: - throw new Error(`Unsupported contract version: ${contractsVersion}`); - } + + providerConfigs = { shouldUseInProcessGanache: false }; + provider = web3Factory.getRpcProvider(providerConfigs); + txDefaults = { + from: devConstants.TESTRPC_FIRST_ADDRESS, + }; + await runMigrationsAsync(provider, txDefaults); process.exit(0); })().catch(err => { logUtils.log(err); |