Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | |||
5 | 6 | 7 | 8 | 9 | 10 | 11 |
12 | 13 | 14 | 15 | 16 | 17 | 18 |
19 | 20 | 21 | 22 | 23 | 24 | 25 |
26 | 27 | 28 | 29 | 30 | 31 |
Tags
- 이더리움
- 네트워크
- geth
- erc721
- Programming
- solidity
- ERC20
- server
- NFT
- truffle
- Python
- 스마트 컨트랙트
- 솔리디티
- JavaScript
- Ethereum
- blockchain
- web3.js
- web
- Docker
- 트랜잭션
- tcp
- 제어의역전
- ERC165
- 블록체인
- web3
- git
- ethers
- MySQL
- github
- erc
Archives
- Today
- Total
목록unchecked (1)
멍개의 연구소
[ethereum] solidity overflow, underflow에 대해서
solidity 8.x부터 overflow, underflow가 발생하는 연산은 revert가 발생합니다. // SPDX-License-Identifier: UNLICENSED pragma solidity ^0.8.10; contract Test { function f(uint a, uint b) pure public returns(uint) { return a - b; } } 0에서 1을 감소하면 underflow가 발생하기 때문에 revert가 발생합니다. 만약 의도적인 underflow를 발생해야 한다면 unchecked를 이용하면 됩니다. // SPDX-License-Identifier: UNLICENSED pragma solidity ^0.8.10; contract Test { functio..
블록체인
2022. 8. 28. 07:23