solidity-basics / contract-definition
Contract Definition
Solidity has collections of code called contracts
. Contracts are where the functions and data live. Each contract resides at their own specific address on Ethereum.
Contracts are the building blocks of Ethereum projects and this is the how we start to build functionality for our projects via Ethereum.
pragma solidity ^0.8.14;
Loading...