-
```
It looks like the enumerable can only be enumerated once in the javascript
generated
static void btnTest_click(HtmlDomEventArgs e)
{
J(document.body).append("Hello world");
var someNumb…
-
Example: contract x { function getUnsignedValue() constant returns (uint256 rval) { return uint256(sha3(0)); } }
calling getUnsignedValue() with web3.js returns a negative bigNumber
-
Retrieve a markets price history for some source such as ethereum logging for graphing results.
-
While trying to get the report for the current month I noticed this error is returned:
`plus() number type has more than 15 significant digits: 0.00005192067222222222`
The logs of the report app:
``…
-
I have a problem with abi decoding of return arrays in web3. The following is a part of the ABI:
```
{
"inputs": [{"type": "uint256[]", "name": "event_description_hashes"}],
"constant": false, "type…
-
```
It looks like the enumerable can only be enumerated once in the javascript
generated
static void btnTest_click(HtmlDomEventArgs e)
{
J(document.body).append("Hello world");
var someNumb…
-
After installing if I try ip.bigInteger() I get an error: "BigInteger is not a function".
`bower install jsbn --save` helps.
If after that I try
`ip.endAddress().bigInteger() < ip.startAddress().bi…
stimg updated
8 years ago
-
```
It looks like the enumerable can only be enumerated once in the javascript
generated
static void btnTest_click(HtmlDomEventArgs e)
{
J(document.body).append("Hello world");
var someNumb…
-
please do the thing where these are returned as BigNumbers and of course transformed from fixed-point when needed (i think two of the values require this treatment.
the array of values is fine (as ap…
-
math.multiply(69999.93, 100) returns 6999992.999999999
Is there a way to get 6999993 without turning the result into a string - i.e. not using math.format?