shroomDK

ShroomDK is an R package for simplifying access to the Flipside Crypto ShroomDK REST API. More details available at sdk.flipsidecrypto.xyz/shroomdk

How to get your own ShroomDK API Key

ShroomDK API Keys are NFTs on the Ethereum blockchain. They are free to mint (not counting Ethereum gas) and new mints are available each day. Alternatively you can buy the NFT on any NFT Marketplace where listed (e.g., OpenSea).

How to Install

library(devtools) # install if you haven't already
devtools::install_github(repo = 'FlipsideCrypto/sdk', subdir = 'r/shroomDK')
library(shroomDK)

3 Main Functions

create_query_token()

Documentation can be viewed within RStudio with ?create_query_token for new packages you may need to restart R to get to the documentation. It is summarized here:

Item Definition
Description Uses Flipside ShroomDK to create a Query Token to access Flipside Crypto data. The query token is cached up to ttl minutes allowing for pagination and multiple requests before expending more daily request uses.
Usage create_query_token(query, api_key, ttl = 10, cache = TRUE)
query Flipside Crypto Snowflake SQL compatible query as a string.
api_key Flipside Crypto ShroomDK API Key
ttl time (in minutes) to keep query in cache.
cache Use cached results; set as FALSE to re-execute.
Value list of token and cached use token in get_query_from_token()
# example
create_query_token(
query = "SELECT * FROM ethereum.core.fact_transactions LIMIT 1",
api_key = readLines("api_key.txt"), # gitignore your api_key! don't share!
ttl = 15,
cache = TRUE)

get_query_from_token()

Documentation can be viewed within RStudio with ?get_query_from_token for new packages you may need to restart R to get to the documentation. It is summarized here:

Item Definition
Description Uses Flipside ShroomDK to access a Query Token. Query tokens are cached up to ‘ttl’ minutes for each ‘query’. This function is for pagination and multiple requests while reducing your use of your daily rate limit. Note: To reduce payload it returns a list of outputs (separating column names from rows).
Usage get_query_from_token(query_token, api_key, page_number = 1, page_size = 1e+05)
query_token token from create_query_token()
api_key Flipside Crypto ShroomDK API Key
page_number Query tokens are cached and 100k rows max. Get up to 1M rows by going through pages.
page_size Default 100,000. Paginate via page_number.
Value returns a request of length 8: results, columnLabels, columnTypes, startedAt, endedAt, pageNumber, pageSize, status
# example
query = create_query_token("SELECT * FROM ETHEREUM.CORE.FACT_TRANSACTIONS LIMIT 10000", api_key) #gitignore your API key!
get_query_from_token(query$token, api_key, 1, 10000)

clean_query()

Documentation can be viewed within RStudio with ?clean_query for new packages you may need to restart R to get to the documentation. It is summarized here:

Item Definition
Description Cleans Query to be in Data Frame format
Usage clean_query(request, try_simplify = TRUE)
request The request output from get_query_from_token()
try_simplify because requests can return JSON and/or may not have the same length across values, they may not be data frame compliant (all columns having the same number of rows). A key example would be TX_JSON in EVM FACT_TRANSACTION tables which include 50+ extra details from transaction logs. But other examples like NULL values in TO_ADDRESS can have similar issues. Default TRUE.
Value Always returns a data frame. If ‘try_simplify’ is FALSE OR if try_simplify = TRUE fails (columns having different number of rows) then the data frame is comprised of lists, where each column must be coerced to a desired class (e.g., with as.numeric()) to ensure each column has the same number of rows.

Note: The vast majority (95%+) of queries will return a simple data frame with the classes coerced intelligently (e.g., Block_Number being numeric). But check the warnings and check your column classes, if the class is a list then try_simplify failed (i.e., not all columns have the same number of rows when coerced).

#example
query = create_query_token("SELECT * FROM ETHEREUM.CORE.FACT_TRANSACTIONS LIMIT 10000", api_key)
request = get_query_from_token(query$token, api_key, 1, 10000)
clean_query(request, try_simplify = FALSE) # returns data frame of lists()

1 Support Function

auto_paginate_query()

Documentation can be viewed within RStudio with ?auto_paginate_query for new packages you may need to restart R to get to the documentation. It is summarized here:

Item Definition
Description Grabs up to maxrows in a query by going through each page 100k rows at a time.
Usage auto_paginate_query(query, api_key)
query Flipside Crypto Snowflake SQL compatible query as a string.
api_key Flipside Crypto ShroomDK API Key
maxrows Flipside Crypto ShroomDK maximum rows in query, default 1,000,000
value data frame of up to 1M rows, see ?clean_query for more details on column classes