#' Check whether an address is a contract address
#'
#' Check whether an Ethereum address is a contract address or an external
#' address.
#'
#' @param address Character. A single ethereum address as a character string (40
#' hexadecimal characters prepended by '0x').
#' @param api_key An Etherscan API key (see Details).
#' @return Logical. `TRUE` if the address is a contract address.
#' @details `is_contract` uses the Etherscan API. Register for an API key
#' at the [Etherscan Developer APIs page](https://etherscan.io/apis).
#' @section Warning:
#' As per the Etherscan documentation, _the Etherscan Ethereum Developer APIs
#' are provided as a community service and without warranty, so please just use
#' what you need and no more. They support both GET/POST requests and a rate
#' limit of 5 requests/sec._
#' @keywords Ethereum, contract, blockchain, cryptocurrency, crypto, ETH
#' @importFrom jsonlite fromJSON
#' @export
is_contract <- function(address, api_key) {
address <- tolower(address)
if(missing(api_key)) api_key <- ''
j <- fromJSON(sprintf(
'https://api.etherscan.io/api?module=proxy&action=eth_getCode&address=%s&apikey=%s',
address, api_key))
if(!is.null(j$error)) stop('Invalid address.\n', j$error$message)
if(j$result == '0x') FALSE else TRUE
}
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.