├── .Rbuildignore ├── .gitignore ├── CONDUCT.md ├── DESCRIPTION ├── LICENSE ├── LICENSE.md ├── NAMESPACE ├── R ├── accounts.R ├── api.R ├── helper.R └── stats.R ├── README-example-1.png ├── README.Rmd ├── README.md ├── etherscanr.Rproj ├── man ├── etherscan_balance.Rd ├── etherscan_ethprice.Rd ├── etherscan_ethsupply.Rd ├── etherscan_get_api_key.Rd ├── etherscan_internal_transactions.Rd ├── etherscan_set_api_key.Rd ├── etherscan_transactions.Rd └── to_ether.Rd └── tests ├── testthat.R └── testthat ├── test-accounts.R └── test-stats.R /.Rbuildignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dirkschumacher/etherscanr/HEAD/.Rbuildignore -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dirkschumacher/etherscanr/HEAD/.gitignore -------------------------------------------------------------------------------- /CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dirkschumacher/etherscanr/HEAD/CONDUCT.md -------------------------------------------------------------------------------- /DESCRIPTION: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dirkschumacher/etherscanr/HEAD/DESCRIPTION -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | YEAR: 2017 2 | COPYRIGHT HOLDER: Dirk Schumacher 3 | -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dirkschumacher/etherscanr/HEAD/LICENSE.md -------------------------------------------------------------------------------- /NAMESPACE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dirkschumacher/etherscanr/HEAD/NAMESPACE -------------------------------------------------------------------------------- /R/accounts.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dirkschumacher/etherscanr/HEAD/R/accounts.R -------------------------------------------------------------------------------- /R/api.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dirkschumacher/etherscanr/HEAD/R/api.R -------------------------------------------------------------------------------- /R/helper.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dirkschumacher/etherscanr/HEAD/R/helper.R -------------------------------------------------------------------------------- /R/stats.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dirkschumacher/etherscanr/HEAD/R/stats.R -------------------------------------------------------------------------------- /README-example-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dirkschumacher/etherscanr/HEAD/README-example-1.png -------------------------------------------------------------------------------- /README.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dirkschumacher/etherscanr/HEAD/README.Rmd -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dirkschumacher/etherscanr/HEAD/README.md -------------------------------------------------------------------------------- /etherscanr.Rproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dirkschumacher/etherscanr/HEAD/etherscanr.Rproj -------------------------------------------------------------------------------- /man/etherscan_balance.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dirkschumacher/etherscanr/HEAD/man/etherscan_balance.Rd -------------------------------------------------------------------------------- /man/etherscan_ethprice.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dirkschumacher/etherscanr/HEAD/man/etherscan_ethprice.Rd -------------------------------------------------------------------------------- /man/etherscan_ethsupply.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dirkschumacher/etherscanr/HEAD/man/etherscan_ethsupply.Rd -------------------------------------------------------------------------------- /man/etherscan_get_api_key.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dirkschumacher/etherscanr/HEAD/man/etherscan_get_api_key.Rd -------------------------------------------------------------------------------- /man/etherscan_internal_transactions.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dirkschumacher/etherscanr/HEAD/man/etherscan_internal_transactions.Rd -------------------------------------------------------------------------------- /man/etherscan_set_api_key.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dirkschumacher/etherscanr/HEAD/man/etherscan_set_api_key.Rd -------------------------------------------------------------------------------- /man/etherscan_transactions.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dirkschumacher/etherscanr/HEAD/man/etherscan_transactions.Rd -------------------------------------------------------------------------------- /man/to_ether.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dirkschumacher/etherscanr/HEAD/man/to_ether.Rd -------------------------------------------------------------------------------- /tests/testthat.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dirkschumacher/etherscanr/HEAD/tests/testthat.R -------------------------------------------------------------------------------- /tests/testthat/test-accounts.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dirkschumacher/etherscanr/HEAD/tests/testthat/test-accounts.R -------------------------------------------------------------------------------- /tests/testthat/test-stats.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dirkschumacher/etherscanr/HEAD/tests/testthat/test-stats.R --------------------------------------------------------------------------------