Ackee-Blockchain /
python-testing-frameworks-benchmark
This repository contains code and measured data for evaluation of testing frameworks for Ethereum Blockchain Applications
33/100 healthLoading repository data…
smartbugs / repository
This repository contains 47,398 smart contracts extracted from the Ethereum network.
A transparent discovery signal based on current public GitHub metadata.
This score does not audit code, security, maintainers, documentation quality, or suitability. Verify the repository and its current documentation before adoption.
This repository contains 47,398 smart contracts extracted from the Ethereum network.
SmartBugs was used to analyze this dataset. The results are available at: https://github.com/smartbugs/smartbugs-results For more details on the analysis, please see the ICSE 2020 paper.
├─ contracts
│ └─ <contract_address>.sol
├─ contracts.csv.tar.gz # the meta data of all the contract
├─ script
│ ├─ get_contracts.py # collect the source code of the contracts from Etherscan
│ └─ get_balance.py # collect the balance of the contracts from Etherscan
SELECT contracts.address, COUNT(1) AS tx_count
FROM `ethereum_blockchain.contracts` AS contracts
JOIN `ethereum_blockchain.transactions` AS transactions
ON (transactions.to_address = contracts.address)
GROUP BY contracts.address
ORDER BY tx_count DESC
script).| Metric | Value |
|---|---|
| Solidity source not available | 1290074 |
| Solidity source available | 972855 |
| Unaccessible | 47 |
| Invalid | 120 |
| Total | 2263096 |
| Unique Solidity Contracts | 47398 |
| LOC of the unique contracts | 9693457 |
The license in the file LICENSE applies to all the files in this repository, except for all the files in the contracts folder. The files in this folder are publicly available, were obtained using the Etherscan APIs, and retain their original licenses. Please contact us for any additional questions.
Selected from shared topics, language and repository description—not editorial ratings.
Ackee-Blockchain /
This repository contains code and measured data for evaluation of testing frameworks for Ethereum Blockchain Applications
33/100 health