Simon Warta
Simon Warta
The tricky part here is how to do rounding and the type of divisor. Decimal/Decimal, Decimal/int? Not straight forward. But if rounding is fine for you, just call `toFloatApproximation()` and...
Have you tried increasing you memory limit? We are experiencing similar crash behaviour when the memory limit is too low. In you C version you have no limit set.
See also https://github.com/buke/quickjs-go/issues/396
`expiration` is of type `Timestamp`: ```ts export interface Timestamp { /** * Represents seconds of UTC time since Unix epoch * 1970-01-01T00:00:00Z. Must be from 0001-01-01T00:00:00Z to * 9999-12-31T23:59:59Z inclusive....
I came across something like this as well recently. A purely offline signing steps took between 12 and 26ms using latest deno as an execution environment, which I consider too...
> Ubuntu 16.04 core i7 16Gb ram 16.04 is very old. Are you using node? Which `node --version`? > Moreover why are all async functions when they have nothing async?...
> The first sign always takes a lot (1000 to 2000 ms), the following less (300 to 800 ms). I need to check the code, but maybe the first time...
I tried caching the `Secp256k1Keypair`s from `getKeyPair` and the `AccountDataWithPrivkey`s in `getAccountsWithPrivkeys` (keypair plus derived address) in a deno 1.36.1 environment. Those are the timings for the `.sign` call without...
> Didn't Node.js [v17.1](https://nodejs.org/en/blog/release/v17.1.0) and [v16.14](https://nodejs.org/en/blog/release/v16.14.0) add support for `import data from './data.json' assert { type: 'json' };` and `await import('./data.json', { assert: { type: 'json' } })`. It seems...
Isn't that what webpack is supposed to do? To be honest I lost track of all those fancy new tools doing more or less the same. > sing a bundler...