soham

Results 96 comments of soham

Closing this since it should be resolved with the v2. If you are facing any issue feel free to reopen :)

I believe this has been fixed. You can also try the latest v2, which prints the view function calls and only to see reverted calls or txs, `--traceError` can be...

I've been working on a workaround to skip using debug_tt. You can try `hardhat-tracer@beta` and checkout [v2-beta branch](https://github.com/zemse/hardhat-tracer/tree/v2-beta) for some docs. This implementation hijacks the ethereumjs vm in hardhat and...

PromiseOrValue seems to have caused inconvenience for a lot of people. I'd incline towards getting rid of it if we can't have it behind a flag.

In v6 target, there's no PromiseOrValue. For v5 I've just opened up a PR.

Tick is a 24-bit value which I believe is being maintained for twat observations. While `SqrtPriceX96` contains more precision and is used for swap calculations, and based on it the...

I think I have seen this issue with Alchemy previously. eth_call returns "0x" randomly and it's also not a json rpc error. Ethers v5 treat it as a call exception....

There is a `TypedEventLog` in the same file, which is the return type for queryFilter. The `TypedEvent` in v5 is similar to `TypedEventLog` in v6. However, `TypedContractEvent` is a different...

> But the MintEvent.Event type (TypedContractEvent) doesn't extends EventLog to be compatible with LogDescription. Yea, `MintEvent.Event` will not work but `TypedEventLog` should work since it extends EventLog. To prevent further...

This requires `this` type in return of https://github.com/dethcrypto/TypeChain/blob/ec6b8600042e78020af3e05647e5044bd44425b9/packages/target-ethers-v6/src/codegen/index.ts#L69