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

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..
IndexedDB is a powerful API provided by web browsers for managing a local NoSQL database within client-side applications. Here's a detailed breakdown of its key features and functionalities: Purpose: Persistently store large amounts of structured data in the user's browser, enabling offline-capable web applications. Offer rich query capabilities for efficient data retrieval based on indexes. Key..
What It Is: A lightweight, serverless runtime environment designed for executing code closer to users, at the edge of the network. Built on a subset of standard Web APIs, prioritizing speed, security, and compatibility. Integrated into Next.js, offering specific features: Edge API Routes Middleware Server components (experimental) Key Characteristics: Minimal: Supports a smaller set of APIs comp..

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..