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