问题标签 [ethereum]
For questions regarding programming in ECMAScript (JavaScript/JS) and its various dialects/implementations (excluding ActionScript). Note JavaScript is NOT the same as Java! Please include all relevant tags on your question; e.g., [node.js], [jquery], [json], [reactjs], [angular], [ember.js], [vue.js], [typescript], [svelte], etc.
encryption - 以太坊区块链使用什么编码
有没有办法弄清楚以太坊使用的编码方案?看起来比特币使用了 Base 64 编码,如此处所示。只是想弄清楚以太坊
json-rpc - eth_sendTransaction 的方法参数无效
我正在尝试进行事务(通过 json-rpc 的 c++ 客户端) - 只需设置“from”和“to”,因为其余部分标记为可选。也试图增加价值,但我仍然得到:
两者都是我拥有的地址(通过 eth_accounts 返回) - 欢迎任何有关如何克服此问题的提示 这是我尝试的请求:
c - How to reduce a random hash to a boolean value
In c or a c-like language assuming I have a random_hash
what is the cheapest way to reduce it to a boolean value i.e. 0
or 1
?
An example random_hash
to normalise answers: 0x11bbe8db4e347b4e8c937c1c8370e4b5ed33adb3db69cbdb7a38e1e50b1b82fa
Restrictions: no method/stdlib calls.
Why c-like
, I'm actually trying to do it in a language called Solidity, which is modeled after c/javascript
, which has a very limited runtime/stdlib.
encryption - Ethereum Genesis Block Private Network
I am trying to mine on a private network.
How does one go about creating a genesis block for a private network in frontier ethereum?
I have seen: https://blog.ethereum.org/2015/07/27/final-steps/ but this is to get the public Genesis block.
python - 以太坊生成创世 Python 语法
嗨,我尝试生成 genesis 文件,但收到此错误:
编辑:这是周围的线条:
然后是EOF。整个文件可以在这里查看 由于违规行似乎只是输出,我评论它并得到另一个错误:
这与其他错误一起让我想知道是否正在操作字符串而不是 json 对象?这是整个 arg 解析部分:
我还制作了一个导入 json 包、转储和解码方法的测试文件。
ethereum - Where in the AlethZero GUI do I get access to the public keys for my owned accounts?
I've tried selecting and copying, double-clicking, and have looked through the menus to no avail. Probably something simple but I'm new here and trying to get my bearings in the wild west :smile:
json - 通过 JSON-RPC 的 NodeJS POST 请求
我正在尝试在我的 NodeJS 服务器上通过 JSON-RPC 执行 POST 请求。转换以下 curl 命令:
在 NodeJS 中,我不断收到:
在标题中,我指定了 Content-Type。如果有人能指出我没有指定的内容以及如何添加它,将不胜感激。
ethereum - 在 Web 浏览器中连接到以太坊节点
我收到此错误:
我目前正在尝试将 Meteor 应用程序与私有测试网络上的节点一起使用。我也尝试在真实网络上的真实节点上运行它。我能够访问 web3.eth 对象,但我似乎无法连接到我的节点!这太令人沮丧了!
我的应用程序在http://localhost:3000上运行
我在启动节点时尝试了以下操作,但它们都不起作用(它们启动正常,但我无法通过浏览器连接到它们):
这是我用来在浏览器控制台中设置提供程序的方法:
ethereum - Solidity中的字符串连接?
我如何在solidity中连接字符串?
好像不行。。
我查阅了文档(https://github.com/ethereum/wiki/wiki/Solidity-Tutorial#elementary-types-value-types),没有太多关于字符串连接的提及。但据说它与点 ('.') 一起使用?
对我也没有用..:/
ethereum - 如何让 Greeter 示例工作?
这是我如何启动它
和
返回 6290
当尝试在测试网中部署欢迎程序示例时,我总是“等待被挖掘”。我知道以前有人问过这个事实,并且作为唯一一个我应该不断挖掘的矿工,而且创世块的难度应该很低。但是,似乎没有任何效果。我一直尝试以主帐户为恩人进行挖矿,并将此http://jev.io/genesis_block.json用作创世文件(将难度更改为 0x0000000 并增加了气体限制)但徒劳无功。任何帮助将不胜感激。
PS:这里完全是新手。请指出我犯的任何错误。谢谢你。