/**
     * {@inheritdoc}
     */
    protected function configure()
    {
        parent::configure();
        $this->addOption('maximum-blocks', 'm', InputOption::VALUE_OPTIONAL, 'Maximum blocks to backfill', 10)->setHelp(<<<EOF
Backfills any missing blocks
EOF
);
    }
    /**
     * {@inheritdoc}
     */
    protected function configure()
    {
        parent::configure();
        $this->addArgument('email', InputArgument::REQUIRED, 'Email Address')->addOption('password', 'p', InputOption::VALUE_OPTIONAL, 'Password', null)->setHelp(<<<EOF
Create a new user with API Credentials
EOF
);
    }
    /**
     * {@inheritdoc}
     */
    protected function configure()
    {
        parent::configure();
        $this->addArgument('transaction-id', InputArgument::REQUIRED, 'Transaction ID')->setHelp(<<<EOF
Re-sends old transaction notifications
EOF
);
    }
    /**
     * {@inheritdoc}
     */
    protected function configure()
    {
        parent::configure();
        $this->addOption('endpoint', 'e', InputOption::VALUE_OPTIONAL, 'Webhook endpoint')->addArgument('scenario', InputArgument::OPTIONAL, 'Scenario number to load', 1)->setHelp(<<<EOF
Runs a scenario to load a notification into the notification queue
EOF
);
    }
Example #5
0
    /**
     * {@inheritdoc}
     */
    protected function configure()
    {
        parent::configure();
        $this->addArgument('address-uuid', InputArgument::REQUIRED, 'Address UUID')->setHelp(<<<EOF
Export WIF key
EOF
);
    }
    /**
     * {@inheritdoc}
     */
    protected function configure()
    {
        parent::configure();
        $this->addOption('block', 'b', InputOption::VALUE_OPTIONAL, 'Block JSON file or height')->addOption('transaction', 't', InputOption::VALUE_NONE, 'Process transaction')->addOption('source', 's', InputOption::VALUE_OPTIONAL, 'Source Address')->addOption('destination', 'd', InputOption::VALUE_OPTIONAL, 'Destination Address')->addOption('asset', 'a', InputOption::VALUE_OPTIONAL, 'Asset (LTBCOIN, BTC)', 'BTC')->addOption('quantity', 'u', InputOption::VALUE_OPTIONAL, 'Quantity (float)', 1.0)->addOption('confirmations', 'c', InputOption::VALUE_OPTIONAL, 'Confirmations', 1)->addOption('confirmed-block-height', 'i', InputOption::VALUE_OPTIONAL, 'Confirmed Block Height')->addOption('txid', 'x', InputOption::VALUE_OPTIONAL, 'Transaction ID', '1001')->setHelp(<<<EOF
Manually send a notification
EOF
);
    }
    /**
     * {@inheritdoc}
     */
    protected function configure()
    {
        parent::configure();
        $this->setHelp(<<<EOF
Show User API Credentials
EOF
);
    }