
区块链
超级大neo
这个作者很懒,什么都没留下…
展开
-
ValueError: {‘code‘: -32000, ‘message‘: ‘only replay-protected (EIP-155) transactions allowed over R
解决办法You'll need to add chainId to your transaction object to save your tx from being replayed on other chains.tx = { 'chainId': 3, // for ropsten 'nonce': nonce, 'to': account_2, 'value': web3.toWei(float_amount, 'ether'), 'gas': 2原创 2021-04-12 10:45:16 · 3539 阅读 · 1 评论 -
以太坊测试网转账客户端实现
背景:因为需要频繁使用eth ropsten转账, python调用感觉不太方便, 所以整理了一个简单的转账客户端代码:package mainimport ( "context" "crypto/ecdsa" "fmt" "log" "math/big" "os" "strconv" //"github.com/ethereum/go-ethereum" "github.com/ethereum/go-ethereum/common" //"github.com/原创 2020-12-21 20:48:21 · 3001 阅读 · 0 评论 -
wiki百科关于区块链的介绍
区块链[编辑]维基百科,自由的百科全书区块链资料区块链(英语:blockchain 或 block chain)[1]是用分布式数据库识别、传播和记载信息的智能化对等网络, 也称为价值互联网。[2][3] 中本聪在2008年,于《比特币白皮书》[4]中提出“区块链”概念,并在2009年创立了比特币社会网络,开发出第一个区块,即转载 2017-08-23 10:19:28 · 6165 阅读 · 0 评论