diff options
Diffstat (limited to 'packages/migrations/src/migrate.ts')
-rw-r--r-- | packages/migrations/src/migrate.ts | 30 |
1 files changed, 0 insertions, 30 deletions
diff --git a/packages/migrations/src/migrate.ts b/packages/migrations/src/migrate.ts index e3651f2dc..338832feb 100644 --- a/packages/migrations/src/migrate.ts +++ b/packages/migrations/src/migrate.ts @@ -1,22 +1,15 @@ #!/usr/bin/env node import { devConstants, web3Factory } from '@0xproject/dev-utils'; import { logUtils } from '@0xproject/utils'; -import { Web3Wrapper } from '@0xproject/web3-wrapper'; import { Provider } from 'ethereum-types'; import * as yargs from 'yargs'; import { runV1MigrationsAsync } from './1.0.0/migration'; -import { runV2TestnetMigrationsAsync } from './2.0.0-beta-testnet/migration'; -import { runV2MainnetMigrationsAsync } from './2.0.0-mainnet/migration'; import { runV2MigrationsAsync } from './2.0.0/migration'; -import { providerFactory } from './utils/provider_factory'; - enum ContractVersions { V1 = '1.0.0', V2 = '2.0.0', - V2Testnet = '2.0.0-beta-testnet', - V2Mainnet = '2.0.0-mainnet', } const args = yargs.argv; @@ -26,8 +19,6 @@ const args = yargs.argv; let providerConfigs; let provider: Provider; let txDefaults; - let web3Wrapper: Web3Wrapper; - let accounts: string[]; switch (contractsVersion) { case ContractVersions.V1: providerConfigs = { shouldUseInProcessGanache: false }; @@ -45,27 +36,6 @@ const args = yargs.argv; }; await runV2MigrationsAsync(provider, artifactsDir, txDefaults); break; - case ContractVersions.V2Testnet: - provider = await providerFactory.getKovanLedgerProviderAsync(); - web3Wrapper = new Web3Wrapper(provider); - accounts = await web3Wrapper.getAvailableAddressesAsync(); - txDefaults = { - from: accounts[0], - gas: devConstants.GAS_LIMIT, - }; - await runV2TestnetMigrationsAsync(provider, artifactsDir, txDefaults); - break; - case ContractVersions.V2Mainnet: - provider = await providerFactory.getMainnetLedgerProviderAsync(); - web3Wrapper = new Web3Wrapper(provider); - accounts = await web3Wrapper.getAvailableAddressesAsync(); - txDefaults = { - from: accounts[2], - gas: devConstants.GAS_LIMIT, - gasPrice: 6000000000, - }; - await runV2MainnetMigrationsAsync(provider, artifactsDir, txDefaults); - break; default: throw new Error(`Unsupported contract version: ${contractsVersion}`); } |