get_addresses | R Documentation |
#' Get all addresses statistics during the period
get_addresses(
asset = "BTC",
since = NULL,
until = NULL,
frequency = "24h",
api_key = Sys.getenv("GN_API_KEY"),
as_date = TRUE
)
get_withdrawing_addresses(
asset = "BTC",
since = NULL,
until = NULL,
frequency = "24h",
api_key = Sys.getenv("GN_API_KEY"),
as_date = TRUE
)
get_new_addresses(
asset = "BTC",
since = NULL,
until = NULL,
frequency = "24h",
api_key = Sys.getenv("GN_API_KEY"),
as_date = TRUE
)
get_depositing_addresses(
asset = "BTC",
since = NULL,
until = NULL,
frequency = "24h",
api_key = Sys.getenv("GN_API_KEY"),
as_date = TRUE
)
get_receiving_addresses(
asset = "BTC",
since = NULL,
until = NULL,
frequency = "24h",
api_key = Sys.getenv("GN_API_KEY"),
as_date = TRUE
)
get_sending_addresses(
asset = "BTC",
since = NULL,
until = NULL,
frequency = "24h",
api_key = Sys.getenv("GN_API_KEY"),
as_date = TRUE
)
get_total_addresses(
asset = "BTC",
since = NULL,
until = NULL,
frequency = "24h",
api_key = Sys.getenv("GN_API_KEY"),
as_date = TRUE
)
get_active_addresses(
asset = "BTC",
since = NULL,
until = NULL,
frequency = "24h",
api_key = Sys.getenv("GN_API_KEY"),
as_date = TRUE
)
asset |
Asset to examine (see glassnode api docs for a list) |
since |
The start date |
until |
The end date |
frequency |
The frequency to examine: 1h,24h,10m,1w,1month |
api_key |
The api key. It looks in the env variable GN_API_KEY if not set |
as_date |
A logical to return a Date not a POSIXct object for daily or lower frequency |
return a tibble with the date and the addresses
## Not run:
x <- get_addresses()
## End(Not run)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.