问题标签 [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.

0 投票
1 回答
1354 浏览

ethereum - 如何获取或验证合约的源代码?

在以太坊上找到合约是微不足道的。并且一旦找到,就很容易使用。但是我怎样才能知道合同的真正作用呢?如何验证将执行哪些代码?

0 投票
1 回答
550 浏览

ethereum - 如何查看以太坊网络的状态?

我在哪里可以找到最新区块、哈希难度、平均区块时间、随时间变化的难度、矿池大小等信息?

0 投票
1 回答
1245 浏览

ethereum - 我有我的以太坊账户地址和密码。这就是我需要访问它的全部内容,对吧?

我用“geth account new”创建了我的新以太坊地址,设置了密码并在那里转移了一些以太币。现在我有了这个帐户#(哈希)和密码,我可以随时访问这个帐户,对吧?

0 投票
1 回答
385 浏览

ethereum - 给定一个以太坊账户哈希,是否可以判断它是“普通”账户还是合约账户?

以太坊有两种类型的账户,“普通”(想想比特币)和合约。仅给定一个哈希值,是否可以判断帐户是哪种类型?

0 投票
1 回答
2763 浏览

ethereum - 在以太坊中,什么是gas,如何使用,“startgas”和“gasprice”有什么区别?

我正在寻找以太坊中气体使用的解释。它是什么,它是如何计算的,它有什么价值?

0 投票
2 回答
22911 浏览

ethereum - When will Ethereum switch to Proof of Stake?

Ethereum currently uses GPU-mining proof-of-work to perpetuate the blockchain, but I've read that the Ethereum foundation and developer team aims to move to proof-of-stake at some point in the future. What is the difference between the two and when will the switch be made?

0 投票
2 回答
2201 浏览

ethereum - 在以太坊中,什么是私有测试网,我为什么想要它,以及如何设置它?

我已经看到/听到开发人员谈论以太坊测试网,但我刚刚发布到公共区块链。什么是私人测试网,如何设置?

0 投票
1 回答
2310 浏览

ethereum - 在以太坊中,我如何与区块链上的合约交互?

当我使用编译器的输出发布合同时,我得到一个 javascript 对象“somecontract”,我可以像这样调用方法:“somecontract.doSomething();”

但是我如何与过去某个时间发布到区块链的合约进行交互呢?

0 投票
2 回答
5713 浏览

ethereum - 在 Ethereum Solidity 中,当更改数组长度时,我得到“值必须是左值”。为什么?

在 Solidity 中,您可以使用array.length++增加数组的大小以为新成员腾出空间。但我收到一个错误:

0 投票
3 回答
33440 浏览

memory - 在 Ethereum Solidity 中,“memory”关键字的作用是什么?

在查看示例合同时,有时数组是在具有“内存”的方法中声明的,有时则不是。有什么不同?