- Today
- Total
Notice
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
- 해시
- security
- lending
- 리눅스
- V2
- pow
- Crypto
- 이더리움
- wargame
- pwnable
- solidity
- BANDiT
- compound
- 해킹
- 코인
- hacking
- overthewire
- DreamHack
- shellcode
- PWN
- bitcoin
- defi
- blockchain
- Leak
- 비트코인
- 반딧
- Ethereum
- 블록체인
- Linux
- web3
Archives
목록require (1)
Nullorm
[web3 Solidity] modifier 함수변경자 / onlyOwner
Solidity를 하다보면, onlyOwner라는 이름의 modifier가 많이 쓰인다. 그냥 항상 송금/출금 등의 함수에서 당연히 붙이는거니까~ 하면서 쓰고있었는데, 정확한 문법에 대한 이해가 필요할 듯 해 정리해보려고 한다. modifier onlyOwner() { require(msg.sender == owner, "caller is not the owner"); _; } function withdraw() public onlyOwner { payable(owner).transfer(address(this).balance); } 줄마다 보면서 해석해봐야할 것 같다. 1. modifier 함수변경자의 의미 modifier는 "함수변경자, 제어자" 라는 이름으로도 불린다. 즉, 함수의 기능에 있어 특정..
Web3/web3 개발&보안
2024. 4. 11. 21:06