AMD leads the way, as it has in the past, though the differences between this generation and last are very small.、
Listing my bitcoin addresses
Listing the bitcoin addresses in your wallet is easily done via listreceivedbyaddress. It normally lists only addresses which already have received transactions, however you can list all the addresses by setting the first argument to 0, and the second one to true.
Accounts are used to organize addresses.
Required arguments are denoted inside < and > Optional arguments are inside [ and ].
Command | Parameters | Description | Requires unlocked wallet? (v0.4.0+) |
---|---|---|---|
addmultisigaddress | Add a nrequired-to-sign multisignature address to the wallet. Each key is a bitcoin address or hex-encoded public key. If [account] is specified, assign address to [account]. | N | |
addnode | version 0.8 Attempts add or remove |
N | |
backupwallet | Safely copies wallet.dat to destination, which can be a directory or a path with filename. | N | |
createmultisig | Creates a multi-signature address and returns a json object | ||
createrawtransaction | [{"txid":txid,"vout":n},...] {address:amount,...} | version 0.7 Creates a raw transaction spending given inputs. | N |
decoderawtransaction | version 0.7 Produces a human-readable JSON object for a raw transaction. | N | |
dumpprivkey | Reveals the private key corresponding to |
Y | |
encryptwallet |
|
Encrypts the wallet with
|
N |
getaccount | Returns the account associated with the given address. | N | |
getaccountaddress | Returns the current bitcoin address for receiving payments to this account. | N | |
getaddednodeinfo | version 0.8 Returns information about the given added node, or all added nodes
(note that onetry addnodes are not listed here) If dns is false, only a list of added nodes will be provided, otherwise connected information will also be available. |
||
getaddressesbyaccount | Returns the list of addresses for the given account. | N | |
getbalance | [account] [minconf=1] | If [account] is not specified, returns the server's total available balance. If [account] is specified, returns the balance in the account. |
N |
getbestblockhash | recent git checkouts only Returns the hash of the best (tip) block in the longest block chain. | N | |
getblock | Returns information about the block with the given hash. | N | |
getblockcount | Returns the number of blocks in the longest block chain. | N | |
getblockhash | Returns hash of block in best-block-chain at |
N | |
getblocknumber | Deprecated. Removed in version 0.7. Use getblockcount. | N | |
getblocktemplate | [params] | Returns data needed to construct a block to work on. See BIP_0022 for more info on params. | N |
getconnectioncount | Returns the number of connections to other nodes. | N | |
getdifficulty | Returns the proof-of-work difficulty as a multiple of the minimum difficulty. | N | |
getgenerate | Returns true or false whether bitcoind is currently generating hashes | N | |
gethashespersec | Returns a recent hashes per second performance measurement while generating. | N | |
getinfo | Returns an object containing various state info. | N | |
getmemorypool | [data] | Replaced in v0.7.0 with getblocktemplate, submitblock, getrawmempool``` | N |
getmininginfo | Returns an object containing mining-related information:
|
N | |
getnewaddress | [account] | Returns a new bitcoin address for receiving payments. If [account] is specified (recommended), it is added to the address book so payments received with the address will be credited to [account]. | N |
getpeerinfo | version 0.7 Returns data about each connected node. | N | |
getrawchangeaddress | [account] | recent git checkouts only Returns a new Bitcoin address, for receiving change. This is for use with raw transactions, NOT normal use. | Y |
getrawmempool | version 0.7 Returns all transaction ids in memory pool | N | |
getrawtransaction | version 0.7 Returns raw transaction representation for given transaction id. | N | |
getreceivedbyaccount | [account] [minconf=1] | Returns the total amount received by addresses with [account] in transactions with at least [minconf] confirmations. If [account] not provided return will include all transactions to all accounts. (version 0.3.24) | N |
getreceivedbyaddress | Returns the amount received by |
N | |
gettransaction | Returns an object about the given transaction containing:
|
N | |
gettxout | Returns details about an unspent transaction output (UTXO) | N | |
gettxoutsetinfo | Returns statistics about the unspent transaction output (UTXO) set | N | |
getwork | [data] | If [data] is not specified, returns formatted hash data to work on:
If [data] is specified, tries to solve the block and returns true if it was successful. |
N |
help | [command] | List commands, or get help for a command. | N |
importprivkey | Adds a private key (as returned by dumpprivkey) to your wallet. This may take a while, as a rescan is done, looking for existing transactions. Optional [rescan] parameter added in 0.8.0. | Y | |
keypoolrefill | Fills the keypool, requires wallet passphrase to be set. | Y | |
listaccounts | [minconf=1] | Returns Object that has account names as keys, account balances as values. | N |
listaddressgroupings | version 0.7 Returns all addresses in the wallet and info used for coincontrol. | N | |
listreceivedbyaccount | [minconf=1] [includeempty=false] | Returns an array of objects containing:
|
N |
listreceivedbyaddress | [minconf=1] [includeempty=false] | Returns an array of objects containing:
To get a list of accounts on the system, execute bitcoind listreceivedbyaddress 0 true |
N |
listsinceblock | [blockhash] [target-confirmations] | Get all transactions in blocks since block [blockhash], or all transactions if omitted. | N |
listtransactions | [account] [count=10] [from=0] | Returns up to [count] most recent transactions skipping the first [from] transactions for account [account]. If [account] not provided will return recent transaction from all accounts. | N |
listunspent | [minconf=1] [maxconf=999999] | version 0.7 Returns array of unspent transaction inputs in the wallet. | N |
listlockunspent | version 0.8 Returns list of temporarily unspendable outputs | ||
lockunspent | version 0.8 Updates list of temporarily unspendable outputs | ||
move | Move from one account in your wallet to another | N | |
sendfrom | Y | ||
sendmany | amounts are double-precision floating point numbers | Y | |
sendrawtransaction | version 0.7 Submits raw transaction (serialized, hex-encoded) to local node and network. | N | |
sendtoaddress | Y | ||
setaccount | Sets the account associated with the given address. Assigning address that is already assigned to the same account will create a new address associated with that account. | N | |
setgenerate | Generation is limited to [genproclimit] processors, -1 is unlimited. |
N | |
settxfee | N | ||
signmessage | Sign a message with the private key of an address. | Y | |
signrawtransaction | version 0.7 Adds signatures to a raw transaction and returns the resulting raw transaction. | Y/N | |
stop | Stop bitcoin server. | N | |
submitblock | Attempts to submit new block to network. | N | |
validateaddress | Return information about |
N | |
verifymessage | Verify a signed message. | N | |
walletlock | Removes the wallet encryption key from memory, locking the wallet. After calling this method, you will need to call walletpassphrase again before being able to call any methods which require the wallet to be unlocked. | N | |
walletpassphrase |
|
Stores the wallet decryption key in memory for |
N |
walletpassphrasechange |
|
Changes the wallet passphrase from
|
N |