Daniel
Daniel
I was wondering if it would be possible to use the output from solc-js / solc to give gas estimates in the same way https://github.com/kisstkondoros/codemetrics does it. If it's something...
Using `assert` in contracts leads to ``` Quering call/contractName/tester failed: wasm execution failed with error: WasmerCallError("Smart contract has explicitly invoked `panic`."). ``` Expected:The Error message is visible in the RPC...
Adding `//@nearfile out` does not create the out folder, so you get the error: `[10:24:14] Error: ENOENT: no such file or directory, open 'out/assembly/main.ts` Expected: No error
`Collections` no longer has any collections below it, they are exported on the same level as `Collections`
The following function in `Vector`: ```ts /** * @returns The length of the vector. */ get length(): i32 { if (this._length < 0) { this._length = storage.get(this._lengthKey, 0); } return...
Using `u128` prevents compilation, example code: ```ts import {storage} from './near'; import {u128} from './bignum'; export function init(): void { storage.set('Hello', 1); } ``` This fails to compile with error:...
If I have the following code: ```ts import {storage} from 'near-runtime-ts/near'; export function init(): void { storage.set('Hello', 1); const x = storage.get('Hello'); assert(x > 10); } ``` I get the...
Looking at `collections.Vector` there is no way to return the values in the vector to the outside world. In order to return the whole vector from the contract, I have...