Top 1K Features Creators Events Podcasts Books Extensions Interviews Blog Explorer CSV

Vyper

< >

Vyper is a contract language created in 2016 by Vitalik Buterin.

#756on PLDB 9Years Old 117Repos
Download source code:
git clone https://github.com/ethereum/vyper
HomepageSource CodeBlogTwitterDocs

Pythonic language for the EVM.


Example from the web:
# @version >=0.2.4 <0.3.0 DNA_DIGITS: constant(uint256) = 16 DNA_MODULUS: constant(uint256) = 10 ** DNA_DIGITS struct Pokemon: name: String[32] dna: uint256 HP: uint256 matches: uint256 wins: uint256 # Declare totalPokemonCount pokemonList: HashMap[uint256, Pokemon] @internal def _createPokemon(_name: String[32], _dna: uint256, _HP: uint256): # use totalPokemonCount self.pokemonList[0] = Pokemon({ name: _name, dna: _dna, HP: _HP, matches: 0, wins: 0 }) # increment totalPokemonCount by 1

- Build the next great programming language Add Add Prompt Issues About Search Keywords Livestreams Labs Resources Acknowledgements

Built with Scroll v175.2.1