Vyper
Vyper is a smart-contract language for Ethereum, an alternative to Solidity. With Python-like syntax, it prioritizes security and auditability over flexibility, removing features that commonly cause vulnerabilities.
- Creado por Comunidad Ethereum
- Año 2017
- Paradigma: Contract-oriented · compiled (EVM)
- Extensiones: .vy
Para qué se usa
- Smart contracts
- Secure DeFi
- Auditable protocols
A favor
- Readable (Python-like) syntax
- Security-focused
- Simpler than Solidity
En contra
- Less powerful than Solidity
- Small community
- Fewer tools
Ecosistema
- Titanoboa
- Ape
- Brownie
- Ethereum
Ejemplo
@external
def saludo() -> String[20]:
return "¡Hola, mundo!"