일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- JavaScript
- nextJS
- Props
- HTML
- tailwindcss
- built in object
- evm
- bitcoin
- blockchain
- node.js
- 기준
- SSR
- CSS
- graphQL
- concept
- 삶
- express.js
- error
- API
- typeScript
- hardhat
- middleware
- useState
- REACT
- Interface
- web
- CLASS
- Redux
- solidity
- Ethereum
- Today
- Total
목록solidity (46)
ReasonJun
Storage Storage is a persistent data store in Solidity that is used to store state variables. State variables are variables that are saved to the blockchain and can be accessed and modified by any user of the contract. Storage is the most expensive type of storage in Solidity, as it requires gas to read and write to. Memory Memory is a temporary data store in Solidity that is used to store data ..

Variable : The name given to the memory space that can store variable values, or the memory space itself, is called a 'variable'. State Variables : Declared outside of a function. Variable permanently stored in the contract storage. Local Variables : Declared inside a function. Exists only during function execution. Not stored in blockchain contract. Global Variables : (ex. Block info , msg info..
1. SPDX - License - Identifier ex . //SPDX-License-Identifier: MIT : In each file of the project, add a line at the top that matches the license. Determine the License applied to the file License standardization of source code and documents Eliminate error-prone license header parsing 2. Pragma solidity ex. pragma solidity >= 0.7.0 < 0.9.0; : Indicates the solidity compiled version of the curren..

Bytecode is a low-level language that the EVM interprets to execute functions. ABI (= Application Binary Interface) is a JSON file used in web apps to call smart contracts. Approximate structural differences between the existing Web 2.0 and Web 3.0: