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 | 29 | 30 | 31 |
Tags
- Props
- tailwindcss
- solidity
- Ethereum
- 기준
- concept
- HTML
- middleware
- API
- CLASS
- typeScript
- node.js
- JavaScript
- express.js
- blockchain
- CSS
- built in object
- SSR
- REACT
- evm
- nextJS
- graphQL
- 삶
- useState
- bitcoin
- Interface
- error
- web
- Redux
- hardhat
Archives
- Today
- Total
목록ether (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