Learn R Programming

Rbitcoin (version 0.9.2)

blockchain.api.process: Process blockchain.info API

Description

Query and process results from blockchain.info.

Usage

blockchain.api.process(..., method, verbose = getOption("Rbitcoin.verbose", 0))

Arguments

...
params passed to blockchain.info API, specific for particular method, example 'bitcoin_address' or 'tx_index', for more read blockchain.api.query.
method
character. For details see blockchain.api.query, currently supported 'Single Address' and 'Single Transaction'. If method missing the function will try to guess it based on first param in ....
verbose
integer. Rbitcoin processing messages, print to console if verbose > 0, each subfunction reduce verbose by 1. If missing then getOption("Rbitcoin.verbose",0) is used, by default 0.

Value

data.table object, blockchain api data transformed to table.

See Also

blockchain.api.query

Examples

Run this code
## Not run: 
# # Rbitcoin donation address wallet
# Rbitcoin_donation_wallet <- blockchain.api.process('15Mb2QcgF3XDMeVn6M7oCG6CQLw4mkedDi')
# # some transaction
# tx <- blockchain.api.process('e5c4de1c70cb6d60db53410e871e9cab6a0ba75404360bf4cda1b993e58d45f8')
# ## End(Not run)

Run the code above in your browser using DataLab