0x89f9…fc5b

All memos sent from and to 0x89f9…fc5b.

It was the best of times, it was the worst of times, it was the age of wisdom, it was the age of foolishness, it was the epoch of belief, it was the epoch of incredulity, it was the season of Light, it was the season of Darkness, it was the spring of hope, it was the winter of despair, we had everything before us, we had nothing before us, we were all going direct to Heaven, we were all going direct the other way--in short, the period was so far like the present period, that some of its noisiest authorities insisted on its being received, for good or for evil, in the superlative degree of comparison only. There were a king with a large jaw and a queen with a plain face, on the throne of England; there were a king with a large jaw and a queen with a fair face, on the throne of France. In both countries it was clearer than crystal to the lords of the State preserves of loaves and fishes, that things in general were settled for ever.
<h1>Ethereum Static Websites</h1> <h2>Any data you attach on an ethereum transaction can now be a static webpage</h2> <a target="_blank" href="/t#0xd2426eaa74bc162f2738295f58376f46ca9dd6705f450ff5dc805e4632fd7826">View Sample Hello world Webpage on Ethereum Blockchain</a> <br> <a target="_blank" href="https://etherscan.io/tx/0xd2426eaa74bc162f2738295f58376f46ca9dd6705f450ff5dc805e4632fd7826">Transaction on Blockchain</a> <br><br> <a target="_blank" href="/t#0x4586856e98a800c277f1fe0b129a52c9e1e352caed88999d0c82ff8565937170">View Sample Webpage #2 on Ethereum Blockchain</a> <br> <a target="_blank" href="https://etherscan.io/tx/0x4586856e98a800c277f1fe0b129a52c9e1e352caed88999d0c82ff8565937170">Transaction on Blockchain</a> <br><br> <h2>View Ethereum transaction as static webpage</h2> Enter an ethereum transaction to see as webpage: <input type="text" id="txn"> <button id="see-transaction">See Transaction</button> <br><br> As a sample you can enter <br> 0xd2426eaa74bc162f2738295f58376f46ca9dd6705f450ff5dc805e4632fd7826 <br> 0x4586856e98a800c277f1fe0b129a52c9e1e352caed88999d0c82ff8565937170 <br> <h2>Encode Your Webpage as hex data to add to a transaction</h2> <h3>Convert ASCII Text to Hex</h3> <textarea id="ascii"> Enter your html here </textarea> <br> <button id="convert-to-hex">Convert to Hex</button> <h4>Your Hex Result Here. Copy this as the input to the transaction</h4> <textarea id="hex">Your hex result will show here. Copy this as the input to the transaction.</textarea> <br> <button id="convert-to-ascii">Convert to ASCII</button> <h2>How to Publish Webpage</h2> 1. First download the metamask chrome extension, though you could use any way of sending ether that lets you attach input data. You'll also need ether in your wallet. <br> 2. Create your html web page.<br> 3. Copy your web page into the first textarea, and click, "Convert to Hex"<br> 4. Copy your resulting hex to your clipboard<br> 5. Now create a transaction in metamask. You'll click send, then type in another wallet address you own. You can send some minimal amount. Then copy your hex result into the input section. <br> 6. That's it! Now go find the transaction hash and that will have the info to save your webpage. <h2>Support this project</h2> Like this project? Thank you! You can send ethereum tips to: jeremykeeshin.eth or 0xf639fFF07E0ef4e885B9Cb298CC5E25D0D7A09b6. <h4>Other technical details</h4> <p> In the <a href="https://etherscan.io/tx/0x4586856e98a800c277f1fe0b129a52c9e1e352caed88999d0c82ff8565937170">sample</a> above the transaction included 913 bytes of data. The cumulative gas used was 104084. The actual cost was $0.56. The gas limit is not much higher. However, this seems cheap to now get your web page stored forever! There is a limit on the size of the pages which would be the size that hits the max gas limit. </p> <h4>Author</h4> This website is made by Jeremy Keeshin. <br> <a href="http://twitter.com/jkeesh">Twitter</a><br> <a href="https://github.com/jkeesh/etherstatic">View source on github</a><br> Using ethereum nodes with <a href="https://infura.io">infura</a>. <style> textarea{ width: 400px; height: 200px; font-family: monospace; margin-top: 5px; word-wrap: break-word; } </style> <script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script> <script> String.prototype.convertToHex = function (delim) { return this.split("").map(function(c) { return ("0" + c.charCodeAt(0).toString(16)).slice(-2); }).join(delim || ""); }; function hex2a(hexx) { var hex = hexx.toString();//force conversion var str = ''; for (var i = 0; i < hex.length; i += 2) str += String.fromCharCode(parseInt(hex.substr(i, 2), 16)); return str; } $(function(){ $("#see-transaction").click(function(){ var txn = $("#txn").val(); window.location.href = '/t#' + txn; }); $("#convert-to-ascii").click(function(){ var val = $("#hex").val(); var result = hex2a(val); $("#ascii").val(result); }); $("#convert-to-hex").click(function(){ var val = $("#ascii").val(); var result = val.convertToHex(); $("#hex").val(result); }); }); </script>
<!DOCTYPE html> <head> <title>jeremy keeshin</title> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <style> a{ font-family: Helvetica; font-size: 40px; float: left; display: block; margin: 20px; color: black; text-decoration: none; } a:hover{ text-decoration: underline; } </style> </head> <body> <div> <a href="http://jeremykeeshin.com">jeremykeeshin.com</a> <a href="http://codehs.com">CodeHS</a> <a href="http://thekeesh.com">blog</a> <a href="http://medium.com/@jkeesh">medium</a> <a href="http://www.google.com/search?q=jeremy+keeshin">google</a> <a href="http://www.facebook.com/jkeesh">facebook</a> <a href="http://jkeesh.tumblr.com/">tumblr</a> <a href="http://www.flipsidenews.com">flipside</a> <a href="http://github.com/jkeesh">github</a> <a href="http://twitter.com/jkeesh">twitter</a> <a href="http://goodreads.com/jkeesh">books</a> </div> </body> </html>