================== Protocol Methods ================== blockchain.address.get_balance ============================== Return the confirmed and unconfirmed balances of a Bitcoin Cash address. **Signature** .. function:: blockchain.address.get_balance(address) .. versionadded:: 1.4.3 * *address* The address as a Cash Address string (with or without prefix). Some server implementations may also support Legacy (base58) addresses but are not required to do so by this specification. **Result** See :func:`blockchain.scripthash.get_balance`. blockchain.address.get_history ============================== Return the confirmed and unconfirmed history of a Bitcoin Cash address. **Signature** .. function:: blockchain.address.get_history(address) .. versionadded:: 1.4.3 * *address* The address as a Cash Address string (with or without prefix). Some server implementations may also support Legacy (base58) addresses but are not required to do so by this specification. **Result** As for :func:`blockchain.scripthash.get_history`. blockchain.address.get_mempool ============================== Return the unconfirmed transactions of a Bitcoin Cash address. **Signature** .. function:: blockchain.address.get_mempool(address) .. versionadded:: 1.4.3 * *address* The address as a Cash Address string (with or without prefix). Some server implementations may also support Legacy (base58) addresses but are not required to do so by this specification. **Result** As for :func:`blockchain.scripthash.get_mempool`. blockchain.address.get_scripthash ================================= Translate a Bitcoin Cash address to a :ref:`script hash