Vyper is a contract language created in 2016 by Vitalik Buterin.
#756on PLDB | 9Years Old | 117Repos |
git clone https://github.com/ethereum/vyper
Pythonic language for the EVM.
# @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