|
|
|
@ -23,6 +23,11 @@ def get_address(account_index):
|
|
|
|
|
address = wownero.Wallet().addresses(account=int(account_index))[0]
|
|
|
|
|
click.echo(address)
|
|
|
|
|
|
|
|
|
|
@click.command()
|
|
|
|
|
def get_wallet_accounts():
|
|
|
|
|
accounts = wownero.Wallet().accounts()
|
|
|
|
|
click.echo(accounts)
|
|
|
|
|
|
|
|
|
|
@click.command()
|
|
|
|
|
@click.argument('dest_address')
|
|
|
|
|
@click.argument('amount')
|
|
|
|
@ -40,6 +45,7 @@ cli.add_command(get_users)
|
|
|
|
|
cli.add_command(get_address)
|
|
|
|
|
cli.add_command(transfer)
|
|
|
|
|
cli.add_command(generate_bot_help)
|
|
|
|
|
cli.add_command(get_wallet_accounts)
|
|
|
|
|
|
|
|
|
|
if __name__ == '__main__':
|
|
|
|
|
cli()
|
|
|
|
|