Vibeset

Solidity

Solidity is the most widely used language for writing smart contracts that run on the Ethereum Virtual Machine (EVM). With syntax inspired by JavaScript and C++, it lets you build decentralized applications (dApps), tokens and DeFi protocols. Young but key in the Web3 world.

Para qué se usa

A favor

En contra

Ecosistema

Ejemplo

// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;
contract Hola {
  string public saludo = "¡Hola, mundo!";
}