Protocol Methods ================ blockchain.address.get_balance ------------------------------ Return the confirmed and unconfirmed balances of a bitcoin address. .. note:: This method is deprecated; support will be removed in a later protocol version. Use :func:`blockchain.scripthash.get_balance` instead. **Signature** .. function:: blockchain.address.get_balance(address) * *address* The address as a Base58 string. **Result** A dictionary with keys `confirmed` and `unconfirmed`. The value of each is the appropriate balance in coin units as a string. **Result Example**:: { "confirmed": "1.03873966", "unconfirmed": "0.236844" } blockchain.address.get_history ------------------------------ Return the confirmed and unconfirmed history of a bitcoin address. .. note:: This method is deprecated; support will be removed in a later protocol version. Use :func:`blockchain.scripthash.get_history` instead. **Signature** .. function:: blockchain.address.get_history(address) * *address* The address as a Base58 string. **Result** A list of confirmed transactions in blockchain order, with the output of :func:`blockchain.address.get_mempool` appended to the list. Each confirmed transaction is a dictionary with the following keys: * *height* The integer height of the block the transaction was confirmed in. * *tx_hash* The transaction hash in hexadecimal. See :func:`blockchain.address.get_mempool` for how mempool transactions are returned. **Result Examples** :: [ { "height": 200004, "tx_hash": "acc3758bd2a26f869fcc67d48ff30b96464d476bca82c1cd6656e7d506816412" }, { "height": 215008, "tx_hash": "f3e1bf48975b8d6060a9de8884296abb80be618dc00ae3cb2f6cee3085e09403" } ] :: [ { "fee": 20000, "height": 0, "tx_hash": "9fbed79a1e970343fcd39f4a2d830a6bde6de0754ed2da70f489d0303ed558ec" } ] blockchain.address.get_mempool ------------------------------ Return the unconfirmed transactions of a bitcoin address. .. note:: This method is deprecated; support will be removed in a later protocol version. Use :func:`blockchain.scripthash.get_mempool` instead. **Signature** .. function:: blockchain.address.get_mempool(address) * *address* The address as a Base58 string. **Result** A list of mempool transactions in arbitrary order. Each mempool transaction is a dictionary with the following keys: * *height* ``0`` if all inputs are confirmed, and ``-1`` otherwise. * *tx_hash* The transaction hash in hexadecimal. * *fee* The transaction fee in minimum coin units (satoshis). **Result Example** :: [ { "tx_hash": "45381031132c57b2ff1cbe8d8d3920cf9ed25efd9a0beb764bdb2f24c7d1c7e3", "height": 0, "fee": 24310 } ] blockchain.address.listunspent ------------------------------ Return an ordered list of UTXOs sent to a bitcoin address. .. note:: This method is deprecated; support will be removed in a later protocol version. Use :func:`blockchain.scripthash.get_mempool` instead. **Signature** .. function:: blockchain.address.listunspent(address) * *address* The address as a Base58 string. **Result** A list of unspent outputs in blockchain order. This function takes the mempool into account. Mempool transactions paying to the address are included at the end of the list in an undefined order. Any output that is spent in the mempool does not appear. Each output is a dictionary with the following keys: * *height* The integer height of the block the transaction was confirmed in. ``0`` if the transaction is in the mempool. * *tx_pos* The zero-based index of the output in the transaction's list of outputs. * *tx_hash* The output's transaction hash as a hexadecimal string. * *value* The output's value in minimum coin units (satoshis). **Result Example** :: [ { "tx_pos": 0, "value": 45318048, "tx_hash": "9f2c45a12db0144909b5db269415f7319179105982ac70ed80d76ea79d923ebf", "height": 437146 }, { "tx_pos": 0, "value": 919195, "tx_hash": "3d2290c93436a3e964cfc2f0950174d8847b1fbe3946432c4784e168da0f019f", "height": 441696 } ] blockchain.address.subscribe ---------------------------- Subscribe to a bitcoin address. .. note:: This method is deprecated; support will be removed in a later protocol version. Use :func:`blockchain.scripthash.subscribe` instead. **Signature** .. function:: blockchain.address.subscribe(address) *address* The address as a Base58 string. **Result** The :ref:`status ` of the address. **Notifications** As this is a subcription, the client will receive a notification when the :ref:`status ` of the address changes. Its signature is .. function:: blockchain.address.subscribe(address, status) mempool.get_fee_histogram ------------------------- Return a histogram of the fee rates paid by transactions in the memory pool, weighted by transaction size. **Signature** .. function:: mempool.get_fee_histogram() .. versionadded:: 1.2 **Result** The histogram is an array of [*fee*, *vsize*] pairs, where |vsize_n| is the cumulative virtual size of mempool transactions with a fee rate in the interval [|fee_n1|, |fee_n|], and |fee_n1| > |fee_n|. .. |vsize_n| replace:: vsize\ :sub:`n` .. |fee_n| replace:: fee\ :sub:`n` .. |fee_n1| replace:: fee\ :sub:`n-1` Fee intervals may have variable size. The choice of appropriate intervals is currently not part of the protocol. **Example Result** :: [[12, 128812], [4, 92524], [2, 6478638], [1, 22890421]] server.add_peer --------------- This call is intended for a new server to get itself into a server's peers list, and should not be used by wallet clients. **Signature** .. function:: server.add_peer(features) .. versionadded:: 1.1 * *features* The same information that a call to the sender's :func:`server.features` RPC call would return. **Result** A boolean indicating whether the request was tentatively accepted. The requesting server will appear in :func:`server.peers.subscribe` when further sanity checks complete successfully. server.banner ------------- Return a banner to be shown in the Electrum console. **Signature** .. function:: server.banner() **Result** A string. **Example Result** :: "Welcome to Electrum!" server.donation_address ----------------------- Return a server donation address. **Signature** .. function:: server.donation_address() **Result** A string. **Example Result** :: "1BWwXJH3q6PRsizBkSGm2Uw4Sz1urZ5sCj" server.features --------------- Return a list of features and services supported by the server. **Signature** .. function:: server.features() **Result** A dictionary of keys and values. Each key represents a feature or service of the server, and the value gives additional information. The following features MUST be reported by the server. Additional key-value pairs may be returned. * *hosts* A dictionary, keyed by host name, that this server can be reached at. Normally this will only have a single entry; other entries can be used in case there are other connection routes (e.g. Tor). The value for a host is itself a dictionary, with the following optional keys: * *ssl_port* An integer. Omit or set to :const:`null` if SSL connectivity is not provided. * *tcp_port* An integer. Omit or set to :const:`null` if TCP connectivity is not provided. A server should ignore information provided about any host other than the one it connected to. * *genesis_hash* The hash of the genesis block. This is used to detect if a peer is connected to one serving a different network. * *hash_function* The hash function the server uses for :ref:`script hashing