250x250
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 |
Tags
- Props
- CLASS
- nextJS
- useState
- 기준
- JavaScript
- blockchain
- evm
- API
- 삶
- solidity
- built in object
- middleware
- graphQL
- express.js
- CSS
- tailwindcss
- bitcoin
- error
- Interface
- HTML
- typeScript
- Ethereum
- REACT
- Redux
- SSR
- hardhat
- node.js
- web
- concept
Archives
- Today
- Total
목록Parameter (1)
ReasonJun
Solidity : function / Parameter / wei / ether / gas
// SPDX-License-Identifier: MIT pragma solidity >= 0.7.0 < 0.9.0; contract Ex1 { uint public a = 3; uint public b = 5; function myBlock() public returns (uint, uint){ a = 99; b = 0; return(a, b); } function myBlcok2(uint c) public { a = c; } function myBlock3() public pure returns(uint age, uint weight) { age = 20; weight = 55; } function getValue(uint e) public pure returns (uint) { return e; }..
Blockchain/Solidity
2023. 10. 16. 12:33