Welcome to Crypto
contract design - Is it possible to issue an Ethereum token with its own proof of work algorithm? - Ethereum Stack Exchange
2025.01.09 10:19Skip to main content
Stack Exchange Network
Stack Exchange network consists of 183 Q&A communities including Stack Overflow , the largest, most trusted online community for developers to learn, share their knowledge, and build their careers.
Visit Stack Exchange Tour Start here for a quick overview of the site Help Center Detailed answers to any questions you might have Meta Discuss the workings and policies of this site About Us Learn more about Stack Overflow the company, and our productscurrent community
Ethereum help chat Ethereum Metayour communities
Sign up or log in to customize your list.more stack exchange communities
company blog Log in Sign up Home Questions Tags Users Jobs Companies Unanswered TeamsAsk questions, find answers and collaborate at work with Stack Overflow for Teams.
Try Teams for free Explore Teams TeamsAsk questions, find answers and collaborate at work with Stack Overflow for Teams. Explore Teams
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
Learn more about TeamsIs it possible to issue an Ethereum token with its own proof of work algorithm?
Ask Question Asked 8 years, 11 months ago Modified 8 years, 10 months ago Viewed 999 times 5If I want to issue a token on Ethereum, but have that token function according to its own proof of work algorithm (for example, double SHA256 like Bitcoin), is it possible to do that? And if so how could I implement it?
contract-design proof-of-work tokens Share Improve this question Follow edited Mar 15, 2016 at 9:14 J-B 8,981 16 16 gold badges 47 47 silver badges 77 77 bronze badges asked Jan 20, 2016 at 17:02 Jeff Coleman Jeff Coleman 22.2k 18 18 gold badges 78 78 silver badges 91 91 bronze badges Add a comment |3 Answers 3
Sorted by: Reset to default Highest score (default) Date modified (newest first) Date created (oldest first) 6A token on Ethereum is basically a balance in an Ethereum contract. A contract could be programmed to issue tokens when it receives its own proof of work. (double sha256 is readily available, since the Ethereum Virtual Machine has a precompiled contract for sha256).
Here's a starter example of a "token" contract .
Note that even though the constructor assigns the contract a total supply, only the contract can issue the tokens. The contract can be examined to see when it does actually issue the tokens. In the current example, anyone may request tokens from the contract by calling transfer . Instead, the code in transfer could be replaced by issue like:
function issue(bytes _proofOfWorkNonce, address _to) returns (bool success) { // combine _proofOfWorkNonce with other data stored in the contract // do other checks as desired if (sha256(sha256(_proofOfWorkNonce)) target) { balances[msg.sender] -= 25; balances[_to] += 25; // more logic to update contract state return true; } return false; }Above is an idea. target is one of the other data stored in the contract. (Bit flipping, which may be required as in Bitcoin, is not done.)
Share Improve this answer Follow edited Jan 20, 2016 at 19:12 max taldykin 2,966 19 19 silver badges 27 27 bronze badges answered Jan 20, 2016 at 17:43 eth ♦ eth 86.5k 54 54 gold badges 287 287 silver badges 411 411 bronze badges 2 what is the reason behind implementing an own POW? – delete Commented May 1, 2018 at 9:27 @delete I think that should be a separate question. – eth ♦ Commented May 3, 2018 at 7:36 Add a comment | 3Yes it is possible. All you need is to create a contract that will verify a Proof-of-Work each time tx to this contract is made. The most closest case is already implemented in BTCrelay
Share Improve this answer Follow answered Jan 20, 2016 at 17:18 21xhipster 21xhipster 805 7 7 silver badges 13 13 bronze badges Add a comment | 1Are you trying to fairly distribute your sub-currency? You could always give it to people who mine your blocks, then require that it is claimed in a certain amount of time (say a week) that way you're not holding onto infinitely long promises.
If you did it like this, you can get "proof of work for free" without requiring any more work to be done.
Share Improve this answer Follow answered Jan 20, 2016 at 19:33 linagee linagee 6,188 27 27 silver badges 32 32 bronze badges Add a comment |Not the answer you're looking for? Browse other questions tagged contract-design proof-of-work tokens or ask your own question .
The Overflow Blog WBIT #2: Memories of persistence and the state of state Failing fast at scale: Rapid prototyping at Intuit Featured on Meta The December 2024 Community Asks Sprint has been moved to March 2025 (andRelated
56 What proof of work function does Ethereum use? 1 How do I use the proof of work function given in here: https://www.ethereum.org/token#proof-of-work? 2 Scalability of a scientific computing proof of work token 0 What proof do I have that I own a token? 1 What is the main difference between consensus mechanism of Bitcoin and Ethereum? 2 “Universal Proof of Work” with SNARKs? 0 Transaction order in Ethereum Proof of WorkHot Network Questions
In the Gospel Of Luke, is there punctuation in the oldest manuscripts? Making a polygon using equilateral triangles and squares. What have you been doing? How to understand structure of sentences in probability Is AC/DC Analysis Just an Application of Superposition Theorem? How can I apply an array formula to each value returned by another array formula? Why does one have to hit enter after typing one's Windows password to log in, while it's not to hit enter after typing one's PIN? Movie with invading spheres Is 1/2 pipe adequate for supplies inside a home? SSH server status shows disabled How to automatically terminate shell scripts after 1 minute of no output Should I REALLY keep all my credit cards totally paid off every month? Why do the A-4 Skyhawk and T-38 Talon have high roll rates? Please help with identify SF movie from the 1980s/1990s with a woman being put into a transparent iron maiden Is the finance charge reduced if the loan is paid off quicker? Do you know something is true if and only if you can prove that it is true or is it more complicated than that? Does light travel in a straight line? If so, does this contradict the fact that light is a wave? How is a camera/observer vector calculated in PGFPlots Please help with identify SF movie from 80's with cyborgs After Joseph was accused of seducing Potiphar's wife, why was he sentenced to jail (for over 2 years) rather than executed? Why is a specific polygon being rejected by SQL Server as invalid? How are countries' militaries responding to inflammatory statements made by incoming US leadership? How are companies paid for offering the 'Deutschlandticket'? How big would a bird have to be to carry a human if gravity were halved? more hot questions Question feedSubscribe to RSS
Question feedTo subscribe to this RSS feed, copy and paste this URL into your RSS reader.
Ethereum
Tour Help Chat Contact FeedbackCompany
Stack Overflow Teams Advertising Talent About Press Legal Privacy Policy Terms of Service Cookie Settings Cookie PolicyStack Exchange Network
Technology Culture & recreation Life & arts Science Professional Business API Data Blog Facebook Twitter LinkedIn InstagramSite design / logo © 2025 Stack Exchange Inc; user contributions licensed under CC BY-SA . rev 2025.1.7.20880