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

Block represents an Ethereum block. Note the Block type tries to be 'immutable', and contains certain caches that rely on that. The rules around block immutability are as follows: We copy all data when the block is constructed. This makes references held inside the block independent of whatever value was passed in. We copy all header data on access. This is because any change to the header would..
The error message invalid opcode: PUSH0 means that the Ethereum Virtual Machine (EVM) does not recognize the PUSH0 opcode. This opcode was introduced in Solidity compiler version 0.8.20, but it is not yet supported by all EVM implementations. If you are trying to deploy a contract that uses the PUSH0 opcode, you will need to make sure that you are deploying it to an EVM implementation that suppo..
The Contract Application Binary Interface (ABI) in the Ethereum Virtual Machine (EVM) is a standard way to interact with smart contracts. It defines the functions and data types that are available in a smart contract and which we can use to interact with that smart contract. The ABI is a JSON file that contains information about the smart contract, such as the name of the contract, the functions..

EVM : The Ethereum Virtual Machine (EVM) is a decentralized runtime environment that executes smart contracts. It is the core component of the Ethereum blockchain and is responsible for processing and validating all transactions on the network. The EVM is a stack-based virtual machine, which means that it uses a stack to store data and instructions. The stack is a last-in-first-out (LIFO) data s..