Example #1
0
    def getblockheader(self, block_hash, verbose=False):
        """Get block header <block_hash>
        verbose - If true a dict is returned with the values returned by
                  getblockheader that are not in the block header itself
                  (height, nextblockhash, etc.)
        Raises IndexError if block_hash is not valid.
        """
        try:
            block_hash = b2lx(block_hash)
        except TypeError:
            raise TypeError(
                '%s.getblockheader(): block_hash must be bytes; got %r instance'
                % (self.__class__.__name__, block_hash.__class__))
        try:
            r = self._call('getblockheader', block_hash, verbose)
        except InvalidAddressOrKeyError as ex:
            raise IndexError('%s.getblockheader(): %s (%d)' %
                             (self.__class__.__name__, ex.error['message'],
                              ex.error['code']))

        if verbose:
            nextblockhash = None
            if 'nextblockhash' in r:
                nextblockhash = lx(r['nextblockhash'])
            return {
                'confirmations': r['confirmations'],
                'height': r['height'],
                'mediantime': r['mediantime'],
                'nextblockhash': nextblockhash,
                'chainwork': x(r['chainwork'])
            }
        else:
            return CBlockHeader.deserialize(unhexlify(r))
Example #2
0
    def listunspent(self, minconf=0, maxconf=9999999, addrs=None):
        """Return unspent transaction outputs in wallet
        Outputs will have between minconf and maxconf (inclusive)
        confirmations, optionally filtered to only include txouts paid to
        addresses in addrs.
        """
        r = None
        if addrs is None:
            r = self._call('listunspent', minconf, maxconf)
        else:
            addrs = [str(addr) for addr in addrs]
            r = self._call('listunspent', minconf, maxconf, addrs)

        r2 = []
        for unspent in r:
            unspent['outpoint'] = COutPoint(lx(unspent['txid']),
                                            unspent['vout'])
            del unspent['txid']
            del unspent['vout']

            # address isn't always available as Bitcoin Core allows scripts w/o
            # an address type to be imported into the wallet, e.g. non-p2sh
            # segwit
            try:
                unspent['address'] = CBitcoinAddress(unspent['address'])
            except KeyError:
                pass
            unspent['scriptPubKey'] = CScript(
                unhexlify(unspent['scriptPubKey']))
            unspent['amount'] = int(unspent['amount'] * COIN)
            r2.append(unspent)
        return r2
Example #3
0
    def getrawtransaction(self, txid, verbose=False):
        """Return transaction with hash txid
        Raises IndexError if transaction not found.
        verbose - If true a dict is returned instead with additional
        information on the transaction.
        Note that if all txouts are spent and the transaction index is not
        enabled the transaction may not be available.
        """
        try:
            r = self._call('getrawtransaction', b2lx(txid),
                           1 if verbose else 0)
        except InvalidAddressOrKeyError as ex:
            raise IndexError('%s.getrawtransaction(): %s (%d)' %
                             (self.__class__.__name__, ex.error['message'],
                              ex.error['code']))
        if verbose:
            r['tx'] = CTransaction.deserialize(unhexlify(r['hex']))
            del r['hex']
            del r['txid']
            del r['version']
            del r['locktime']
            del r['vin']
            del r['vout']
            r['blockhash'] = lx(r['blockhash']) if 'blockhash' in r else None
        else:
            r = CTransaction.deserialize(unhexlify(r))

        return r
Example #4
0
    def getrawmempool(self, verbose=False):
        """Return the mempool"""
        if verbose:
            return self._call('getrawmempool', verbose)

        else:
            r = self._call('getrawmempool')
            r = [lx(txid) for txid in r]
            return r
Example #5
0
 def getblockhash(self, height):
     """Return hash of block in best-block-chain at height.
     Raises IndexError if height is not valid.
     """
     try:
         return lx(self._call('getblockhash', height))
     except InvalidParameterError as ex:
         raise IndexError('%s.getblockhash(): %s (%d)' %
                          (self.__class__.__name__, ex.error['message'],
                           ex.error['code']))
Example #6
0
 def generatetoaddress(self, numblocks, addr):
     """Mine blocks immediately (before the RPC call returns) and
     allocate block reward to passed address. Replaces deprecated 
     "generate(self,numblocks)" method.
     numblocks - How many blocks are generated immediately.
     addr     - Address to receive block reward (CBitcoinAddress instance)
     Returns iterable of block hashes generated.
     """
     r = self._call('generatetoaddress', numblocks, str(addr))
     return (lx(blk_hash) for blk_hash in r)
Example #7
0
 def generate(self, numblocks):
     """
     DEPRECATED (will be removed in bitcoin-core v0.19)
     
     Mine blocks immediately (before the RPC call returns)
     numblocks - How many blocks are generated immediately.
     Returns iterable of block hashes generated.
     """
     r = self._call('generate', numblocks)
     return (lx(blk_hash) for blk_hash in r)
Example #8
0
 def sendrawtransaction(self, tx, allowhighfees=False):
     """Submit transaction to local node and network.
     allowhighfees - Allow even if fees are unreasonably high.
     """
     hextx = hexlify(tx.serialize())
     r = None
     if allowhighfees:
         r = self._call('sendrawtransaction', hextx, True)
     else:
         r = self._call('sendrawtransaction', hextx)
     return lx(r)
Example #9
0
 def sendtoaddress(self,
                   addr,
                   amount,
                   comment='',
                   commentto='',
                   subtractfeefromamount=False):
     """Send amount to a given address"""
     addr = str(addr)
     amount = float(amount) / COIN
     r = self._call('sendtoaddress', addr, amount, comment, commentto,
                    subtractfeefromamount)
     return lx(r)
Example #10
0
 def sendmany(self,
              fromaccount,
              payments,
              minconf=1,
              comment='',
              subtractfeefromamount=[]):
     """Send amount to given addresses.
     payments - dict with {address: amount}
     """
     json_payments = {
         str(addr): float(amount) / COIN
         for addr, amount in payments.items()
     }
     r = self._call('sendmany', fromaccount, json_payments, minconf,
                    comment, subtractfeefromamount)
     return lx(r)
Example #11
0
    def gettxout(self, outpoint, includemempool=True):
        """Return details about an unspent transaction output.
        Raises IndexError if outpoint is not found or was spent.
        includemempool - Include mempool txouts
        """
        r = self._call('gettxout', b2lx(outpoint.hash), outpoint.n,
                       includemempool)

        if r is None:
            raise IndexError('%s.gettxout(): unspent txout %r not found' %
                             (self.__class__.__name__, outpoint))

        r['txout'] = CTxOut(int(r['value'] * COIN),
                            CScript(unhexlify(r['scriptPubKey']['hex'])))
        del r['value']
        del r['scriptPubKey']
        r['bestblock'] = lx(r['bestblock'])
        return r
Example #12
0
 def getbestblockhash(self):
     """Return hash of best (tip) block in longest block chain."""
     return lx(self._call('getbestblockhash'))