================== 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, case insensitive). Some server implementations do not support Legacy (base58) addresses and are not required to do so by this specification. However, Fulcrum does support both Legacy and Cash Address encodings. **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, case insensitive). Some server implementations do not support Legacy (base58) addresses and are not required to do so by this specification. However, Fulcrum does support both Legacy and Cash Address encodings. **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, case insensitive). Some server implementations do not support Legacy (base58) addresses and are not required to do so by this specification. However, Fulcrum does support both Legacy and Cash Address encodings. **Result** As for :func:`blockchain.scripthash.get_mempool`. blockchain.address.get_scripthash ================================= Translate a Bitcoin Cash address to a :ref:`script hash