Project Name | Stars | Downloads | Repos Using This | Packages Using This | Most Recent Commit | Total Releases | Latest Release | Open Issues | License | Language |
---|---|---|---|---|---|---|---|---|---|---|
Go Ethereum | 42,383 | 431 | 1,920 | 19 hours ago | 655 | September 15, 2022 | 325 | lgpl-3.0 | Go | |
Official Go implementation of the Ethereum protocol | ||||||||||
Openzeppelin Contracts | 22,331 | 51 | 1,033 | 19 hours ago | 63 | September 07, 2022 | 215 | mit | JavaScript | |
OpenZeppelin Contracts is a library for secure smart contract development. | ||||||||||
Foundry | 6,008 | 21 hours ago | 720 | apache-2.0 | Rust | |||||
Foundry is a blazing fast, portable and modular toolkit for Ethereum application development written in Rust. | ||||||||||
Chains | 5,732 | 18 hours ago | 75 | mit | Kotlin | |||||
provides metadata for networkIDs and chainIDs | ||||||||||
Vyper | 4,524 | 17 | 11 | a day ago | 42 | April 22, 2022 | 311 | other | Python | |
Pythonic Smart Contract Language for the EVM | ||||||||||
Aleth | 3,951 | 2 years ago | 340 | gpl-3.0 | C++ | |||||
Aleth – Ethereum C++ client, tools and libraries | ||||||||||
Manticore | 3,453 | 1 | 1 | 4 days ago | 723 | July 07, 2022 | 263 | agpl-3.0 | Python | |
Symbolic execution tool | ||||||||||
Mythril | 3,193 | 8 | 3 | 4 days ago | 292 | June 20, 2022 | 94 | mit | Python | |
Security analysis tool for EVM bytecode. Supports smart contracts built for Ethereum, Hedera, Quorum, Vechain, Roostock, Tron and other EVM-compatible blockchains. | ||||||||||
Ethereumjs Monorepo | 2,260 | 5,333 | 2,248 | 16 hours ago | 85 | June 03, 2022 | 126 | TypeScript | ||
Monorepo for the Ethereum VM TypeScript Implementation | ||||||||||
Remix Ide | 2,141 | 10 | 3 | 2 days ago | 44 | July 13, 2020 | 2 | mit | ||
Documentation for Remix IDE |
See Installing Vyper to install vyper. See Tools and Resources for an additional list of framework and tools with vyper support. See Documentation for the documentation and overall design goals of the Vyper language.
See Learn.Vyperlang.org for learning Vyper by building a Pokémon game. See try.vyperlang.org to use Vyper in a hosted jupyter environment!
Note: Vyper is beta software, use with care
See the Vyper documentation for build instructions.
To compile a contract, use:
vyper your_file_name.vy
generate bytecode
vyper -f bytecode file-name.vy > file-name.bin
generate abi
vyper -f abi file-name.vy > file-name.abi
There is also an online compiler available you can use to experiment with
the language and compile to bytecode
and/or IR
.
Note: While the vyper version of the online compiler is updated on a regular basis it might be a bit behind the latest version found in the master branch of this repository.
(Complete installation steps first.)
make dev-init
python setup.py test