Harry Altman

Results 131 comments of Harry Altman

Also, in addition to storage, this mode would track nonces. And, of course, bytecode. Later versions would probably also add balance tracking, but storage, bytecode, and nonce should suffice for...

Oh, and the self-destruct list. That would need to go in the initial version too (as part of tracking bytecode).

The idea here has now changed -- instead of a separate mode, this will be the debugger's default operation, and it will be based on `debug_storageRangeAt` and `debug_accountAt`. (@gnidan this...

Btw, also note that, doing things this new way, one would no longer have to restart the transaction for manual watches to take effect!

Be aware though: The behavior of nonces changed back in Spurious Dragon! Before Spurious Dragon, contracts started at 0; now they start at 1.

So, to make @gnidan's comment more explicit: Apparently currently you can't just write tests in Typescript, but rather it requires additional setup, which will need to be documented. (But it...

We're having a similar problem. I forget the details of our workaround for this, but it's fairly hacky and involves relying on the discouraged [type resolution step 4](https://typedoc.org/guides/link-resolution/). Just chiming...

Note that `mocha` has both `--debug` and `debug` which are a little different; ideally `mocha-webpack` should support both.

Yes, that's part of why I assumed this wasn't actually possible and hadn't considered asking for it until you suggested it...