aboutsummaryrefslogtreecommitdiffstats
path: root/packages/migrations/src/cli.ts
blob: 4e8ce982fa727434e25baef6a20cb065ba7814a7 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
#!/usr/bin/env node
import { RPCSubprovider, Web3ProviderEngine } from '@0x/subproviders';
import { logUtils } from '@0x/utils';
import * as yargs from 'yargs';

import { runMigrationsAsync } from './migration';

const args = yargs
    .option('rpc-url', {
        describe: 'Endpoint where backing Ethereum JSON RPC interface is available',
        type: 'string',
        demandOption: false,
        default: 'http://localhost:8545',
    })
    .option('from', {
        describe: 'Ethereum address from which to deploy the contracts',
        type: 'string',
        demandOption: true,
    })
    .example(
        '$0 --rpc-url http://localhost:8545 --from 0x5409ed021d9299bf6814279a6a1411a7e866a631',
        'Full usage example',
    ).argv;

(async () => {
    const rpcSubprovider = new RPCSubprovider(args['rpc-url']);
    const provider = new Web3ProviderEngine();
    provider.addProvider(rpcSubprovider);
    provider.start();
    const normalizedFromAddress = (args.from as string).toLowerCase();
    const txDefaults = {
        from: normalizedFromAddress,
    };
    await runMigrationsAsync(provider, txDefaults);
    process.exit(0);
})().catch(err => {
    logUtils.log(err);
    process.exit(1);
});