일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- typeScript
- HTML
- Props
- 삶
- nextJS
- hardhat
- middleware
- SSR
- built in object
- solidity
- web
- REACT
- graphQL
- Interface
- evm
- express.js
- useState
- API
- bitcoin
- CLASS
- Redux
- blockchain
- error
- tailwindcss
- Ethereum
- concept
- node.js
- 기준
- JavaScript
- CSS
- Today
- Total
목록Ethereum (16)
ReasonJun
Gas This refers to the value used for fees in Ethereum. The fee is calculated by converting the Byte Code that appears when the code in the Smart Contract is complied into the Gas value specified in the OP_CODE table. Gas Limit(Used) Gas Limit is divided into Block Gas Limit and Transaction Gas Used. Block Gas Limit means the sum of the total Transaction Gas Used in the corresponding block, and ..
EIP-2770 is a proposed Ethereum Improvement Proposal (EIP) aimed at standardizing the way meta transactions are executed within the Ethereum ecosystem. Meta transactions enable users to sign and submit transactions to the blockchain without having to pay the gas fees themselves. This can be beneficial for various reasons, like: Reducing barriers to entry: By removing the gas fee burden, EIP-2770..
Type: The type of transaction (e.g., LegacyTxType, AccessListTxType). PostState: The root hash of the world state after transaction execution. Status: The transaction's status (1 for success, 0 for failure). CumulativeGasUsed: Total gas used by the transaction and its sub-transactions. Bloom: A Bloom filter for efficient retrieval of logs matching specific topics. Logs: An array of logs emitted ..
Transaction is a structure used when EOA transmits Eth to EOA or when EOA calls CA. txType() byte: This method returns the type ID of the transaction. It is expected to return a byte representing the type of the transaction. copy() TxData: This method creates a deep copy of the transaction data, initializing all fields. It allows for the duplication of transaction data. chainID() *big.Int: Retur..
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..
In the case of Bitcoin blockchain, state values are managed based on UTXO. The user's balance is managed by updating the UTXO usage status whenever a new block is created. In the case of the Ethereum blockchain, the state value of balance data is stored in the Account based on the state, and the balance is updated every time a block is created. Types of Accounts: There are two main types of acco..