
以太坊
laoerhan
这个作者很懒,什么都没留下…
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
Detail the scenes of Syncing Ethereum
Syncing Ethereum is a pain point for many people, so I'll try to detail what's happening behind the scenes so there might be a bit less confusion.eth.syncing{currentBlock: 5199256,highestBlock: 5...转载 2018-10-11 14:26:42 · 252 阅读 · 0 评论 -
以太坊智能合约 —— 最佳安全开发指南
原文出处:https://github.com/ConsenSys/smart-contract-best-practices/blob/master/README-zh.md#%E4%BB%A5%E5%A4%AA%E5%9D%8A%E6%99%BA%E8%83%BD%E5%90%88%E7%BA%A6--%E6%9C%80%E4%BD%B3%E5%AE%89%E5%85%A8%E5%BC%8...转载 2018-07-17 11:54:53 · 1755 阅读 · 0 评论 -
Cancel pending transactions on Ethereum
原文出处:https://jakubstefanski.com/post/2017/10/ethereum-cancel-pending-transaction/ Transactions modelEthereum transactions model is vastly different from Bitcoin. Instead of using UTXO (unspent...转载 2018-07-17 12:01:38 · 966 阅读 · 0 评论 -
How to build your own Ethereum based ERC20 Token and launch an ICO in next 20 minutes
原文出处:https://hashnode.com/post/how-to-build-your-own-ethereum-based-erc20-token-and-launch-an-ico-in-next-20-minutes-cjbcpwzec01c93awtbij90uzn This article aims to give you an overview of how sm...转载 2018-07-20 16:07:58 · 571 阅读 · 0 评论 -
Transfer ERC20 tokens using geth
Step 0: Install geth, start geth (with "--unlock 0xYOURACCOUNT"), sync the blockchain, open up a geth terminal in another window with "geth attach".Or using personal.unlockAccount to unlock your aco...原创 2018-09-06 17:02:26 · 458 阅读 · 0 评论 -
Sending ether using geth
The basic way of sending a simple transaction of ether with the console is as follows:> eth.sendTransaction({from:sender, to:receiver, value: amount})Using the built-in JavaScript, you can ea...转载 2018-09-07 17:25:33 · 160 阅读 · 0 评论 -
Difference between sendTransaction and sendRawTransaction in web3.py
w3.eth.sendTransaction() only supports sending unsigned transactions. In order to use it, your node must be managing your private key. Since the node must manage your key, you must not use it with a h...转载 2018-09-13 14:26:44 · 590 阅读 · 0 评论 -
Ethereum Wallet Syncing Problems
From:https://theethereum.wiki/w/index.php/Ethereum_Wallet_Syncing_Problems One of the most common problems with the Ethereum Wallet application is keeping the blockchain in sync with the Ethereum ...转载 2018-10-09 14:32:54 · 870 阅读 · 0 评论 -
Check the Ethereum wallet syncing state
1.) open a new geth instance and type in geth.exe attach 2.) now type in eth.syncingThis shows you the "currentBlock" and the "highestBlock".{ currentBlock: 3929244, highestBlock: 6481189, ...原创 2018-10-09 14:56:21 · 318 阅读 · 0 评论 -
Constantinople Ethereum Hard Fork
Delayedhttps://blog.ethereum.org/2019/01/15/security-alert-ethereum-constantinople-postponement/ Recommended Articles:(1)https://coinswitch.co/news/ethereum-hard-fork-jan-19-know-everything-ab...原创 2019-01-08 20:10:34 · 465 阅读 · 0 评论