Automatic Roll-over before 0.8.0 version :
// SPDX-License-Identifier: MIT
pragma solidity 0.7.0;
contract IntegerExample1 {
uint8 public myUint8;
function decrement() public {
myUint8--;
}
function increment() public {
myUint8++;
}
}
Range Value uint8, kode di bawah ini akan langsung mengalami type error saat compilation process :
// SPDX-License-Identifier: MIT
pragma solidity 0.8.4;
contract IntegerExample2 {
uint8 public maxValue = 255;
uint8 public minValue = 0;
uint8 public error1 = 256; // <--- ERROR
uint8 public error2 = -1; // <---- ERROR
}
j
// SPDX-License-Identifier: MIT
pragma solidity 0.8.0;
contract RolloverExample2 {
uint8 public myUint8;
function decrement() public {
myUint8--;
}
function increment() public {
myUint8++;
}
}
Di bawah ini adalah integer operation dengan unchecked mode :
// SPDX-License-Identifier: GPL-3.0
pragma solidity 0.8.0;
contract RolloverExample2 {
uint8 public myUint8;
function decrement() public {
unchecked {
myUint8--;
}
}
function increment() public {
unchecked {
myUint8++;
}
}
}
Contoh penggunaan Address :
// SPDX-License-Identifier: MIT
pragma solidity 0.8.6;
contract AddressExample {
address public myAddress;
function setAddress(address _address) public {
myAddress = _address;
}
function getBalanceOfAccount() public view returns(uint) {
return myAddress.balance;
}
}
In this code you will learn about :
- The Concept of Balance
- State Mutability Payable
- Global Variable - msg.value
- Contract Address Properties
// SPDX-License-Identifier: MIT
pragma solidity 0.8.6;
contract SendMoneyExample {
uint public balanceReceived;
function receiveMoney() public payable {
balanceReceived += msg.value;
}
function getBalance() public view returns(uint) {
return address(this).balance;
}
}
// SPDX-License-Identifier: MIT
pragma solidity 0.8.6;
import "@openzeppelin/contracts/access/Ownable.sol";
contract Allowance is Ownable {
function isOwner() internal view returns(bool) {
return owner() == msg.sender;
}
mapping(address => uint) public allowance;
event AllowanceChanged(address indexed _forWho, address indexed _byWhom, uint _oldAmount, uint _newAmount);
function addAllowance(address _who, uint _amount) public onlyOwner {
emit AllowanceChanged(_who, msg.sender, allowance[_who], _amount);
allowance[_who] = _amount;
}
modifier ownerOrAllowed(uint _amount) {
require(isOwner() || allowance[msg.sender] >= _amount, "You are not allowed!");
_;
}
function reduceAllowance(address _who, uint _amount) internal ownerOrAllowed(_amount) {
emit AllowanceChanged(_who, msg.sender, allowance[_who], allowance[_who] - _amount);
allowance[_who] -= _amount;
}
}
contract SharedWallet is Allowance {
event MoneySent(address indexed _beneficiary, uint _amount);
event MoneyReceived(address indexed _from, uint _amount);
function getContractBalance() public view returns(uint256) {
return address(this).balance;
}
function renounceOwnership() public view override onlyOwner {
revert("can't renounceOwnership here"); //not possible with this smart contract
}
function withdrawMoney(address payable _to, uint _amount) public ownerOrAllowed(_amount) {
require(_amount <= address(this).balance, "Contract doesn't own enough money");
if(!isOwner()) {
reduceAllowance(msg.sender, _amount);
}
emit MoneySent(_to, _amount);
_to.transfer(_amount);
}
receive() external payable {
emit MoneyReceived(msg.sender, msg.value);
}
}