Tips: Truffle Tutorial
Truffle Tutorial
Prerequisites
Getting Started
Creating a Smart Contract
pragma solidity ^0.8;
contract MyContract {
uint256 public myNumber;
function setNumber(uint256 _number) public {
myNumber = _number;
}
}Compiling the Contract
Deploying the Contract
Interacting with the Contract
Conclusion
Last updated