Storage

저장

Smart Contracts 18 references

체인에 저장된 영구 계약 데이터는 일반적으로 임시 메모리보다 쓰기 비용이 더 많이 듭니다. EVM에서 스토리지는 각 계약과 관련된 키-값 저장소입니다.

18개 백서 섹션에 등장

Merkle Trees
... Merkle trees are used not only for transactions but also for state and receipt storage, enabling even more sophisticated light client protocols.
Ethereum
..., a transaction counter (nonce), and for contract accounts, associated code and storage. The platform includes a built-in Turing-complete programming language for writ...
Ethereum Accounts
... an ether balance, and for contracts specifically, contract code and persistent storage. Ether is the primary internal cryptocurrency of Ethereum, serving as both a m...
Messages and Transactions
.... The gas mechanism is crucial for preventing abuse: every computational step, storage operation, and data byte in a transaction consumes gas. If a transaction runs o...
Ethereum State Transition Function
...ts, or the gas runs out. During execution, the contract can read and modify its storage, send messages to other contracts, and create new contracts. Finally, if the v...
Code Execution
...nsuring consensus across the network. The EVM provides three distinct types of storage for computation. The stack is a last-in-first-out (LIFO) structure limited to 1...
Blockchain and Mining
...ccount objects, where each account has a balance, nonce, code (if present), and storage. Ethereum uses a modified version of the GHOST (Greedy Heaviest Observed Subtr...
Applications
...lized domain name systems like Namecoin, reputation systems, decentralized file storage, and organizational governance tools. Of all these application types, token sys...
Decentralized File Storage
Decentralized file storage can be implemented through Ethereum contracts that coordinate between users who...
Conclusion
...um protocol moves far beyond just currency. Protocols around decentralized file storage, decentralized computation, and decentralized prediction markets, among dozens ...

Related Stories