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
- 제어의역전
- 솔리디티
- tcp
- NFT
- geth
- github
- solidity
- blockchain
- server
- MySQL
- 이더리움
- Docker
- ethers
- ERC165
- 스마트 컨트랙트
- JavaScript
- Ethereum
- 네트워크
- truffle
- erc721
- web3
- web
- Python
- ERC20
- 블록체인
- web3.js
- 트랜잭션
- erc
- Programming
- git
Archives
- Today
- Total
목록delegatecall (1)
멍개의 연구소
[ethereum] solidity - call, delegatecall
solidity에서 call과 delegatecall에 대해서 다뤄보겠습니다. 우선 이번글은 solidity 0.5 버전 기준으로 합니다. call과 delegatecall은 0.5 버전 전, 후로 사용법이 바뀌었습니다. ● 샘플코드 먼저, call과 delegatecall을 사용한 sample 코드부터 확인하겠습니다. pragma solidity ^0.5; contract Sample1 { uint public t ; constructor() public { } event L(uint a, uint b, address c); function test(uint a, uint b) public returns(uint){ t = a + b; emit L(a, b, msg.sender); return a ..
블록체인
2022. 8. 27. 16:18