एथेरियम: अगली पीढ़ी का स्मार्ट कॉन्ट्रैक्ट और विकेंद्रीकृत एप्लिकेशन प्लेटफ़ॉर्म

Ethereum: A Next-Generation Smart Contract and Decentralized Application Platform

Oleh Vitalik Buterin · 2013

Abstract

Satoshi Nakamoto's development of Bitcoin in 2009 has often been hailed as a radical development in money and currency, being the first example of a digital asset which simultaneously has no backing or intrinsic value and no centralized issuer or controller. However, another, arguably more important, part of the Bitcoin experiment is the underlying blockchain technology as a tool of distributed consensus, and attention is rapidly starting to shift to this other aspect of Bitcoin. Commonly cited alternative applications of blockchain technology include using on-blockchain digital assets to represent custom currencies and financial instruments (colored coins), the ownership of an underlying physical device (smart property), non-fungible assets such as domain names (Namecoin), as well as more complex applications involving having digital assets being directly controlled by a piece of code implementing arbitrary rules (smart contracts) or even blockchain-based decentralized autonomous organizations (DAOs).

What Ethereum intends to provide is a blockchain with a built-in fully fledged Turing-complete programming language that can be used to create "contracts" that can be used to encode arbitrary state transition functions, allowing users to create any of the systems described above, as well as many others that we have not yet imagined, simply by writing up the logic in a few lines of code. A bare-bones version of Namecoin can be written in two lines of code, and other protocols like currencies and reputation systems can be built in under twenty lines. Smart contracts, cryptographic "boxes" that contain value and only unlock it if certain conditions are met, can also be built on top of the platform, with vastly more power than that offered by Bitcoin scripting because of the added powers of Turing-completeness, value-awareness, blockchain-awareness, and state.

Abstract

Ethereum एक अगली पीढ़ी का cryptocurrency और विकेन्द्रीकृत एप्लिकेशन प्लेटफॉर्म है जो एक अंतर्निहित Turing-complete प्रोग्रामिंग भाषा के साथ एक blockchain प्रस्तुत करता है। यह किसी को भी smart contracts और विकेन्द्रीकृत एप्लिकेशन लिखने की अनुमति देता है जहाँ वे स्वामित्व, लेनदेन प्रारूपों और state transition functions के लिए अपने मनमाने नियम बना सकते हैं।

Ethereum का मूलभूत नवाचार Bitcoin द्वारा अग्रणी blockchain तकनीक को एक सामान्य-उद्देश्य प्रोग्रामिंग वातावरण के साथ जोड़ना है। जबकि Bitcoin एक खाते से दूसरे खाते में मुद्रा स्थानांतरित करने के लिए एक सरल state transition system प्रदान करता है, Ethereum एक ऐसा प्लेटफॉर्म प्रदान करता है जहाँ डेवलपर्स वैकल्पिक मुद्राओं और वित्तीय उपकरणों से लेकर डोमेन पंजीकरण प्रणालियों और विकेन्द्रीकृत संगठनों तक, किसी भी प्रकार का विकेन्द्रीकृत एप्लिकेशन बना सकते हैं।

Ethereum यह मूलतः अंतिम अमूर्त आधारभूत परत बनाकर प्राप्त करता है: एक अंतर्निहित Turing-complete प्रोग्रामिंग भाषा वाला blockchain, जो किसी को भी smart contracts और विकेन्द्रीकृत एप्लिकेशन लिखने की अनुमति देता है जहाँ वे स्वामित्व, लेनदेन प्रारूपों और state transition functions के लिए अपने मनमाने नियम बना सकते हैं। Namecoin का एक न्यूनतम संस्करण कोड की दो पंक्तियों में लिखा जा सकता है, और मुद्राओं और प्रतिष्ठा प्रणालियों जैसे अन्य प्रोटोकॉल बीस से कम पंक्तियों में बनाए जा सकते हैं।

Introduction and Existing Concepts

The concept of decentralized digital currency, as well as alternative applications like property registries, has been around for decades. The anonymous e-cash protocols of the 1980s and the 1990s, mostly reliant on a cryptographic primitive known as Chaumian blinding, provided a currency with a high degree of privacy, but the protocols largely failed to gain traction because of their reliance on a centralized intermediary. In 1998, Wei Dai's b-money became the first proposal to introduce the idea of creating money through solving computational puzzles as well as decentralized consensus, but the proposal was scant on details as to how decentralized consensus could actually be implemented. In 2005, Hal Finney introduced a concept of reusable proofs of work, a system which uses ideas from b-money together with Adam Back's computationally difficult Hashcash puzzles to create a concept for a cryptocurrency, but once again fell short of the ideal by relying on trusted computing as a backend.

In 2009, a decentralized currency was for the first time implemented in practice by Satoshi Nakamoto, combining established primitives for managing ownership through public key cryptography with a consensus algorithm for keeping track of who owns coins, known as "proof of work." The mechanism behind proof of work was a breakthrough in the space because it simultaneously solved two problems. First, it provided a simple and moderately effective consensus algorithm, allowing nodes in the network to collectively agree on a set of canonical updates to the state of the Bitcoin ledger. Second, it provided a mechanism for allowing free entry into the consensus process, solving the political problem of deciding who gets to influence the consensus, while simultaneously preventing sybil attacks. It does this by substituting a formal barrier to participation, such as the requirement to be registered as a unique entity on a particular list, with an economic barrier -- the weight of a single node in the consensus voting process is directly proportional to the computing power that the node brings. Since then, an alternative approach has been proposed called proof of stake, calculating the weight of a node as being proportional to its currency holdings and not computational resources; the discussion of the relative merits of the two approaches is beyond the scope of this paper but it should be noted that both approaches can be used to serve as the backbone of a cryptocurrency.

The Bitcoin blockchain has proven remarkably robust in practice over the subsequent years of operation, but it is inherently limited in what it can accomplish beyond simple value transfer. Bitcoin's scripting language is intentionally designed to be restrictive, lacking loops, Turing-completeness, and many other features that would be necessary to build more complex applications. This limitation, while providing safety from certain classes of attacks, severely restricts what can be built on top of Bitcoin. Over the following years, numerous attempts to extend Bitcoin's functionality emerged: colored coins sought to use the Bitcoin blockchain to track ownership of alternative assets, Namecoin attempted to create a decentralized name registration database, and various metacoin protocols aimed to build additional layers on top of Bitcoin's transaction format. While these approaches showed promise, they were ultimately constrained by Bitcoin's scripting capabilities and the inability to access blockchain data from within scripts.

What Ethereum intends to provide is a blockchain with a built-in fully fledged Turing-complete programming language that can be used to create "contracts" that can be used to encode arbitrary state transition functions, allowing users to create any of the systems described above, as well as many others that we have not yet imagined, simply by writing up the logic in a few lines of code.

Introduction and Existing Concepts

विकेंद्रीकृत डिजिटल मुद्रा की अवधारणा, साथ ही संपत्ति रजिस्ट्री जैसे वैकल्पिक अनुप्रयोग, दशकों से अस्तित्व में रहे हैं। 1980 और 1990 के दशक के अनाम ई-कैश प्रोटोकॉल, जो मुख्य रूप से Chaumian blinding नामक एक क्रिप्टोग्राफिक प्रिमिटिव पर निर्भर थे, उच्च स्तर की गोपनीयता वाली मुद्रा प्रदान करते थे, लेकिन ये प्रोटोकॉल एक केंद्रीकृत मध्यस्थ पर निर्भरता के कारण लोकप्रिय नहीं हो पाए। 1998 में, Wei Dai की b-money कम्प्यूटेशनल पहेलियों को हल करके धन बनाने और विकेंद्रीकृत सहमति के विचार को पेश करने वाला पहला प्रस्ताव बना, लेकिन यह प्रस्ताव इस बारे में विवरण में कमी रखता था कि विकेंद्रीकृत सहमति वास्तव में कैसे लागू की जा सकती है।

2009 में, Satoshi Nakamoto द्वारा पहली बार एक विकेंद्रीकृत मुद्रा को व्यवहार में लागू किया गया, जिसमें public key cryptography के माध्यम से स्वामित्व प्रबंधन के लिए स्थापित प्रिमिटिव को "proof of work" नामक एक सहमति एल्गोरिदम के साथ जोड़ा गया। Proof of work के पीछे की प्रणाली इस क्षेत्र में एक सफलता थी क्योंकि इसने एक साथ दो समस्याओं को हल किया। पहला, इसने एक सरल और मध्यम रूप से प्रभावी सहमति एल्गोरिदम प्रदान किया, जो नेटवर्क में नोड्स को Bitcoin लेजर की स्थिति के अपडेट पर सामूहिक रूप से सहमत होने की अनुमति देता था। दूसरा, इसने सहमति प्रक्रिया में मुक्त प्रवेश की अनुमति देने का एक तंत्र प्रदान किया, यह तय करने की राजनीतिक समस्या को हल करते हुए कि सहमति को कौन प्रभावित करता है, साथ ही sybil attacks को रोकते हुए।

Bitcoin blockchain अपने संचालन के वर्षों में उल्लेखनीय रूप से मजबूत साबित हुआ है, लेकिन यह स्वाभाविक रूप से सीमित है। Bitcoin की स्क्रिप्टिंग भाषा जानबूझकर प्रतिबंधात्मक और गैर-Turing-complete होने के लिए डिज़ाइन की गई है, जिसमें लूप और कई अन्य सुविधाओं की कमी है जो अधिक जटिल अनुप्रयोग बनाने के लिए आवश्यक होंगी। यह सीमा अनंत लूप और अन्य प्रकार के कम्प्यूटेशनल हमलों को रोकने के लिए मौजूद है, लेकिन यह Bitcoin के ऊपर क्या बनाया जा सकता है, इसे गंभीर रूप से प्रतिबंधित करती है।

पिछले पांच वर्षों में, Bitcoin की कार्यक्षमता का विस्तार करने के कई प्रयास हुए हैं। Colored coins ने वैकल्पिक संपत्तियों के स्वामित्व को ट्रैक करने के लिए Bitcoin blockchain का उपयोग करने की कोशिश की, Namecoin ने एक विकेंद्रीकृत नाम पंजीकरण डेटाबेस बनाने का प्रयास किया, और विभिन्न metacoin प्रोटोकॉल ने Bitcoin के ऊपर अतिरिक्त परतें बनाने का लक्ष्य रखा। हालांकि इन दृष्टिकोणों ने वादा दिखाया, वे अंततः Bitcoin की स्क्रिप्टिंग क्षमताओं और स्क्रिप्ट के भीतर से blockchain डेटा तक पहुंचने में असमर्थता से सीमित थे।

Ethereum जो प्रदान करना चाहता है वह एक अंतर्निहित पूर्ण रूप से विकसित Turing-complete प्रोग्रामिंग भाषा वाला blockchain है जिसका उपयोग "contracts" बनाने के लिए किया जा सकता है जो मनमाने state transition functions को एन्कोड कर सकते हैं, जिससे उपयोगकर्ता ऊपर वर्णित किसी भी प्रणाली को, साथ ही कई अन्य जिनकी हमने अभी तक कल्पना नहीं की है, बस कुछ पंक्तियों के कोड में तर्क लिखकर बना सकते हैं।

Bitcoin As A State Transition System

