ERC20MultiSendCommand constructor

ERC20MultiSendCommand()

Implementation

ERC20MultiSendCommand() {
  argParser.addOption(
    'contract-address',
    abbr: 'a',
    help: 'ERC20 contract address',
    valueHelp: '0x...',
    defaultsTo: feeContractAddress,
  );
  argParser.addOption(
    'file',
    help: 'Path to the CSV file (should contain 2 columns: address, amount))',
    valueHelp: 'path/to/file.csv',
    mandatory: true,
  );
}