Denis Davidyuk

Results 183 comments of Denis Davidyuk

I have provided necessary examples with `plain` property here: https://github.com/aeternity/aepp-components/commit/931d0f92a6f545698cb1bcef462a191f2679a9b6#diff-3e31aad88f87ab1b8c37cfd6afb16e5e. But for some reason, these examples right now mixed with examples of `inactive` property: https://components.aepps.com/#ae-button. I think examples will be...

https://testnet.aeternal.io/middleware/transactions/account/ak_2swhLkgBPeeADxVTAVCJnZLY5NZtCFiM93JxsEaMuC59euuFRQ/count outputs: ``` {"count":1476} ``` but ```js (await (await fetch( 'https://testnet.aeternal.io/middleware/transactions/account/ak_2swhLkgBPeeADxVTAVCJnZLY5NZtCFiM93JxsEaMuC59euuFRQ' ) ).json() ).length ``` evaluates to `1536`

@shekhar-shubhendu can you elaborate why won't fix it?

> Shouldn't we rather protect sign also? the idea is that developer should build something on the top of MemoryAccount, like an UI that ask user to confirm signing, or...

I think tests fail because of the too old version of jest: https://github.com/jsdom/jsdom/issues/961 https://www.npmjs.com/package/jest/v/21.2.1 it can be fixed by #124

> Wouldn't this work the same as your code? No, it will add an event listener for every emitting of `bind`, `update` events, it should somehow remove previously added `click`...

I had the same problem! I think it stopped working after https://github.com/sandersn/downlevel-dts/commit/a1a8f5675a1a824529bee01d947eb00304bf6ac4. So downlevel-dts expects [email protected], I've updated my to 4.9.3 and it works now 🎉

We had the same issue using ```js globals: { Uint8Array: Uint8Array, }, ``` workaround I find is to add `Uint8Array = Buffer.__proto__` to a file referenced in `setupFiles` instead of...

Consider adding this data to GetTransactionByHash endpoint to poll this data at once 🤔

As I understand ProtectedDryRunTxs also runs the VM, but it is already exposed.