From a technical standpoint, the ledger of a cryptocurrency such as Bitcoin can be thought of as a state transition system, where there is a "state" consisting of the ownership status of all existing bitcoins and a "state transition function" that takes a state and a transaction and outputs a new state which is the result. In a standard banking system, for example, the state is a balance sheet, a transaction is a request to move \(X from A to B, and the state transition function reduces the value in A's account by \)X and increases the value in B's account by \(X. If A's account has less than \)X in the first place, the state transition function returns an error. Hence, one can formally define:

APPLY(S,TX) - S' or ERROR

In the banking system defined above:

APPLY({ Alice: \(50, Bob: \)50 },send \(20 from Alice to Bob") = { Alice: \)30, Bob: $70 }

But:

APPLY({ Alice: \(50, Bob: \)50 },send $70 from Alice to Bob) = ERROR

The "state" in Bitcoin is the collection of all coins (technically, "unspent transaction outputs" or UTXO) that have been minted and not yet spent, with each UTXO having a denomination and an owner (defined by a 20-byte address which is essentially a cryptographic public key). A transaction contains one or more inputs, with each input containing a reference to an existing UTXO and a cryptographic signature produced by the private key associated with the owner's address, and one or more outputs, with each output containing a new UTXO to be added to the state.

Ethereum state transition diagram showing how transactions transform blockchain state

The state transition function APPLY(S,TX) - S' can be defined roughly as follows:

  1. For each input in TX:
  2. If the referenced UTXO is not in S, return an error.
  3. If the provided signature does not match the owner of the UTXO, return an error.
  4. If the sum of the denominations of all input UTXO is less than the sum of the denominations of all output UTXO, return an error.
  5. Return S with all input UTXO removed and all output UTXO added.

The first half of the first step prevents transaction senders from spending coins that do not exist, the second half of the first step prevents transaction senders from spending other people's coins, and the second step enforces conservation of value. In order to use this for payment, the protocol is as follows. Suppose Alice wants to send 11.7 BTC to Bob. First, Alice will look for a set of available UTXO that she owns that totals up to at least 11.7 BTC. Realistically, Alice will not be able to get exactly 11.7 BTC; say that the smallest she can get is 6+4+2=12. She then creates a transaction with those three inputs and two outputs. The first output will be 11.7 BTC with Bob's address as its owner, and the second output will be the remaining 0.3 BTC "change", with the owner being Alice herself.

Bitcoin As A State Transition System

तकनीकी दृष्टिकोण से, Bitcoin जैसी cryptocurrency का लेजर एक state transition system के रूप में सोचा जा सकता है, जहां एक "state" होता है जिसमें सभी मौजूदा bitcoins की स्वामित्व स्थिति होती है और एक "state transition function" होता है जो एक state और एक transaction लेता है और एक नया state आउटपुट करता है जो परिणाम है। एक मानक बैंकिंग प्रणाली में, उदाहरण के लिए, state एक बैलेंस शीट है, transaction A से B को \(X स्थानांतरित करने का अनुरोध है, और state transition function A के खाते में मूल्य को \)X से कम करता है और B के खाते में मूल्य को \(X से बढ़ाता है। यदि A के खाते में पहले से \)X से कम है, तो state transition function एक त्रुटि लौटाता है।

Ethereum state transition diagram showing how transactions transform blockchain state

Bitcoin में "state" सभी coins (तकनीकी रूप से, "unspent transaction outputs" या UTXO) का संग्रह है जो बनाए गए हैं और अभी तक खर्च नहीं किए गए हैं, जिसमें प्रत्येक UTXO का एक मूल्यवर्ग और एक स्वामी होता है (जो एक 20-byte address द्वारा परिभाषित होता है जो अनिवार्य रूप से एक cryptographic public key है)। एक transaction में एक या अधिक inputs होते हैं, जिसमें प्रत्येक input में एक मौजूदा UTXO का संदर्भ और स्वामी के address से जुड़ी private key द्वारा उत्पादित एक cryptographic signature होती है, और एक या अधिक outputs होते हैं, जिसमें प्रत्येक output में state में जोड़ा जाने वाला एक नया UTXO होता है।

State transition function APPLY(S,TX) - S' को मोटे तौर पर निम्नानुसार परिभाषित किया जा सकता है:

  1. TX में प्रत्येक input के लिए, यदि संदर्भित UTXO S में नहीं है, तो त्रुटि लौटाएं।
  2. यदि प्रदान की गई signature UTXO के स्वामी से मेल नहीं खाती, तो त्रुटि लौटाएं।
  3. यदि सभी input UTXO के मूल्यवर्गों का योग सभी output UTXO के मूल्यवर्गों के योग से कम है, तो त्रुटि लौटाएं।
  4. सभी input UTXO हटाए गए और सभी output UTXO जोड़े गए S लौटाएं।

पहले चरण का पहला भाग transaction भेजने वालों को उन coins को खर्च करने से रोकता है जो मौजूद नहीं हैं, पहले चरण का दूसरा भाग transaction भेजने वालों को अन्य लोगों के coins खर्च करने से रोकता है, और दूसरा चरण मूल्य के संरक्षण को लागू करता है। भुगतान के लिए इसका उपयोग करने के लिए, प्रोटोकॉल इस प्रकार है: मान लीजिए Alice Bob को 11.7 BTC भेजना चाहती है। सबसे पहले, Alice उपलब्ध UTXO का एक सेट खोजेगी जो वह रखती है जो कम से कम 11.7 BTC का कुल योग है। वास्तव में, Alice को ठीक 11.7 BTC नहीं मिल पाएगा; मान लें कि सबसे छोटा जो वह प्राप्त कर सकती है वह 6+4+2=12 है। फिर वह उन तीन inputs और दो outputs के साथ एक transaction बनाती है। पहला output 11.7 BTC होगा जिसका स्वामी Bob का address होगा, और दूसरा output शेष 0.3 BTC "change" होगा, जिसका स्वामी स्वयं Alice होगी।

Mining

If we had access to a trustworthy centralized service, this system would be trivial to implement; it could simply be coded exactly as described, using a centralized server's hard drive to keep track of the state. However, with Bitcoin we are trying to build a decentralized currency system, so we will need to combine the state transaction system with a consensus system in order to ensure that everyone agrees on the order of transactions. Bitcoin's decentralized consensus process requires nodes in the network to continuously attempt to produce packages of transactions called "blocks." The network is intended to produce roughly one block every ten minutes, with each block containing a timestamp, a nonce, a reference to (i.e. hash of) the previous block and a list of all of the transactions that have taken place since the previous block. Over time, this creates a persistent, ever-growing, "blockchain" that constantly updates to represent the latest state of the Bitcoin ledger.

Ethereum block structure showing linked blocks with timestamps nonces and transactions

The algorithm for checking if a block is valid, expressed in this paradigm, is as follows:

  1. Check if the previous block referenced by the block exists and is valid.
  2. Check that the timestamp of the block is greater than that of the previous block and less than 2 hours into the future.
  3. Check that the proof of work on the block is valid.
  4. Let S[0] be the state at the end of the previous block.
  5. Suppose TX is the block's transaction list with n transactions. For all i in 0...n-1, set S[i+1] = APPLY(S[i],TX[i]). If any application returns an error, exit and return false.
  6. Return true, and register S[n] as the state at the end of this block.

Essentially, each transaction in the block must provide a valid state transition from what was the canonical state before the transaction was executed to some new state. Note that the state is not encoded in the block in any way; it is purely an abstraction to be remembered by the validating node and can only be (securely) computed for any block by starting from the genesis state and sequentially applying every transaction in every block. Additionally, note that the order in which the miner includes transactions into the block matters; if there are two transactions A and B in a block such that B spends a UTXO created by A, then the block will be valid if A comes before B but not otherwise.

The one validity condition present in the above list that is not found in other systems is the requirement for "proof of work." The precise condition is that the double-SHA256 hash of every block, treated as a 256-bit number, must be less than a dynamically adjusted target, which as of the time of this writing is approximately \(2^{187}\). The purpose of this is to make block creation computationally "hard," thereby preventing sybil attackers from remaking the entire blockchain in their favor. Because SHA256 is designed to be a completely unpredictable pseudorandom function, the only way to create a valid block is simply trial and error, repeatedly incrementing the nonce and seeing if the new hash matches.

At the current target of \(\sim 2^{187}\), the network must make an average of \(\sim 2^{69}\) tries before a valid block is found; in general, the target is recalibrated by the network every 2016 blocks so that on average a new block is produced by some node in the network every ten minutes. In order to compensate miners for this computational work, the miner of every block is entitled to include a transaction giving themselves 25 BTC out of nowhere. Additionally, if any transaction has a higher total denomination in its inputs than in its outputs, the difference also goes to the miner as a "transaction fee." Incidentally, this is also the only mechanism by which BTC are issued; the genesis state contained no coins at all.

In order to better understand the purpose of mining, let us examine what happens in the event of a malicious attacker. Since Bitcoin's underlying cryptography is known to be secure, the attacker will target the one part of the Bitcoin system that is not protected by cryptography directly: the order of transactions. The attacker's strategy is simple:

  1. Send 100 BTC to a merchant in exchange for some product (preferably a rapid-delivery digital good).
  2. Wait for the delivery of the product.
  3. Produce another transaction sending the same 100 BTC to himself.
  4. Try to convince the network that his transaction to himself was the one that came first.

Once step (1) has taken place, after a few minutes some miner will include the transaction in a block, say block number 270000. After about one hour, five more blocks will have been added to the chain after that block, with each of those blocks indirectly pointing to the transaction and thus "confirming" it. At this point, the merchant will accept the payment as finalized and deliver the product. Since we are assuming this is a digital good, delivery is instant. Now, the attacker creates another transaction sending the 100 BTC to himself. If the attacker simply releases it into the wild, the transaction will not be processed; miners will attempt to run APPLY(S,TX) and notice that TX consumes a UTXO which is no longer in the state. So instead, the attacker creates a "fork" of the blockchain, starting by mining another version of block 270000 pointing to the same block 269999 as a parent but with the new transaction in place of the old one. Because the block data is different, this requires redoing the proof of work. Furthermore, the attacker's new version of block 270000 has a different hash, so the original blocks 270001 to 270005 do not "point" to it; thus, the original chain and the attacker's new chain are completely separate. The rule is that in a fork the longest blockchain is taken to be the truth, and so legitimate miners will work on the 270005 chain while the attacker alone is working on the 270000 chain. In order for the attacker to make his blockchain the longest, he would need to have more computational power than the rest of the network combined in order to catch up (hence, "51% attack").

Mining

यदि हमारे पास एक विश्वसनीय केंद्रीकृत सेवा तक पहुंच होती, तो इस प्रणाली को लागू करना सरल होता; इसे ठीक वैसे ही कोड किया जा सकता था जैसा वर्णित है, state का ट्रैक रखने के लिए एक केंद्रीकृत सर्वर की हार्ड ड्राइव का उपयोग करते हुए। हालांकि, Bitcoin के साथ हम एक विकेंद्रीकृत मुद्रा प्रणाली बनाने की कोशिश कर रहे हैं, इसलिए हमें state transaction system को एक consensus system के साथ जोड़ना होगा ताकि यह सुनिश्चित किया जा सके कि हर कोई transactions के क्रम पर सहमत हो। Bitcoin की विकेंद्रीकृत consensus प्रक्रिया के लिए नेटवर्क में नोड्स को लगातार transactions के पैकेज बनाने का प्रयास करने की आवश्यकता होती है जिन्हें "blocks" कहा जाता है। नेटवर्क का उद्देश्य लगभग हर दस मिनट में एक block का उत्पादन करना है, जिसमें प्रत्येक block में एक timestamp, एक nonce, पिछले block का संदर्भ (अर्थात hash), और पिछले block के बाद से हुए सभी transactions की सूची होती है।

Ethereum block structure showing linked blocks with timestamps nonces and transactions

समय के साथ, यह एक स्थायी, लगातार बढ़ता हुआ "blockchain" बनाता है जो Bitcoin लेजर की नवीनतम स्थिति का प्रतिनिधित्व करने के लिए लगातार अपडेट होता रहता है। यह जांचने का एल्गोरिदम कि क्या कोई block वैध है, इस प्रतिमान में निम्नानुसार है:

  1. जांचें कि block द्वारा संदर्भित पिछला block मौजूद है और वैध है।
  2. जांचें कि block का timestamp पिछले block के timestamp से अधिक है और भविष्य में 2 घंटे से कम है।
  3. जांचें कि block पर proof of work वैध है।
  4. मान लें S पिछले block के अंत में state है।
  5. मान लें TX block की transaction सूची है जिसमें n transactions हैं। 0...n-1 में सभी i के लिए, S = APPLY(S,TX[i]) सेट करें। यदि कोई भी अनुप्रयोग त्रुटि लौटाता है, बाहर निकलें और false लौटाएं।
  6. true लौटाएं, और S को इस block के अंत में state के रूप में पंजीकृत करें।

अनिवार्य रूप से, block में प्रत्येक transaction को एक वैध state transition प्रदान करना चाहिए उस state से जो transaction निष्पादित होने से पहले canonical state था किसी नए state तक। ध्यान दें कि state किसी भी तरह से block में एन्कोड नहीं है; यह पूरी तरह से एक अमूर्तता है जिसे validating node द्वारा याद रखा जाता है और किसी भी block के लिए केवल genesis state से शुरू करके और प्रत्येक block में प्रत्येक transaction को क्रमिक रूप से लागू करके (सुरक्षित रूप से) गणना की जा सकती है।

Miner को उनके कम्प्यूटेशनल कार्य के लिए नव-निर्मित bitcoins और transaction fees के साथ पुरस्कृत किया जाता है। Mining प्रक्रिया इस प्रकार काम करती है: miners block header लेते हैं और अलग-अलग nonce मूल्यों के साथ बार-बार hash करते हैं जब तक उन्हें एक hash नहीं मिल जाता जो एक निश्चित difficulty target से नीचे हो। जब कोई miner ऐसा hash पाता है, तो वे block को नेटवर्क में प्रसारित करते हैं, और अन्य नोड्स सत्यापित करते हैं कि hash वैध है और block में सभी transactions वैध हैं। Difficulty target को प्रोटोकॉल द्वारा प्रत्येक 2016 blocks (लगभग दो सप्ताह) में स्वचालित रूप से समायोजित किया जाता है ताकि blocks लगभग स्थिर दर पर उत्पादित हों।

ध्यान दें कि दीर्घकाल में, blockchain की सुरक्षा miners के ईमानदारी से व्यवहार करने के वित्तीय प्रोत्साहन पर निर्भर करती है। यदि कोई हमलावर नेटवर्क की mining शक्ति के 50% से अधिक को नियंत्रित करता है, तो वे संभावित रूप से एक वैकल्पिक blockchain बनाकर "51% attack" कर सकते हैं जो ईमानदार chain से तेजी से बढ़ती है। हालांकि, ऐसे हमले के लिए भारी कम्प्यूटेशनल संसाधनों की आवश्यकता होगी और संभवतः हमलावर के mining पुरस्कार बेकार हो जाएंगे क्योंकि नेटवर्क blockchain की अखंडता में विश्वास खो देगा।

Merkle Trees

Merkle trees are a fundamental data structure used in Bitcoin blocks to enable efficient and secure verification of transaction inclusion. A Merkle tree is a binary tree of hashes where the leaf nodes contain hashes of individual transactions, and each interior node contains the hash of its two children, recursively building up to a single root hash that is stored in the block-header/" class="glossary-link" data-slug="block-header" title="block header">block header. This hierarchical structure allows anyone to verify that a specific transaction is included in a block by downloading only the Merkle branch—the chain of hashes from the transaction up to the root—rather than downloading all transactions in the block.

Simplified Payment Verification using Merkle tree branch proofs for transaction verification

The efficiency gains are substantial: while a full Bitcoin node must store the entire blockchain (approximately 15GB as of 2013), a simplified payment verification (SPV) node only needs to download block headers containing Merkle roots, requiring just 4MB of data. To verify a transaction, an SPV node requests the Merkle branch from full nodes, which requires only \(O(\log n)\) data where \(n\) is the number of transactions in a block. This logarithmic scaling makes it feasible to run lightweight clients on mobile devices and low-resource environments.

Bitcoin's use of Merkle trees demonstrates a key principle: cryptographic structures can dramatically reduce the trust and resource requirements for participating in a decentralized network. This same principle underlies Ethereum's design, where Merkle trees are used not only for transactions but also for state and receipt storage, enabling even more sophisticated light client protocols.

Merkle Trees

Merkle trees एक मौलिक डेटा संरचना है जो Bitcoin blocks में transaction समावेश के कुशल और सुरक्षित सत्यापन को सक्षम करने के लिए उपयोग की जाती है। Merkle tree hashes का एक बाइनरी ट्री है जहां leaf nodes में व्यक्तिगत transactions के hash होते हैं, और प्रत्येक interior node में उसके दो बच्चों का hash होता है, जो पुनरावर्ती रूप से एक एकल root hash तक बनता है जो block header में संग्रहीत होता है। यह श्रेणीबद्ध संरचना किसी को भी यह सत्यापित करने की अनुमति देती है कि एक विशिष्ट transaction एक block में शामिल है, केवल Merkle branch डाउनलोड करके—transaction से root तक hashes की श्रृंखला—block में सभी transactions डाउनलोड करने के बजाय।

Simplified Payment Verification using Merkle tree branch proofs for transaction verification

दक्षता लाभ पर्याप्त हैं: जबकि एक पूर्ण Bitcoin node को संपूर्ण blockchain (2013 तक लगभग 15GB) संग्रहीत करना चाहिए, एक simplified payment verification (SPV) node को केवल Merkle roots वाले block headers डाउनलोड करने की आवश्यकता होती है, जिसके लिए केवल 4MB डेटा की आवश्यकता होती है। किसी transaction को सत्यापित करने के लिए, एक SPV node पूर्ण nodes से Merkle branch का अनुरोध करता है, जिसके लिए केवल O(log n) डेटा की आवश्यकता होती है जहां n block में transactions की संख्या है। यह logarithmic scaling मोबाइल उपकरणों और कम-संसाधन वातावरण पर लाइटवेट क्लाइंट चलाना संभव बनाती है।

Bitcoin का Merkle trees का उपयोग एक प्रमुख सिद्धांत को प्रदर्शित करता है: cryptographic संरचनाएं एक विकेंद्रीकृत नेटवर्क में भाग लेने के लिए विश्वास और संसाधन आवश्यकताओं को नाटकीय रूप से कम कर सकती हैं। यही सिद्धांत Ethereum के डिज़ाइन का आधार है, जहां Merkle trees का उपयोग न केवल transactions के लिए बल्कि state और receipt storage के लिए भी किया जाता है, जो और भी अधिक परिष्कृत light client प्रोटोकॉल को सक्षम करता है।

Alternative Blockchain Applications

The success of Bitcoin's blockchain inspired numerous attempts to extend the concept beyond simple currency. Namecoin, launched in 2010, was one of the earliest examples—a decentralized name registration database built on a blockchain, allowing users to register names in a distributed namespace that no central authority could censor or revoke. Colored coins emerged as a way to represent alternative assets on the Bitcoin blockchain by "tagging" specific transaction outputs to represent ownership of real-world assets, company shares, or other cryptocurrencies. Metacoins and meta-protocols like Mastercoin (later Omni) layered additional functionality on top of Bitcoin by encoding extra data in Bitcoin transactions and building separate protocol rules on top.

However, all these approaches suffered from fundamental limitations imposed by Bitcoin's architecture. The Bitcoin scripting language is intentionally restricted—it cannot access blockchain state, lacks loops and complex control flow, and provides limited introspection into transaction values. Building sophisticated applications required awkward workarounds: encoding metadata in transaction fields never intended for that purpose, relying on off-chain infrastructure for complex logic, or accepting severe limitations on what the protocol could accomplish.

These constraints motivated the search for a more general-purpose blockchain platform. Rather than building yet another special-purpose protocol on top of Bitcoin's limited foundation, Ethereum takes a different approach: providing a blockchain with a built-in Turing-complete programming language, allowing anyone to write smart contracts and decentralized applications with arbitrary rules for ownership, transaction formats, and state transition functions.

Alternative Blockchain Applications

Bitcoin के blockchain की सफलता ने अवधारणा को सरल मुद्रा से परे विस्तारित करने के कई प्रयासों को प्रेरित किया। Namecoin, 2010 में लॉन्च किया गया, सबसे शुरुआती उदाहरणों में से एक था—एक blockchain पर निर्मित विकेंद्रीकृत नाम पंजीकरण डेटाबेस, जो उपयोगकर्ताओं को एक वितरित namespace में नाम पंजीकृत करने की अनुमति देता था जिसे कोई केंद्रीय प्राधिकरण सेंसर या रद्द नहीं कर सकता था। Colored coins Bitcoin blockchain पर वैकल्पिक संपत्तियों का प्रतिनिधित्व करने के एक तरीके के रूप में उभरे, विशिष्ट transaction outputs को "टैग" करके वास्तविक-दुनिया की संपत्तियों, कंपनी शेयरों, या अन्य cryptocurrencies के स्वामित्व का प्रतिनिधित्व करते हुए। Metacoins और meta-protocols जैसे Mastercoin (बाद में Omni) ने Bitcoin transactions में अतिरिक्त डेटा एन्कोड करके और उसके ऊपर अलग प्रोटोकॉल नियम बनाकर Bitcoin के ऊपर अतिरिक्त कार्यक्षमता जोड़ी।

हालांकि, ये सभी दृष्टिकोण Bitcoin की वास्तुकला द्वारा लगाई गई मौलिक सीमाओं से ग्रस्त थे। Bitcoin स्क्रिप्टिंग भाषा जानबूझकर प्रतिबंधित है—यह blockchain state तक नहीं पहुंच सकती, लूप और जटिल control flow की कमी है, और transaction मूल्यों में सीमित introspection प्रदान करती है। परिष्कृत अनुप्रयोग बनाने के लिए अजीब समाधानों की आवश्यकता होती थी: metadata को transaction fields में एन्कोड करना जो उस उद्देश्य के लिए कभी नहीं बने थे, जटिल तर्क के लिए off-chain infrastructure पर निर्भर रहना, या प्रोटोकॉल क्या कर सकता है इसकी गंभीर सीमाओं को स्वीकार करना।

इन बाधाओं ने एक अधिक सामान्य-उद्देश्य blockchain प्लेटफॉर्म की खोज को प्रेरित किया। Bitcoin की सीमित नींव के ऊपर एक और विशेष-उद्देश्य प्रोटोकॉल बनाने के बजाय, Ethereum एक अलग दृष्टिकोण अपनाता है: एक अंतर्निहित Turing-complete प्रोग्रामिंग भाषा वाला blockchain प्रदान करना, जो किसी को भी smart contracts और विकेंद्रीकृत अनुप्रयोग लिखने की अनुमति देता है जिसमें स्वामित्व, transaction प्रारूपों, और state transition functions के लिए मनमाने नियम हों।

Scripting

Bitcoin Script, the language used to define spending conditions for Bitcoin transactions, is intentionally designed with severe limitations. It is not Turing-complete—most notably, it lacks loops and complex control flow structures. The language operates as a simple stack-based execution environment where operations push and pop values, evaluate cryptographic conditions, and ultimately return true or false to determine whether a transaction is valid. While this simplicity provides security benefits and makes formal analysis easier, it also makes many types of applications impossible to implement.

These limitations fall into three main categories. First, the lack of Turing-completeness prevents implementing complex state machines, decision trees, or any algorithm requiring iteration. Second, value-blindness means that scripts cannot specify fine-grained control over withdrawal amounts—a UTXO can only be spent in its entirety, with change sent to a new output. A script cannot, for example, limit withdrawals to a maximum of X per day while leaving the remainder locked. Third, the lack of blockchain state awareness means that UTXO are either spent or unspent with no intermediate states, making multi-stage contracts impossible to implement purely on-chain.

These constraints make sophisticated applications like decentralized autonomous organizations, savings wallets with withdrawal limits, decentralized exchanges, or prediction markets either impossible or require awkward off-chain mechanisms. An advanced financial contract might require access to market data, the ability to maintain internal state across multiple transactions, and complex conditional logic—none of which Bitcoin Script can provide. Ethereum removes these limitations by providing a Turing-complete language with full access to blockchain state.

Scripting

Bitcoin Script, Bitcoin transactions के लिए खर्च शर्तों को परिभाषित करने के लिए उपयोग की जाने वाली भाषा, जानबूझकर गंभीर सीमाओं के साथ डिज़ाइन की गई है। यह Turing-complete नहीं है—विशेष रूप से, इसमें लूप और जटिल control flow संरचनाओं की कमी है। भाषा एक सरल stack-based execution environment के रूप में काम करती है जहां ऑपरेशन मूल्यों को push और pop करते हैं, cryptographic शर्तों का मूल्यांकन करते हैं, और अंततः यह निर्धारित करने के लिए true या false लौटाते हैं कि कोई transaction वैध है या नहीं। हालांकि यह सरलता सुरक्षा लाभ प्रदान करती है और औपचारिक विश्लेषण को आसान बनाती है, यह कई प्रकार के अनुप्रयोगों को लागू करना असंभव भी बनाती है।

ये सीमाएं तीन मुख्य श्रेणियों में आती हैं। पहला, Turing-completeness की कमी जटिल state machines, decision trees, या पुनरावृत्ति की आवश्यकता वाले किसी भी एल्गोरिदम को लागू करने से रोकती है। दूसरा, value-blindness का मतलब है कि स्क्रिप्ट निकासी राशि पर सूक्ष्म नियंत्रण निर्दिष्ट नहीं कर सकती—एक UTXO केवल अपनी संपूर्णता में खर्च किया जा सकता है, शेष राशि एक नए output को भेजी जाती है। एक स्क्रिप्ट, उदाहरण के लिए, प्रति दिन अधिकतम X तक निकासी को सीमित नहीं कर सकती जबकि शेष राशि लॉक रहे। तीसरा, blockchain state जागरूकता की कमी का मतलब है कि UTXO या तो खर्च किए गए हैं या नहीं किए गए हैं बिना किसी मध्यवर्ती स्थिति के, जो बहु-चरण contracts को पूरी तरह से on-chain लागू करना असंभव बनाती है।

ये बाधाएं decentralized autonomous organizations, निकासी सीमाओं वाले बचत वॉलेट, विकेंद्रीकृत एक्सचेंज, या prediction markets जैसे परिष्कृत अनुप्रयोगों को या तो असंभव बनाती हैं या अजीब off-chain तंत्रों की आवश्यकता होती है। एक उन्नत वित्तीय contract को बाजार डेटा तक पहुंच, कई transactions में आंतरिक state बनाए रखने की क्षमता, और जटिल सशर्त तर्क की आवश्यकता हो सकती है—जिनमें से कोई भी Bitcoin Script प्रदान नहीं कर सकती। Ethereum blockchain state तक पूर्ण पहुंच के साथ एक Turing-complete भाषा प्रदान करके इन सीमाओं को हटाता है।

Ethereum

Ethereum's fundamental goal is to provide a blockchain with a built-in Turing-complete programming language that allows anyone to write smart contracts and decentralized applications where they can create their own arbitrary rules for ownership, transaction formats, and state transition functions. Rather than designing a protocol for specific applications like currency, name registration, or asset trading, Ethereum provides a foundational layer—a blockchain-based distributed computing platform that developers can use to build any application they can imagine.

The architecture differs fundamentally from Bitcoin's UTXO model. Ethereum uses an account-based system where the blockchain state consists of a mapping from addresses to account objects. Each account has a balance, a transaction counter (nonce), and for contract accounts, associated code and storage. The platform includes a built-in Turing-complete programming language for writing contract code that executes in the Ethereum Virtual Machine (EVM), a stack-based execution environment that processes transactions and state transitions.

This generality enables a vast range of applications: alternative cryptocurrencies with custom issuance rules, financial derivatives and stablecoins, identity and reputation systems, decentralized file storage, decentralized autonomous organizations (DAOs), and much more. The whitepaper emphasizes that Ethereum is not optimized for any particular use case but instead provides the fundamental building blocks—accounts, transactions, a Turing-complete language, and gas-metered execution—that developers can combine to create whatever applications the ecosystem demands.

Ethereum

Ethereum का मौलिक लक्ष्य एक अंतर्निहित Turing-complete प्रोग्रामिंग भाषा वाला blockchain प्रदान करना है जो किसी को भी smart contracts और विकेंद्रीकृत अनुप्रयोग लिखने की अनुमति देता है जहां वे स्वामित्व, transaction प्रारूपों, और state transition functions के लिए अपने स्वयं के मनमाने नियम बना सकते हैं। विशिष्ट अनुप्रयोगों जैसे मुद्रा, नाम पंजीकरण, या संपत्ति व्यापार के लिए एक प्रोटोकॉल डिज़ाइन करने के बजाय, Ethereum एक आधारभूत परत प्रदान करता है—एक blockchain-आधारित वितरित कंप्यूटिंग प्लेटफॉर्म जिसका उपयोग डेवलपर्स किसी भी अनुप्रयोग को बनाने के लिए कर सकते हैं जिसकी वे कल्पना कर सकते हैं।

वास्तुकला Bitcoin के UTXO मॉडल से मौलिक रूप से भिन्न है। Ethereum एक account-based system का उपयोग करता है जहां blockchain state addresses से account objects तक एक mapping से मिलकर बना होता है। प्रत्येक account में एक balance, एक transaction counter (nonce), और contract accounts के लिए, संबंधित code और storage होता है। प्लेटफॉर्म में contract code लिखने के लिए एक अंतर्निहित Turing-complete प्रोग्रामिंग भाषा शामिल है जो Ethereum Virtual Machine (EVM) में निष्पादित होती है, एक stack-based execution environment जो transactions और state transitions को प्रोसेस करता है।

यह सामान्यता अनुप्रयोगों की एक विशाल श्रेणी को सक्षम करती है: कस्टम जारी करने के नियमों वाली वैकल्पिक cryptocurrencies, वित्तीय derivatives और stablecoins, पहचान और प्रतिष्ठा प्रणालियां, विकेंद्रीकृत फ़ाइल स्टोरेज, decentralized autonomous organizations (DAOs), और बहुत कुछ। Whitepaper इस बात पर जोर देता है कि Ethereum किसी विशेष उपयोग के मामले के लिए अनुकूलित नहीं है बल्कि मौलिक बिल्डिंग ब्लॉक प्रदान करता है—accounts, transactions, एक Turing-complete भाषा, और gas-metered execution—जिन्हें डेवलपर्स जो भी अनुप्रयोग पारिस्थितिकी तंत्र की मांग करता है उसे बनाने के लिए जोड़ सकते हैं।

Ethereum Accounts

In Ethereum, the state is made up of accounts, and there are two fundamental types. Externally owned accounts (EOAs) are controlled by private keys and have no associated code—they represent human users or external entities interacting with the blockchain. Contract accounts are controlled by their contract code and are activated when they receive a message or transaction. Both types share a common structure: every account has a nonce (a counter used to ensure each transaction can only be processed once), an ether balance, and for contracts specifically, contract code and persistent storage.

Ether is the primary internal cryptocurrency of Ethereum, serving as both a medium of value transfer and the fundamental unit for paying transaction fees (gas). Unlike Bitcoin's UTXO model where value is distributed across multiple unspent outputs, Ethereum accounts maintain a simple balance that increases when they receive ether and decreases when they send it. This account-based model simplifies many types of applications, particularly those requiring persistent state or complex access control, though it introduces different security considerations compared to Bitcoin's approach.

The distinction between EOAs and contract accounts is crucial to understanding Ethereum's operation. EOAs can initiate transactions by creating and signing messages with their private keys, paying gas fees to have their transactions included in blocks. Contract accounts cannot initiate transactions themselves but can send messages to other contracts in response to receiving a transaction or message, enabling complex chains of execution where a single external transaction triggers multiple contract-to-contract interactions.

Ethereum Accounts

Ethereum में, state accounts से बना है, और दो मौलिक प्रकार हैं। Externally owned accounts (EOAs) private keys द्वारा नियंत्रित होते हैं और उनके पास कोई संबंधित code नहीं होता—वे blockchain के साथ बातचीत करने वाले मानव उपयोगकर्ताओं या बाहरी संस्थाओं का प्रतिनिधित्व करते हैं। Contract accounts उनके contract code द्वारा नियंत्रित होते हैं और जब वे कोई message या transaction प्राप्त करते हैं तब सक्रिय होते हैं। दोनों प्रकार एक सामान्य संरचना साझा करते हैं: प्रत्येक account में एक nonce (यह सुनिश्चित करने के लिए उपयोग किया जाने वाला काउंटर कि प्रत्येक transaction केवल एक बार प्रोसेस किया जा सके), एक ether balance, और contracts के लिए विशेष रूप से, contract code और स्थायी storage होता है।

Ether Ethereum की प्राथमिक आंतरिक cryptocurrency है, जो मूल्य हस्तांतरण के माध्यम और transaction fees (gas) का भुगतान करने की मौलिक इकाई दोनों के रूप में कार्य करती है। Bitcoin के UTXO मॉडल के विपरीत जहां मूल्य कई unspent outputs में वितरित होता है, Ethereum accounts एक सरल balance बनाए रखते हैं जो ether प्राप्त करने पर बढ़ता है और भेजने पर घटता है। यह account-based मॉडल कई प्रकार के अनुप्रयोगों को सरल बनाता है, विशेष रूप से जिन्हें स्थायी state या जटिल access control की आवश्यकता होती है, हालांकि यह Bitcoin के दृष्टिकोण की तुलना में अलग सुरक्षा विचार प्रस्तुत करता है।

EOAs और contract accounts के बीच का अंतर Ethereum के संचालन को समझने के लिए महत्वपूर्ण है। EOAs अपनी private keys के साथ messages बनाकर और हस्ताक्षर करके transactions शुरू कर सकते हैं, उनके transactions को blocks में शामिल करने के लिए gas fees का भुगतान करते हैं। Contract accounts स्वयं transactions शुरू नहीं कर सकते लेकिन किसी transaction या message प्राप्त करने के जवाब में अन्य contracts को messages भेज सकते हैं, जो निष्पादन की जटिल श्रृंखलाओं को सक्षम करते हैं जहां एक बाहरी transaction कई contract-to-contract interactions को ट्रिगर करता है।

Messages and Transactions

Transactions in Ethereum are signed data packages created by externally owned accounts and broadcast to the network. A transaction contains the recipient address, a cryptographic signature proving the sender's identity, the amount of ether to transfer, an optional data field (crucial for interacting with contracts), STARTGAS (the maximum number of computational steps the transaction is allowed to take), and GASPRICE (the fee per computational step the sender is willing to pay). Miners collect these transactions, validate them, execute them, and include them in blocks, receiving the gas fees as compensation.

Messages are conceptually similar to transactions but are produced by contracts rather than external actors. When a contract's code executes, it can send messages to other contracts—these internal messages contain the sender (the contract address), recipient, an amount of ether to transfer, an optional data payload, and a STARTGAS limit. Messages enable contract-to-contract communication, allowing complex applications to be built from multiple interacting contracts rather than monolithic programs.

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 out of gas before completing, all state changes are reverted (except the gas payment to the miner), preventing infinite loops or excessive computation from grinding the network to a halt. The sender specifies both the total gas budget (STARTGAS) and the price they're willing to pay per unit (GASPRICE), and any unused gas is refunded after execution completes.

Messages and Transactions

Ethereum में transactions externally owned accounts द्वारा बनाए गए और नेटवर्क में प्रसारित किए गए हस्ताक्षरित डेटा पैकेज हैं। एक transaction में प्राप्तकर्ता address, भेजने वाले की पहचान साबित करने वाला एक cryptographic signature, स्थानांतरित करने के लिए ether की मात्रा, एक वैकल्पिक data field (contracts के साथ बातचीत के लिए महत्वपूर्ण), STARTGAS (transaction को लेने की अनुमत अधिकतम कम्प्यूटेशनल चरणों की संख्या), और GASPRICE (प्रति कम्प्यूटेशनल चरण भेजने वाला जो शुल्क देने को तैयार है) होता है। Miners इन transactions को एकत्र करते हैं, उन्हें मान्य करते हैं, निष्पादित करते हैं, और blocks में शामिल करते हैं, मुआवजे के रूप में gas fees प्राप्त करते हैं।

Messages अवधारणात्मक रूप से transactions के समान हैं लेकिन बाहरी अभिनेताओं के बजाय contracts द्वारा उत्पादित होते हैं। जब किसी contract का code निष्पादित होता है, तो यह अन्य contracts को messages भेज सकता है—इन आंतरिक messages में भेजने वाला (contract address), प्राप्तकर्ता, स्थानांतरित करने के लिए ether की मात्रा, एक वैकल्पिक data payload, और एक STARTGAS सीमा होती है। Messages contract-to-contract संचार को सक्षम करते हैं, जो जटिल अनुप्रयोगों को मोनोलिथिक कार्यक्रमों के बजाय कई परस्पर क्रिया करने वाले contracts से बनाने की अनुमति देते हैं।

Gas तंत्र दुरुपयोग रोकने के लिए महत्वपूर्ण है: एक transaction में प्रत्येक कम्प्यूटेशनल चरण, storage ऑपरेशन, और data byte gas की खपत करता है। यदि कोई transaction पूरा होने से पहले gas समाप्त हो जाता है, तो सभी state परिवर्तन वापस कर दिए जाते हैं (miner को gas भुगतान को छोड़कर), जो अनंत लूप या अत्यधिक computation को नेटवर्क को रोकने से बचाता है। भेजने वाला कुल gas बजट (STARTGAS) और प्रति इकाई जो कीमत वे भुगतान करने को तैयार हैं (GASPRICE) दोनों निर्दिष्ट करता है, और निष्पादन पूरा होने के बाद कोई भी अप्रयुक्त gas वापस कर दिया जाता है।

Ethereum State Transition Function

The Ethereum state transition function APPLY(S,TX) - S' defines how a transaction transforms the blockchain state, and it follows a precise sequence of steps. First, the system checks transaction validity: verifying the signature is correct, confirming the nonce matches the sender's account nonce, and ensuring the sender has sufficient balance to pay the upfront cost (STARTGAS × GASPRICE plus the value being sent). If any check fails, the transaction is rejected before execution begins. If valid, the transaction fee is deducted from the sender's account, the sender's nonce is incremented, and an initial gas counter is set to STARTGAS minus a per-byte fee for the transaction data.

Ethereum state transition function showing gas deduction value transfer and code execution

Next, the system transfers the specified ether value from the sender to the recipient. If the recipient is an externally owned account, this completes the transaction. If the recipient is a contract account, the contract's code runs in the Ethereum Virtual Machine, consuming gas for each operation until either the code completes successfully, the code explicitly halts, 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 value transfer failed (insufficient balance) or code execution failed (running out of gas or hitting an error), all state changes are reverted—except that the sender still pays gas fees to the miner for the computation performed. If execution succeeded, the remaining gas is refunded to the sender, and the gas that was consumed is sent to the miner as a fee. This mechanism ensures that miners are compensated for computation while preventing runaway execution from consuming unbounded resources.

Ethereum State Transition Function

Ethereum state transition function APPLY(S,TX) - S' परिभाषित करता है कि कैसे एक transaction blockchain state को रूपांतरित करता है, और यह चरणों के एक सटीक अनुक्रम का पालन करता है। सबसे पहले, सिस्टम transaction की वैधता की जांच करता है: signature सही है यह सत्यापित करना, nonce भेजने वाले के account nonce से मेल खाता है यह पुष्टि करना, और भेजने वाले के पास अग्रिम लागत (STARTGAS x GASPRICE और भेजा जा रहा मूल्य) का भुगतान करने के लिए पर्याप्त balance है यह सुनिश्चित करना। यदि कोई भी जांच विफल होती है, तो transaction निष्पादन शुरू होने से पहले अस्वीकार कर दिया जाता है। यदि वैध है, तो transaction शुल्क भेजने वाले के account से काट लिया जाता है, भेजने वाले का nonce बढ़ाया जाता है, और एक प्रारंभिक gas counter STARTGAS माइनस transaction data के लिए प्रति-byte शुल्क पर सेट किया जाता है।

Ethereum state transition function showing gas deduction value transfer and code execution

इसके बाद, सिस्टम निर्दिष्ट ether मूल्य को भेजने वाले से प्राप्तकर्ता को स्थानांतरित करता है। यदि प्राप्तकर्ता एक externally owned account है, तो यह transaction को पूरा करता है। यदि प्राप्तकर्ता एक contract account है, तो contract का code Ethereum Virtual Machine में चलता है, प्रत्येक ऑपरेशन के लिए gas की खपत करते हुए जब तक या तो code सफलतापूर्वक पूरा नहीं हो जाता, code स्पष्ट रूप से रुक नहीं जाता, या gas समाप्त नहीं हो जाता। निष्पादन के दौरान, contract अपने storage को पढ़ और संशोधित कर सकता है, अन्य contracts को messages भेज सकता है, और नए contracts बना सकता है।

अंत में, यदि मूल्य स्थानांतरण विफल हो जाता है (अपर्याप्त balance) या code निष्पादन विफल हो जाता है (gas समाप्त होना या किसी त्रुटि से टकराना), तो सभी state परिवर्तन वापस कर दिए जाते हैं—सिवाय इसके कि भेजने वाला अभी भी किए गए computation के लिए miner को gas fees का भुगतान करता है। यदि निष्पादन सफल रहा, तो शेष gas भेजने वाले को वापस कर दिया जाता है, और जो gas खपत किया गया वह miner को शुल्क के रूप में भेजा जाता है। यह तंत्र सुनिश्चित करता है कि miners को computation के लिए मुआवजा दिया जाए जबकि भगोड़ा निष्पादन असीमित संसाधनों की खपत करने से रोका जाए।

Code Execution

The Ethereum Virtual Machine (EVM) is the runtime environment where contract code executes—a low-level, stack-based virtual machine similar in concept to the Java Virtual Machine or WebAssembly. Contract code is stored as a sequence of bytes, where each byte represents an operation (opcode) that the EVM can execute. The execution model is deliberately simple and deterministic: every node running the EVM with the same input state and transaction must arrive at the same output state, ensuring 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 1024 elements, used for immediate operation values. Memory is an infinitely expandable byte array that persists only for the duration of a single message call and is reset between executions. Storage is the persistent key-value store permanently associated with each account/" class="glossary-link" data-slug="contract-account" title="contract account">contract account, where contracts maintain their long-term state across transactions. These storage types are priced differently in gas—stack and memory operations are cheap, while storage operations are expensive to prevent blockchain bloat.

During execution, contract code has access to crucial context: it can read the message sender's address, the amount of ether sent, the data payload provided by the caller, and block-level properties like the current block number, timestamp, and miner address. The code can return an output byte array to the caller and can send messages to other contracts or create new contracts. This execution model is Turing-complete—loops and complex control flow are possible—but the gas mechanism ensures that all computation terminates in bounded time, solving the halting problem economically rather than through language restrictions.

Code Execution

Ethereum Virtual Machine (EVM) वह runtime environment है जहां contract code निष्पादित होता है—एक low-level, stack-based virtual machine जो अवधारणा में Java Virtual Machine या WebAssembly के समान है। Contract code bytes के एक अनुक्रम के रूप में संग्रहीत होता है, जहां प्रत्येक byte एक ऑपरेशन (opcode) का प्रतिनिधित्व करता है जिसे EVM निष्पादित कर सकता है। निष्पादन मॉडल जानबूझकर सरल और deterministic है: समान input state और transaction के साथ EVM चलाने वाले प्रत्येक node को समान output state पर पहुंचना चाहिए, जो नेटवर्क में consensus सुनिश्चित करता है।

EVM computation के लिए तीन अलग-अलग प्रकार के storage प्रदान करता है। Stack एक last-in-first-out (LIFO) संरचना है जो 1024 तत्वों तक सीमित है, तत्काल ऑपरेशन मूल्यों के लिए उपयोग की जाती है। Memory एक अनंत रूप से विस्तारणीय byte array है जो केवल एक message call की अवधि के लिए बनी रहती है और executions के बीच reset हो जाती है। Storage प्रत्येक contract account से स्थायी रूप से जुड़ा हुआ persistent key-value store है, जहां contracts transactions के पार अपनी दीर्घकालिक state बनाए रखते हैं। इन storage प्रकारों की gas में अलग-अलग कीमत होती है—stack और memory ऑपरेशन सस्ते हैं, जबकि storage ऑपरेशन blockchain bloat को रोकने के लिए महंगे हैं।

निष्पादन के दौरान, contract code के पास महत्वपूर्ण संदर्भ तक पहुंच होती है: यह message भेजने वाले का address, भेजी गई ether की मात्रा, कॉलर द्वारा प्रदान किया गया data payload, और block-level गुण जैसे वर्तमान block number, timestamp, और miner address पढ़ सकता है। Code कॉलर को एक output byte array लौटा सकता है और अन्य contracts को messages भेज सकता है या नए contracts बना सकता है। यह निष्पादन मॉडल Turing-complete है—लूप और जटिल control flow संभव हैं—लेकिन gas तंत्र सुनिश्चित करता है कि सभी computation सीमित समय में समाप्त हो, भाषा प्रतिबंधों के बजाय आर्थिक रूप से halting problem को हल करते हुए।

Blockchain and Mining

The Ethereum blockchain is fundamentally similar to Bitcoin's, serving as a database containing every transaction ever executed. However, while Bitcoin stores only a transaction list, Ethereum stores both the transaction list and the most recent state. Each block in Ethereum contains the previous block's hash, a state root (the root hash of the Patricia trie">Merkle Patricia trie representing the entire state), a transaction root, a receipt root (storing data from transaction execution), along with difficulty, timestamp, and nonce values. The state itself is a large Merkle Patricia trie mapping addresses to account objects, where each account has a balance, nonce, code (if present), and storage.

Ethereum APPLY BLOCK function processing transactions and updating state

Ethereum uses a modified version of the GHOST (Greedy Heaviest Observed Subtree) protocol to address security issues that arise from fast block times. In traditional longest-chain protocols, fast blocks lead to high stale rates, reducing network security and increasing centralization risks as large miners waste less computation on stales. GHOST includes stale blocks (called "uncles" in Ethereum) in the calculation of which chain is longest, and provides partial rewards to uncle blocks, incentivizing miners to reference them. This allows Ethereum to maintain a target block time of approximately 12 seconds while preserving network security.

The mining algorithm works similarly to Bitcoin's proof-of-work, requiring miners to find a nonce such that the hash of the block is below a certain difficulty target. However, Ethereum's memory-hard mining algorithm (Ethash) is designed to be ASIC-resistant, promoting a more decentralized mining ecosystem. The difficulty adjusts dynamically based on block times to maintain the ~12 second target, ensuring consistent block production while the GHOST protocol provides security guarantees despite the faster block times compared to Bitcoin's 10-minute average.

Blockchain and Mining

Ethereum blockchain मौलिक रूप से Bitcoin के समान है, जो कभी निष्पादित हुए प्रत्येक transaction को रखने वाले डेटाबेस के रूप में कार्य करता है। हालांकि, जबकि Bitcoin केवल एक transaction सूची संग्रहीत करता है, Ethereum transaction सूची और सबसे हालिया state दोनों को संग्रहीत करता है। Ethereum में प्रत्येक block में पिछले block का hash, एक state root (संपूर्ण state का प्रतिनिधित्व करने वाले Merkle Patricia trie का root hash), एक transaction root, एक receipt root (transaction निष्पादन से डेटा संग्रहीत करने वाला), difficulty, timestamp, और nonce मान होते हैं। State स्वयं एक बड़ा Merkle Patricia trie है जो addresses को account objects से मैप करता है, जहां प्रत्येक account में balance, nonce, code (यदि मौजूद हो), और storage होता है।

Ethereum APPLY BLOCK function processing transactions and updating state

Ethereum तेज block समय से उत्पन्न होने वाली सुरक्षा समस्याओं को संबोधित करने के लिए GHOST (Greedy Heaviest Observed Subtree) प्रोटोकॉल के एक संशोधित संस्करण का उपयोग करता है। पारंपरिक longest-chain प्रोटोकॉल में, तेज blocks उच्च stale दरों की ओर ले जाते हैं, जो नेटवर्क सुरक्षा को कम करते हैं और केंद्रीकरण जोखिम बढ़ाते हैं क्योंकि बड़े miners stales पर कम computation बर्बाद करते हैं। GHOST stale blocks (Ethereum में "uncles" कहे जाते हैं) को सबसे लंबी chain की गणना में शामिल करता है, और uncle blocks को आंशिक पुरस्कार प्रदान करता है, miners को उन्हें संदर्भित करने के लिए प्रोत्साहित करता है। यह Ethereum को नेटवर्क सुरक्षा बनाए रखते हुए लगभग 12 सेकंड का लक्ष्य block समय बनाए रखने की अनुमति देता है।

Mining एल्गोरिदम Bitcoin के proof-of-work के समान काम करता है, miners को एक nonce खोजने की आवश्यकता होती है ताकि block का hash एक निश्चित difficulty target से नीचे हो। हालांकि, Ethereum का memory-hard mining एल्गोरिदम (Ethash) ASIC-resistant होने के लिए डिज़ाइन किया गया है, जो एक अधिक विकेंद्रीकृत mining पारिस्थितिकी तंत्र को बढ़ावा देता है। Difficulty block समय के आधार पर गतिशील रूप से समायोजित होती है ताकि ~12 सेकंड का लक्ष्य बनाए रखा जा सके, जो Bitcoin के 10-मिनट के औसत की तुलना में तेज block समय के बावजूद GHOST प्रोटोकॉल सुरक्षा गारंटी प्रदान करते हुए सुसंगत block उत्पादन सुनिश्चित करता है।

Applications

The applications that can be built on Ethereum fall into three broad categories. The first category is financial applications, providing users with more powerful ways to manage and enter contracts involving their money. This includes sub-currencies, financial derivatives, hedging contracts, savings wallets with withdrawal limits, wills that distribute funds automatically, and even employment contracts that calculate payment based on verified work completion. These applications leverage Ethereum's programmability to create complex financial instruments that would be impossible or extremely difficult to implement in traditional systems or even on Bitcoin.

The second category is semi-financial applications, where money is involved but there is also a substantial non-monetary component to what is being done. A perfect example is self-enforcing bounties for solutions to computational problems. Someone could post a computational problem along with a reward, and the contract could automatically verify submitted solutions and pay out the bounty to the first correct answer. This category bridges pure finance and other domains, using economic incentives to solve problems or coordinate behavior.

The third category is applications that have nothing to do with money at all, such as online voting and decentralized governance systems. These non-financial applications demonstrate Ethereum's flexibility as a general-purpose platform. Examples include decentralized domain name systems like Namecoin, reputation systems, decentralized file storage, and organizational governance tools. Of all these application types, token systems have emerged as the most common and fundamental, serving as building blocks for many other applications.

Applications

Ethereum पर बनाए जा सकने वाले अनुप्रयोग तीन व्यापक श्रेणियों में आते हैं। पहली श्रेणी वित्तीय अनुप्रयोग है, जो उपयोगकर्ताओं को उनके धन से जुड़े contracts में प्रवेश करने और प्रबंधित करने के अधिक शक्तिशाली तरीके प्रदान करती है। इसमें उप-मुद्राएं, वित्तीय derivatives, hedging contracts, निकासी सीमाओं वाले बचत वॉलेट, स्वचालित रूप से धन वितरित करने वाली वसीयत, और यहां तक कि सत्यापित कार्य पूर्णता के आधार पर भुगतान की गणना करने वाले रोजगार contracts शामिल हैं। ये अनुप्रयोग जटिल वित्तीय साधन बनाने के लिए Ethereum की प्रोग्रामेबिलिटी का लाभ उठाते हैं जो पारंपरिक प्रणालियों या Bitcoin पर भी लागू करना असंभव या अत्यंत कठिन होगा।

दूसरी श्रेणी अर्ध-वित्तीय अनुप्रयोग है, जहां धन शामिल है लेकिन जो किया जा रहा है उसमें एक पर्याप्त गैर-मौद्रिक घटक भी है। एक आदर्श उदाहरण कम्प्यूटेशनल समस्याओं के समाधान के लिए स्व-प्रवर्तित इनाम है। कोई व्यक्ति इनाम के साथ एक कम्प्यूटेशनल समस्या पोस्ट कर सकता है, और contract स्वचालित रूप से प्रस्तुत समाधानों को सत्यापित कर सकता है और पहले सही उत्तर को इनाम का भुगतान कर सकता है। यह श्रेणी शुद्ध वित्त और अन्य क्षेत्रों के बीच पुल बनाती है, समस्याओं को हल करने या व्यवहार को समन्वित करने के लिए आर्थिक प्रोत्साहनों का उपयोग करती है।

तीसरी श्रेणी ऐसे अनुप्रयोग हैं जिनका धन से कोई संबंध नहीं है, जैसे ऑनलाइन मतदान और विकेंद्रीकृत शासन प्रणालियां। ये गैर-वित्तीय अनुप्रयोग एक सामान्य-उद्देश्य प्लेटफॉर्म के रूप में Ethereum की लचीलापन प्रदर्शित करते हैं। उदाहरणों में Namecoin जैसी विकेंद्रीकृत डोमेन नाम प्रणालियां, प्रतिष्ठा प्रणालियां, विकेंद्रीकृत फ़ाइल स्टोरेज, और संगठनात्मक शासन उपकरण शामिल हैं। इन सभी अनुप्रयोग प्रकारों में, token systems सबसे आम और मौलिक के रूप में उभरे हैं, जो कई अन्य अनुप्रयोगों के लिए बिल्डिंग ब्लॉक के रूप में कार्य करते हैं।

Token Systems

Token systems are surprisingly straightforward to implement on Ethereum, despite being one of the most powerful and common applications. At their core, token systems are simply a database with a single operation: subtract X units from account A and add X units to account B, with the condition that A had at least X units before the transaction and the transaction is authorized by A. The implementation requires maintaining a mapping of addresses to balances and providing a transfer function that performs the appropriate checks before moving tokens between accounts.

The contract code for a basic token system is remarkably simple and can be written in just a few lines. It consists of a data structure mapping addresses to balances, an initialization function that assigns initial token supply, and a transfer function that checks the sender's balance and authorization before executing the transfer. This simplicity stands in stark contrast to the complexity required to implement similar systems on Bitcoin, which would require significant workarounds and limitations due to Bitcoin's restricted scripting capabilities.

Tokens on Ethereum can represent virtually anything of value. They might represent sub-currencies with their own monetary policies, financial derivatives tracking external assets, company shares with dividend rights, loyalty points in customer programs, commodities like gold or oil, or even representations of physical property. The programmability of Ethereum allows these tokens to have arbitrary rules governing their behavior, such as transfer restrictions, automatic burning mechanisms, dividend distributions, or governance rights. This flexibility has made token systems the foundational building block for much of the Ethereum ecosystem.

Token Systems

Token systems Ethereum पर लागू करने में आश्चर्यजनक रूप से सरल हैं, सबसे शक्तिशाली और आम अनुप्रयोगों में से एक होने के बावजूद। अपने मूल में, token systems बस एक डेटाबेस हैं जिसमें एक एकल ऑपरेशन है: account A से X इकाइयां घटाएं और account B में X इकाइयां जोड़ें, इस शर्त के साथ कि transaction से पहले A के पास कम से कम X इकाइयां थीं और transaction A द्वारा अधिकृत है। कार्यान्वयन के लिए addresses से balances तक एक mapping बनाए रखना और एक transfer function प्रदान करना आवश्यक है जो accounts के बीच tokens स्थानांतरित करने से पहले उचित जांच करता है।

एक बुनियादी token system के लिए contract code उल्लेखनीय रूप से सरल है और कुछ ही पंक्तियों में लिखा जा सकता है। इसमें addresses को balances से मैप करने वाली डेटा संरचना, प्रारंभिक token supply आवंटित करने वाला एक initialization function, और transfer निष्पादित करने से पहले भेजने वाले के balance और authorization की जांच करने वाला एक transfer function शामिल है। यह सरलता Bitcoin पर समान प्रणालियों को लागू करने के लिए आवश्यक जटिलता के विपरीत है, जिसके लिए Bitcoin की प्रतिबंधित स्क्रिप्टिंग क्षमताओं के कारण महत्वपूर्ण समाधानों और सीमाओं की आवश्यकता होगी।

Ethereum पर tokens वस्तुतः मूल्य की किसी भी चीज़ का प्रतिनिधित्व कर सकते हैं। वे अपनी मौद्रिक नीतियों वाली उप-मुद्राओं, बाहरी संपत्तियों को ट्रैक करने वाले वित्तीय derivatives, लाभांश अधिकारों वाले कंपनी शेयरों, ग्राहक कार्यक्रमों में loyalty points, सोने या तेल जैसी वस्तुओं, या यहां तक कि भौतिक संपत्ति के प्रतिनिधित्व का प्रतिनिधित्व कर सकते हैं। Ethereum की प्रोग्रामेबिलिटी इन tokens को उनके व्यवहार को नियंत्रित करने वाले मनमाने नियम रखने की अनुमति देती है, जैसे transfer प्रतिबंध, स्वचालित burning तंत्र, लाभांश वितरण, या शासन अधिकार। इस लचीलेपन ने token systems को Ethereum पारिस्थितिकी तंत्र के अधिकांश भाग का मूलभूत बिल्डिंग ब्लॉक बना दिया है।

Financial Derivatives and Stable-Value Currencies

Financial derivatives represent one of the most fundamental and important applications of Ethereum smart contracts. A simple hedging contract demonstrates the basic mechanism: party A deposits a certain amount of ether worth \(1000, party B deposits an equivalent amount, and the contract records the USD value of ether at that moment using a data feed. After 30 days, the contract recalculates the value and sends ether worth \)1000 to A and the remainder to B. If the price of ether has risen, A receives fewer ether but maintains $1000 value; if it has fallen, A receives more ether to maintain that value. This allows A to hedge against volatility while B speculates on price movements.

The implementation of such contracts requires access to external data through oracle contracts or data feeds. These oracles provide price information, weather data, or other real-world information that contracts need to execute properly. While oracles introduce a trust dependency, they can be designed with redundancy and cryptoeconomic incentives to provide reliable data. The contract itself simply queries the oracle, performs calculations based on that data, and distributes funds according to its programmed logic.

Stablecoins and more complex financial instruments can be built using similar mechanisms. A stablecoin contract might maintain a reserve of ether and issue tokens pegged to a fiat currency, automatically adjusting supply or collateral requirements based on price feeds. Options contracts, futures, swaps, and other derivatives that would normally require complex legal frameworks and trusted intermediaries can instead be encoded as self-executing smart contracts. This programmable finance infrastructure enables sophisticated financial engineering while maintaining the transparency and security guarantees of blockchain technology.

Financial Derivatives and Stable-Value Currencies

वित्तीय derivatives Ethereum smart contracts के सबसे मौलिक और महत्वपूर्ण अनुप्रयोगों में से एक का प्रतिनिधित्व करते हैं। एक सरल hedging contract बुनियादी तंत्र को प्रदर्शित करता है: पक्ष A \(1000 मूल्य की एक निश्चित मात्रा में ether जमा करता है, पक्ष B समतुल्य राशि जमा करता है, और contract एक data feed का उपयोग करके उस समय ether का USD मूल्य दर्ज करता है। 30 दिनों के बाद, contract मूल्य की पुनर्गणना करता है और A को \)1000 मूल्य का ether भेजता है और शेष B को भेजता है। यदि ether की कीमत बढ़ी है, तो A को कम ether मिलता है लेकिन $1000 मूल्य बनाए रखता है; यदि गिरी है, तो A को उस मूल्य को बनाए रखने के लिए अधिक ether मिलता है। यह A को अस्थिरता के खिलाफ hedge करने की अनुमति देता है जबकि B मूल्य आंदोलनों पर अटकलें लगाता है।

ऐसे contracts के कार्यान्वयन के लिए oracle contracts या data feeds के माध्यम से बाहरी डेटा तक पहुंच की आवश्यकता होती है। ये oracles मूल्य जानकारी, मौसम डेटा, या अन्य वास्तविक-दुनिया की जानकारी प्रदान करते हैं जो contracts को ठीक से निष्पादित करने के लिए चाहिए। जबकि oracles एक विश्वास निर्भरता प्रस्तुत करते हैं, उन्हें विश्वसनीय डेटा प्रदान करने के लिए अतिरेक और cryptoeconomic प्रोत्साहनों के साथ डिज़ाइन किया जा सकता है। Contract स्वयं बस oracle से क्वेरी करता है, उस डेटा के आधार पर गणना करता है, और अपने प्रोग्राम किए गए तर्क के अनुसार धन वितरित करता है।

Stablecoins और अधिक जटिल वित्तीय साधन समान तंत्रों का उपयोग करके बनाए जा सकते हैं। एक stablecoin contract ether का भंडार बनाए रख सकता है और fiat मुद्रा से जुड़े tokens जारी कर सकता है, मूल्य feeds के आधार पर supply या collateral आवश्यकताओं को स्वचालित रूप से समायोजित करते हुए। Options contracts, futures, swaps, और अन्य derivatives जिन्हें सामान्यतः जटिल कानूनी ढांचों और विश्वसनीय मध्यस्थों की आवश्यकता होती है, उन्हें इसके बजाय स्व-निष्पादन smart contracts के रूप में एन्कोड किया जा सकता है। यह प्रोग्रामेबल वित्त अवसंरचना blockchain प्रौद्योगिकी की पारदर्शिता और सुरक्षा गारंटियों को बनाए रखते हुए परिष्कृत वित्तीय इंजीनियरिंग को सक्षम करती है।

Identity and Reputation Systems

A name registration system similar to Namecoin is trivially implementable on Ethereum and serves as the simplest example of an identity system. The contract maintains a database with a key-value table mapping names to associated data (such as IP addresses, public keys, or other information). Anyone can register a name by sending a transaction to the contract along with a small registration fee, provided that name is not already taken. The owner can update the associated data at any time, and names can be made transferable or permanent according to the rules encoded in the contract.

More advanced identity systems can be built on this foundation to include reputation scores, web of trust relationships, and decentralized identity verification. For example, a contract could maintain reputation scores based on verified transactions, peer ratings, or completion of tasks. These scores would be publicly visible and cryptographically tied to specific addresses, creating a portable reputation that follows users across applications. Web of trust systems could allow users to vouch for others' identities, building social graphs that help distinguish legitimate users from bad actors.

Such identity and reputation systems become particularly powerful when integrated with other applications. A marketplace could require minimum reputation scores for sellers, a loan platform could adjust interest rates based on borrower reputation, or a social network could use web of trust to filter spam and fraudulent content. By providing a shared infrastructure for identity that any application can query, Ethereum enables a new class of trust-based applications that don't rely on centralized identity providers or proprietary reputation systems.

Identity and Reputation Systems

Namecoin के समान एक नाम पंजीकरण प्रणाली Ethereum पर सरलता से लागू की जा सकती है और एक पहचान प्रणाली का सबसे सरल उदाहरण है। Contract एक key-value table के साथ एक डेटाबेस बनाए रखता है जो नामों को संबंधित डेटा (जैसे IP addresses, public keys, या अन्य जानकारी) से मैप करता है। कोई भी व्यक्ति एक छोटे पंजीकरण शुल्क के साथ contract को एक transaction भेजकर एक नाम पंजीकृत कर सकता है, बशर्ते वह नाम पहले से लिया न गया हो। स्वामी किसी भी समय संबंधित डेटा को अपडेट कर सकता है, और contract में एन्कोड किए गए नियमों के अनुसार नामों को हस्तांतरणीय या स्थायी बनाया जा सकता है।

अधिक उन्नत पहचान प्रणालियां इस नींव पर प्रतिष्ठा स्कोर, web of trust संबंधों, और विकेंद्रीकृत पहचान सत्यापन को शामिल करने के लिए बनाई जा सकती हैं। उदाहरण के लिए, एक contract सत्यापित transactions, सहकर्मी रेटिंग, या कार्यों के पूर्ण होने के आधार पर प्रतिष्ठा स्कोर बनाए रख सकता है। ये स्कोर सार्वजनिक रूप से दृश्य होंगे और cryptographically विशिष्ट addresses से जुड़े होंगे, जो एक पोर्टेबल प्रतिष्ठा बनाते हैं जो अनुप्रयोगों में उपयोगकर्ताओं का अनुसरण करती है। Web of trust प्रणालियां उपयोगकर्ताओं को दूसरों की पहचान की पुष्टि करने की अनुमति दे सकती हैं, सामाजिक ग्राफ बनाते हुए जो वैध उपयोगकर्ताओं को बुरे अभिनेताओं से अलग करने में मदद करते हैं।

ऐसी पहचान और प्रतिष्ठा प्रणालियां अन्य अनुप्रयोगों के साथ एकीकृत होने पर विशेष रूप से शक्तिशाली हो जाती हैं। एक marketplace विक्रेताओं के लिए न्यूनतम प्रतिष्ठा स्कोर की आवश्यकता कर सकता है, एक ऋण प्लेटफॉर्म उधारकर्ता की प्रतिष्ठा के आधार पर ब्याज दरों को समायोजित कर सकता है, या एक सोशल नेटवर्क स्पैम और धोखाधड़ी सामग्री को फ़िल्टर करने के लिए web of trust का उपयोग कर सकता है। एक साझा पहचान अवसंरचना प्रदान करके जिसे कोई भी अनुप्रयोग क्वेरी कर सकता है, Ethereum विश्वास-आधारित अनुप्रयोगों का एक नया वर्ग सक्षम करता है जो केंद्रीकृत पहचान प्रदाताओं या मालिकाना प्रतिष्ठा प्रणालियों पर निर्भर नहीं करता।

Decentralized File Storage

Decentralized file storage can be implemented through Ethereum contracts that coordinate between users who need storage and providers who offer it. In a "decentralized Dropbox" model, users would pay a monthly fee to upload files, with the contract distributing payments to storage providers who prove they are actually storing the data. The proof mechanism works through periodic cryptographic challenges: the contract randomly selects portions of files and asks providers to supply Merkle tree proofs demonstrating they possess that data. Providers who fail challenges or go offline would lose their deposits and future payment stream.

This approach offers several advantages over centralized storage. Merkle tree proofs enable efficient verification—users and the contract can confirm file availability without downloading entire files. The system naturally distributes files across multiple independent providers, creating redundancy without requiring explicit replication protocols. Economic incentives align provider behavior with user needs: providers earn money by reliably storing data and lose money if they fail to do so. This eliminates the trust requirement inherent in centralized storage solutions.

Storage costs in such a system can potentially be lower than centralized alternatives for several reasons. The elimination of monopoly pricing allows market competition to drive costs down to near the actual cost of storage. Implicit redundancy from multiple users storing similar files can reduce total storage requirements. There's no need for expensive data center infrastructure or corporate overhead. However, challenges remain around payment mechanisms, ensuring adequate provider participation, and managing the tradeoff between redundancy and cost. Despite these challenges, decentralized storage demonstrates how Ethereum can coordinate complex multi-party interactions through economic incentives alone.

Decentralized File Storage

विकेंद्रीकृत फ़ाइल स्टोरेज को Ethereum contracts के माध्यम से लागू किया जा सकता है जो storage की आवश्यकता वाले उपयोगकर्ताओं और इसे प्रदान करने वाले प्रदाताओं के बीच समन्वय करते हैं। एक "विकेंद्रीकृत Dropbox" मॉडल में, उपयोगकर्ता फ़ाइलें अपलोड करने के लिए मासिक शुल्क का भुगतान करेंगे, contract storage प्रदाताओं को भुगतान वितरित करेगा जो साबित करते हैं कि वे वास्तव में डेटा संग्रहीत कर रहे हैं। प्रमाण तंत्र आवधिक cryptographic चुनौतियों के माध्यम से काम करता है: contract यादृच्छिक रूप से फ़ाइलों के भागों का चयन करता है और प्रदाताओं से Merkle tree proofs प्रदान करने के लिए कहता है जो प्रदर्शित करते हैं कि उनके पास वह डेटा है। जो प्रदाता चुनौतियों में विफल होते हैं या ऑफ़लाइन हो जाते हैं वे अपनी जमा राशि और भविष्य की भुगतान धारा खो देंगे।

यह दृष्टिकोण केंद्रीकृत storage पर कई फायदे प्रदान करता है। Merkle tree proofs कुशल सत्यापन सक्षम करते हैं—उपयोगकर्ता और contract पूरी फ़ाइलें डाउनलोड किए बिना फ़ाइल उपलब्धता की पुष्टि कर सकते हैं। सिस्टम स्वाभाविक रूप से कई स्वतंत्र प्रदाताओं में फ़ाइलें वितरित करता है, स्पष्ट replication प्रोटोकॉल की आवश्यकता के बिना redundancy बनाता है। आर्थिक प्रोत्साहन प्रदाता व्यवहार को उपयोगकर्ता आवश्यकताओं के साथ संरेखित करते हैं: प्रदाता विश्वसनीय रूप से डेटा संग्रहीत करके पैसा कमाते हैं और ऐसा करने में विफल होने पर पैसा खोते हैं। यह केंद्रीकृत storage समाधानों में अंतर्निहित विश्वास आवश्यकता को समाप्त करता है।

ऐसी प्रणाली में storage लागत कई कारणों से केंद्रीकृत विकल्पों से संभावित रूप से कम हो सकती है। एकाधिकार मूल्य निर्धारण का उन्मूलन बाजार प्रतिस्पर्धा को लागत को storage की वास्तविक लागत के करीब ले जाने की अनुमति देता है। समान फ़ाइलें संग्रहीत करने वाले कई उपयोगकर्ताओं से अंतर्निहित redundancy कुल storage आवश्यकताओं को कम कर सकती है। महंगी data center अवसंरचना या कॉर्पोरेट overhead की कोई आवश्यकता नहीं है। हालांकि, भुगतान तंत्र, पर्याप्त प्रदाता भागीदारी सुनिश्चित करने, और redundancy और लागत के बीच संतुलन प्रबंधित करने के आसपास चुनौतियां बनी हुई हैं। इन चुनौतियों के बावजूद, विकेंद्रीकृत storage प्रदर्शित करता है कि कैसे Ethereum केवल आर्थिक प्रोत्साहनों के माध्यम से जटिल बहु-पक्षीय बातचीत को समन्वित कर सकता है।

Decentralized Autonomous Organizations

A Decentralized Autonomous Organization (DAO) is a virtual entity that has a set of members or shareholders who collectively have the right to spend the entity's funds and modify its code. A typical DAO operates with a simple rule: 67% of members are needed to make spending decisions or modify the organization's code. Members can submit proposals, vote on them, and if a proposal receives sufficient support, the contract automatically executes the decision. Membership shares can be transferable, allowing a liquid market for DAO participation, and different classes of shares can have different voting rights or economic claims.

The simplest DAO design is a self-modifying contract that maintains a list of members and requires a 2/3 majority vote to change any aspect of the contract, including its own voting rules. Members would submit code changes as transactions, other members would vote, and upon reaching the threshold, the contract would update itself. More sophisticated designs might include delegated voting systems where members can assign their voting power to representatives, or liquid democracy where votes can be delegated but reclaimed at any time for important decisions.

DAOs can serve various purposes beyond simple fund management. A DAO could function as a decentralized corporation, hiring contractors, purchasing services, and distributing profits to shareholders—all governed by smart contract code rather than traditional legal structures. It could operate as a decentralized investment fund, with members voting on which projects to fund. It could manage a commons resource, with stakeholders voting on allocation rules. The key insight is that by encoding governance rules in transparent, immutable code and tying them to economic stake, DAOs can coordinate group decisions without requiring traditional hierarchical management or legal enforcement.

Decentralized Autonomous Organizations

एक Decentralized Autonomous Organization (DAO) एक आभासी इकाई है जिसके सदस्यों या शेयरधारकों का एक समूह होता है जो सामूहिक रूप से इकाई के धन को खर्च करने और उसके code को संशोधित करने का अधिकार रखते हैं। एक विशिष्ट DAO एक सरल नियम के साथ संचालित होता है: खर्च निर्णय लेने या संगठन के code को संशोधित करने के लिए 67% सदस्यों की आवश्यकता होती है। सदस्य प्रस्ताव प्रस्तुत कर सकते हैं, उन पर मतदान कर सकते हैं, और यदि किसी प्रस्ताव को पर्याप्त समर्थन मिलता है, तो contract स्वचालित रूप से निर्णय को निष्पादित करता है। सदस्यता शेयर हस्तांतरणीय हो सकते हैं, DAO भागीदारी के लिए एक तरल बाजार की अनुमति देते हुए, और शेयरों के विभिन्न वर्गों में अलग-अलग मतदान अधिकार या आर्थिक दावे हो सकते हैं।

सबसे सरल DAO डिज़ाइन एक स्व-संशोधित contract है जो सदस्यों की एक सूची बनाए रखता है और contract के किसी भी पहलू को बदलने के लिए 2/3 बहुमत मतदान की आवश्यकता होती है, जिसमें इसके अपने मतदान नियम भी शामिल हैं। सदस्य transactions के रूप में code परिवर्तन प्रस्तुत करेंगे, अन्य सदस्य मतदान करेंगे, और threshold तक पहुंचने पर, contract स्वयं को अपडेट करेगा। अधिक परिष्कृत डिज़ाइन में प्रत्यायोजित मतदान प्रणालियां शामिल हो सकती हैं जहां सदस्य अपनी मतदान शक्ति प्रतिनिधियों को सौंप सकते हैं, या liquid democracy जहां मतों को प्रत्यायोजित किया जा सकता है लेकिन महत्वपूर्ण निर्णयों के लिए किसी भी समय वापस लिया जा सकता है।

DAOs सरल धन प्रबंधन से परे विभिन्न उद्देश्यों की सेवा कर सकते हैं। एक DAO एक विकेंद्रीकृत निगम के रूप में कार्य कर सकता है, ठेकेदारों को काम पर रखना, सेवाएं खरीदना, और शेयरधारकों को लाभ वितरित करना—सब पारंपरिक कानूनी संरचनाओं के बजाय smart contract code द्वारा शासित। यह एक विकेंद्रीकृत निवेश कोष के रूप में संचालित हो सकता है, सदस्य मतदान करते हैं कि किन परियोजनाओं को वित्तपोषित किया जाए। यह एक सामान्य संसाधन का प्रबंधन कर सकता है, हितधारक आवंटन नियमों पर मतदान करते हुए। मुख्य अंतर्दृष्टि यह है कि शासन नियमों को पारदर्शी, अपरिवर्तनीय code में एन्कोड करके और उन्हें आर्थिक हिस्सेदारी से जोड़कर, DAOs पारंपरिक श्रेणीबद्ध प्रबंधन या कानूनी प्रवर्तन की आवश्यकता के बिना समूह निर्णयों को समन्वित कर सकते हैं।

Further Applications

Beyond the major categories already discussed, Ethereum enables numerous other applications. Savings wallets with sophisticated security features can impose daily withdrawal limits while providing emergency keys for recovery, protecting users from theft while maintaining ultimate control. Crop insurance contracts can automatically pay farmers based on weather data feeds, eliminating claims processing and reducing administrative overhead. Peer-to-peer gambling applications can operate without any trusted intermediary, with smart contracts holding stakes and automatically paying winners based on verifiable random numbers or real-world event data.

On-chain prediction markets allow users to bet on future events, creating powerful forecasting mechanisms through the wisdom of crowds. These can be augmented with SchellingCoin-style protocols to create decentralized oracles: participants independently report data (like election results or weather conditions), and those whose reports match the majority receive rewards while outliers are penalized. This cryptoeconomic approach incentivizes honest reporting and can provide reliable real-world data to other contracts without requiring trust in any single oracle provider.

Multi-signature wallets represent another important application, enabling shared control of funds between multiple parties. A 2-of-3 multi-sig wallet might require any two of three designated parties to approve a transaction before funds can be spent, useful for escrow arrangements, corporate treasuries, or personal security. Decentralized marketplaces can combine identity systems, reputation scores, escrow contracts, and dispute resolution mechanisms to enable peer-to-peer commerce without centralized platforms. Each of these applications demonstrates how Ethereum's programmability enables new trust models and organizational structures.

Further Applications

पहले से चर्चित प्रमुख श्रेणियों के अलावा, Ethereum कई अन्य अनुप्रयोगों को सक्षम करता है। परिष्कृत सुरक्षा सुविधाओं वाले बचत वॉलेट दैनिक निकासी सीमा लगा सकते हैं जबकि पुनर्प्राप्ति के लिए आपातकालीन keys प्रदान करते हैं, चोरी से सुरक्षा करते हुए अंतिम नियंत्रण बनाए रखते हैं। फसल बीमा contracts मौसम data feeds के आधार पर स्वचालित रूप से किसानों को भुगतान कर सकते हैं, दावा प्रसंस्करण को समाप्त करते हुए और प्रशासनिक overhead को कम करते हुए। Peer-to-peer जुआ अनुप्रयोग किसी भी विश्वसनीय मध्यस्थ के बिना संचालित हो सकते हैं, smart contracts दांव रखते हुए और सत्यापन योग्य random numbers या वास्तविक-दुनिया की घटना डेटा के आधार पर स्वचालित रूप से विजेताओं को भुगतान करते हुए।

On-chain prediction markets उपयोगकर्ताओं को भविष्य की घटनाओं पर दांव लगाने की अनुमति देते हैं, भीड़ की बुद्धि के माध्यम से शक्तिशाली पूर्वानुमान तंत्र बनाते हैं। इन्हें विकेंद्रीकृत oracles बनाने के लिए SchellingCoin-शैली प्रोटोकॉल के साथ बढ़ाया जा सकता है: प्रतिभागी स्वतंत्र रूप से डेटा (जैसे चुनाव परिणाम या मौसम की स्थिति) रिपोर्ट करते हैं, और जिनकी रिपोर्ट बहुमत से मेल खाती हैं उन्हें पुरस्कार मिलता है जबकि विचलन करने वालों को दंडित किया जाता है। यह cryptoeconomic दृष्टिकोण ईमानदार रिपोर्टिंग को प्रोत्साहित करता है और किसी एक oracle प्रदाता पर विश्वास की आवश्यकता के बिना अन्य contracts को विश्वसनीय वास्तविक-दुनिया डेटा प्रदान कर सकता है।

Multi-signature wallets एक और महत्वपूर्ण अनुप्रयोग का प्रतिनिधित्व करते हैं, जो कई पक्षों के बीच धन का साझा नियंत्रण सक्षम करते हैं। एक 2-of-3 multi-sig wallet में धन खर्च करने से पहले तीन निर्दिष्ट पक्षों में से किन्हीं दो को transaction को मंजूरी देने की आवश्यकता हो सकती है, जो escrow व्यवस्थाओं, कॉर्पोरेट treasuries, या व्यक्तिगत सुरक्षा के लिए उपयोगी है। विकेंद्रीकृत marketplaces पहचान प्रणालियों, प्रतिष्ठा स्कोर, escrow contracts, और विवाद समाधान तंत्रों को जोड़कर केंद्रीकृत प्लेटफॉर्म के बिना peer-to-peer वाणिज्य को सक्षम कर सकते हैं। इनमें से प्रत्येक अनुप्रयोग प्रदर्शित करता है कि कैसे Ethereum की प्रोग्रामेबिलिटी नए विश्वास मॉडल और संगठनात्मक संरचनाओं को सक्षम करती है।

Miscellanea And Concerns

Ethereum's implementation of the modified GHOST protocol includes specific rules for uncle inclusion and rewards. Uncles must be direct children of the current block's ancestor (between 2 and 7 generations back), must be valid block headers, must be distinct from previous uncles, and must not be direct ancestors of the current block. Uncle blocks receive 87.5% of the standard block reward, while the including block receives an additional 3.125% per uncle included (up to two uncles). This incentive structure encourages miners to reference stale blocks they observe, strengthening network security while rewarding miners who experienced temporary bad luck with network propagation.

The transaction-fee/" class="glossary-link" data-slug="transaction-fee" title="fee">fee system is based on the concept of "gas," where every computational operation has a fixed gas cost. For example, a multiplication operation costs 5 gas, a SHA256 hash costs 20 gas, and every transaction has a base cost of 21,000 gas. Users specify both a gas limit (maximum gas they're willing to consume) and a gas price (how much ether they'll pay per unit of gas). This system serves multiple purposes: it prevents infinite loops and denial-of-service attacks by ensuring all computation is paid for, it creates a market for block space where users bid via gas prices, and it allows miners to set a minimum gas price they're willing to accept, protecting network resources.

Ethereum supply growth rate comparing linear issuance to Bitcoin decreasing growth

Scalability remains a significant concern, as every node/" class="glossary-link" data-slug="full-node" title="full node">full node must process every transaction to verify the state. Current blockchain architectures struggle to match centralized systems' transaction throughput. Potential solutions include state sharding, where different nodes process different subsets of transactions, and a transition from proof-of-work to proof-of-stake consensus, which could enable more efficient block production. Light clients using Merkle proofs can verify transactions without processing all blocks, but someone must still process everything. These scalability challenges represent active areas of research and development critical to Ethereum's long-term viability.

Miscellanea And Concerns

Ethereum के संशोधित GHOST प्रोटोकॉल के कार्यान्वयन में uncle समावेश और पुरस्कारों के लिए विशिष्ट नियम शामिल हैं। Uncles वर्तमान block के पूर्वज के प्रत्यक्ष बच्चे होने चाहिए (2 से 7 पीढ़ियों के बीच), वैध block headers होने चाहिए, पिछले uncles से अलग होने चाहिए, और वर्तमान block के प्रत्यक्ष पूर्वज नहीं होने चाहिए। Uncle blocks मानक block reward का 87.5% प्राप्त करते हैं, जबकि शामिल करने वाला block प्रति uncle अतिरिक्त 3.125% प्राप्त करता है (अधिकतम दो uncles तक)। यह प्रोत्साहन संरचना miners को उनके द्वारा देखे गए stale blocks को संदर्भित करने के लिए प्रोत्साहित करती है, नेटवर्क सुरक्षा को मजबूत करते हुए उन miners को पुरस्कृत करती है जिन्हें नेटवर्क प्रसार में अस्थायी दुर्भाग्य का अनुभव हुआ।

शुल्क प्रणाली "gas" की अवधारणा पर आधारित है, जहां प्रत्येक कम्प्यूटेशनल ऑपरेशन की एक निश्चित gas लागत होती है। उदाहरण के लिए, एक multiplication ऑपरेशन की लागत 5 gas है, एक SHA256 hash की लागत 20 gas है, और प्रत्येक transaction की आधार लागत 21,000 gas है। उपयोगकर्ता gas limit (अधिकतम gas जो वे खपत करने को तैयार हैं) और gas price (प्रति gas इकाई कितना ether वे भुगतान करेंगे) दोनों निर्दिष्ट करते हैं। यह प्रणाली कई उद्देश्यों की सेवा करती है: यह सभी computation का भुगतान सुनिश्चित करके अनंत लूप और denial-of-service हमलों को रोकती है, यह block space के लिए एक बाजार बनाती है जहां उपयोगकर्ता gas prices के माध्यम से बोली लगाते हैं, और यह miners को न्यूनतम gas price सेट करने की अनुमति देती है जिसे वे स्वीकार करने को तैयार हैं, नेटवर्क संसाधनों की रक्षा करती है।

Ethereum supply growth rate comparing linear issuance to Bitcoin decreasing growth

Scalability एक महत्वपूर्ण चिंता बनी हुई है, क्योंकि प्रत्येक पूर्ण node को state सत्यापित करने के लिए प्रत्येक transaction को प्रोसेस करना होगा। वर्तमान blockchain आर्किटेक्चर केंद्रीकृत प्रणालियों के transaction throughput से मिलान करने में संघर्ष करते हैं। संभावित समाधानों में state sharding शामिल है, जहां विभिन्न nodes transactions के विभिन्न उपसमूहों को प्रोसेस करते हैं, और proof-of-work से proof-of-stake consensus में संक्रमण, जो अधिक कुशल block उत्पादन सक्षम कर सकता है। Merkle proofs का उपयोग करने वाले light clients सभी blocks को प्रोसेस किए बिना transactions को सत्यापित कर सकते हैं, लेकिन किसी को फिर भी सब कुछ प्रोसेस करना होगा। ये scalability चुनौतियां Ethereum की दीर्घकालिक व्यवहार्यता के लिए महत्वपूर्ण अनुसंधान और विकास के सक्रिय क्षेत्रों का प्रतिनिधित्व करती हैं।

Conclusion

The Ethereum protocol was originally conceived as an upgraded version of a cryptocurrency, providing advanced features like on-blockchain escrow, withdrawal limits, and financial contracts through a highly generalized programming language. However, the Ethereum protocol moves far beyond just currency. Protocols around decentralized file storage, decentralized computation, and decentralized prediction markets, among dozens of other concepts, have the potential to substantially increase the efficiency of the computational industry and provide a massive boost to other peer-to-peer protocols by adding for the first time an economic layer.

Rather than providing a limited set of operations designed for specific use cases, Ethereum provides a Turing-complete programming language that enables developers to build any application they can design. Want to invent your own financial derivative? Create your own currency? Establish a government on the blockchain? These are all trivially implementable with Ethereum's scripting system. The platform's power lies not in predicting what applications will be built, but in providing the foundational infrastructure that makes building them easy.

The concept of an arbitrary state transition function as implemented by the Ethereum protocol provides a platform with unique potential. Rather than being a closed-ended, single-purpose protocol intended for specific applications in data storage, gambling, or finance, Ethereum is open-ended by design, and we believe it is extremely well-suited to serving as a foundational layer for a large number of both financial and non-financial protocols in the years to come. The applications that will be built on Ethereum in the future may be ones we cannot even imagine today, and that open-ended possibility represents the true promise of the platform.

Conclusion

Ethereum प्रोटोकॉल मूल रूप से एक cryptocurrency के उन्नत संस्करण के रूप में कल्पना किया गया था, जो एक उच्च सामान्यीकृत प्रोग्रामिंग भाषा के माध्यम से on-blockchain escrow, निकासी सीमा, और वित्तीय contracts जैसी उन्नत सुविधाएं प्रदान करता था। हालांकि, Ethereum प्रोटोकॉल केवल मुद्रा से बहुत आगे जाता है। विकेंद्रीकृत फ़ाइल स्टोरेज, विकेंद्रीकृत computation, और विकेंद्रीकृत prediction markets के आसपास के प्रोटोकॉल, दर्जनों अन्य अवधारणाओं के साथ, कम्प्यूटेशनल उद्योग की दक्षता को काफी बढ़ाने और पहली बार एक आर्थिक परत जोड़कर अन्य peer-to-peer प्रोटोकॉल को एक बड़ा बढ़ावा प्रदान करने की क्षमता रखते हैं।

विशिष्ट उपयोग मामलों के लिए डिज़ाइन किए गए ऑपरेशनों का एक सीमित सेट प्रदान करने के बजाय, Ethereum एक Turing-complete प्रोग्रामिंग भाषा प्रदान करता है जो डेवलपर्स को कोई भी अनुप्रयोग बनाने में सक्षम बनाता है जिसे वे डिज़ाइन कर सकें। अपना स्वयं का वित्तीय derivative आविष्कार करना चाहते हैं? अपनी स्वयं की मुद्रा बनाना चाहते हैं? Blockchain पर एक सरकार स्थापित करना चाहते हैं? ये सभी Ethereum की स्क्रिप्टिंग प्रणाली के साथ सरलता से कार्यान्वित करने योग्य हैं। प्लेटफॉर्म की शक्ति यह भविष्यवाणी करने में नहीं है कि कौन से अनुप्रयोग बनाए जाएंगे, बल्कि मूलभूत अवसंरचना प्रदान करने में है जो उन्हें बनाना आसान बनाती है।

Ethereum प्रोटोकॉल द्वारा कार्यान्वित एक मनमाने state transition function की अवधारणा अद्वितीय क्षमता वाला एक प्लेटफॉर्म प्रदान करती है। डेटा स्टोरेज, जुए, या वित्त में विशिष्ट अनुप्रयोगों के लिए एक बंद-अंत, एकल-उद्देश्य प्रोटोकॉल होने के बजाय, Ethereum डिज़ाइन द्वारा खुले-अंत वाला है, और हम मानते हैं कि यह आने वाले वर्षों में बड़ी संख्या में वित्तीय और गैर-वित्तीय दोनों प्रोटोकॉल के लिए एक मूलभूत परत के रूप में सेवा करने के लिए अत्यंत उपयुक्त है। भविष्य में Ethereum पर बनाए जाने वाले अनुप्रयोग ऐसे हो सकते हैं जिनकी हम आज कल्पना भी नहीं कर सकते, और वह खुली संभावना प्लेटफॉर्म का वास्तविक वादा है।

References and Further Reading

The Ethereum whitepaper builds upon extensive prior work in cryptocurrency and distributed systems research. The foundational Bitcoin protocol is described in Satoshi Nakamoto's original 2008 paper "Bitcoin: A Peer-to-Peer Electronic Cash System," which introduced the concept of blockchain-based digital currency. Early attempts to extend Bitcoin's functionality include Namecoin, a decentralized name registration system demonstrating blockchain applications beyond currency, though limited by Bitcoin's restricted scripting capabilities.

The colored coins whitepaper proposed a method for representing alternative assets on the Bitcoin blockchain by "coloring" specific bitcoins to represent other assets, while Mastercoin attempted to create a protocol layer on top of Bitcoin for more complex financial instruments. Both highlighted the limitations of building on Bitcoin and motivated the need for a more flexible platform. The concept of decentralized autonomous corporations, explored in Bitcoin Magazine, provided theoretical foundations for organizational governance through smart contracts.

Key technical components include simplified payment verification (SPV) for light clients, Merkle trees for efficient data verification, and Patricia tries for Ethereum's state representation. The GHOST (Greedy Heaviest Observed Subtree) protocol, described in a 2013 cryptography paper, addresses security issues arising from fast block times and forms the basis for Ethereum's consensus mechanism. These references represent the intellectual foundations upon which Ethereum was built, combining insights from cryptocurrency, distributed systems, cryptography, and game theory to create a general-purpose blockchain platform.

References and Further Reading

Ethereum whitepaper cryptocurrency और वितरित प्रणालियों के अनुसंधान में व्यापक पूर्व कार्य पर आधारित है। मूलभूत Bitcoin प्रोटोकॉल का वर्णन Satoshi Nakamoto के मूल 2008 पेपर "Bitcoin: A Peer-to-Peer Electronic Cash System" में किया गया है, जिसने blockchain-आधारित डिजिटल मुद्रा की अवधारणा पेश की। Bitcoin की कार्यक्षमता का विस्तार करने के शुरुआती प्रयासों में Namecoin शामिल है, एक विकेंद्रीकृत नाम पंजीकरण प्रणाली जो मुद्रा से परे blockchain अनुप्रयोगों को प्रदर्शित करती है, हालांकि Bitcoin की प्रतिबंधित स्क्रिप्टिंग क्षमताओं द्वारा सीमित।

Colored coins whitepaper ने विशिष्ट bitcoins को अन्य संपत्तियों का प्रतिनिधित्व करने के लिए "coloring" करके Bitcoin blockchain पर वैकल्पिक संपत्तियों का प्रतिनिधित्व करने की एक विधि प्रस्तावित की, जबकि Mastercoin ने अधिक जटिल वित्तीय साधनों के लिए Bitcoin के ऊपर एक प्रोटोकॉल परत बनाने का प्रयास किया। दोनों ने Bitcoin पर निर्माण की सीमाओं को उजागर किया और एक अधिक लचीले प्लेटफॉर्म की आवश्यकता को प्रेरित किया। Bitcoin Magazine में खोजी गई विकेंद्रीकृत स्वायत्त निगमों की अवधारणा ने smart contracts के माध्यम से संगठनात्मक शासन के लिए सैद्धांतिक आधार प्रदान किया।

प्रमुख तकनीकी घटकों में light clients के लिए simplified payment verification (SPV), कुशल डेटा सत्यापन के लिए Merkle trees, और Ethereum के state प्रतिनिधित्व के लिए Patricia tries शामिल हैं। 2013 के एक cryptography पेपर में वर्णित GHOST (Greedy Heaviest Observed Subtree) प्रोटोकॉल तेज block समय से उत्पन्न सुरक्षा मुद्दों को संबोधित करता है और Ethereum के consensus तंत्र का आधार बनाता है। ये संदर्भ उन बौद्धिक नींवों का प्रतिनिधित्व करते हैं जिन पर Ethereum बनाया गया था, एक सामान्य-उद्देश्य blockchain प्लेटफॉर्म बनाने के लिए cryptocurrency, वितरित प्रणालियों, cryptography, और game theory से अंतर्दृष्टि को जोड़ते हुए।