Wallet

account_create

Creates a new account, insert next deterministic key in wallet raiblocks.rpc.RPCClient.account_create(wallet, work=True)

account_list

Lists all the accounts inside wallet raiblocks.rpc.RPCClient.account_list(wallet)

account_move

Moves accounts from source to wallet raiblocks.rpc.RPCClient.account_move(source, wallet, accounts)

account_remove

Remove account from wallet raiblocks.rpc.RPCClient.account_remove(wallet, account)

account_representative_set

Sets the representative for account in wallet raiblocks.rpc.RPCClient.account_representative_set(wallet, account, representative, work=None)

accounts_create

Creates new accounts, insert next deterministic keys in wallet up to count raiblocks.rpc.RPCClient.accounts_create(wallet, count, work=True)

password_change

Changes the password for wallet to password raiblocks.rpc.RPCClient.password_change(wallet, password)

password_enter

Enters the password in to wallet raiblocks.rpc.RPCClient.password_enter(wallet, password)

password_valid

Checks whether the password entered for wallet is valid raiblocks.rpc.RPCClient.password_valid(wallet)

payment_begin

Begin a new payment session. Searches wallet for an account that’s marked as available and has a 0 balance. If one is found, the account number is returned and is marked as unavailable. If no account is found, a new account is created, placed in the wallet, and returned. raiblocks.rpc.RPCClient.payment_begin(wallet)

payment_end

End a payment session. Marks the account as available for use in a payment session. raiblocks.rpc.RPCClient.payment_end(account, wallet)

payment_init

Marks all accounts in wallet as available for being used as a payment session. raiblocks.rpc.RPCClient.payment_init(wallet)

receive

Receive pending block for account in wallet raiblocks.rpc.RPCClient.receive(wallet, account, block, work=None)

search_pending

Tells the node to look for pending blocks for any account in wallet raiblocks.rpc.RPCClient.search_pending(wallet)

send

Send amount from source in wallet to destination raiblocks.rpc.RPCClient.send(wallet, source, destination, amount, work=None)

wallet_add

Add an adhoc private key key to wallet raiblocks.rpc.RPCClient.wallet_add(wallet, key, work=True)

wallet_balance_total

Returns the sum of all accounts balances in wallet raiblocks.rpc.RPCClient.wallet_balance_total(wallet)

wallet_balances

Returns how many rai is owned and how many have not yet been received by all accounts in wallet raiblocks.rpc.RPCClient.wallet_balances(wallet)

wallet_change_seed

Changes seed for wallet to seed raiblocks.rpc.RPCClient.wallet_change_seed(wallet, seed)

wallet_contains

Check whether wallet contains account raiblocks.rpc.RPCClient.wallet_contains(wallet, account)

wallet_create

Creates a new random wallet id raiblocks.rpc.RPCClient.wallet_create()

wallet_destroy

Destroys wallet and all contained accounts raiblocks.rpc.RPCClient.wallet_destroy(wallet)

wallet_export

Return a json representation of wallet raiblocks.rpc.RPCClient.wallet_export(wallet)

wallet_frontiers

Returns a list of pairs of account and block hash representing the head block starting for accounts from wallet raiblocks.rpc.RPCClient.wallet_frontiers(wallet)

wallet_key_valid

Returns if a wallet key is valid raiblocks.rpc.RPCClient.wallet_key_valid(wallet)

wallet_lock

Locks a wallet raiblocks.rpc.RPCClient.wallet_lock(wallet)

wallet_locked

Checks whether wallet is locked raiblocks.rpc.RPCClient.wallet_locked(wallet)

wallet_pending

Returns a list of block hashes which have not yet been received by accounts in this wallet raiblocks.rpc.RPCClient.wallet_pending(wallet, count=None, threshold=None, source=False)

wallet_representative

Returns the default representative for wallet raiblocks.rpc.RPCClient.wallet_representative(wallet)

wallet_representative_set

Sets the default representative for wallet raiblocks.rpc.RPCClient.wallet_representative_set(wallet, representative)

wallet_republish

Rebroadcast blocks for accounts from wallet starting at frontier down to count to the network raiblocks.rpc.RPCClient.wallet_republish(wallet, count)

wallet_unlock

Unlocks wallet using password raiblocks.rpc.RPCClient.wallet_unlock(wallet, password)