Henrique Barcelos

Results 41 comments of Henrique Barcelos

> If you call again (once you see it on etherscan) without the `--broadcast` flag, and only with the `--verify`, does it still happen ? I noticed that Goerli etherscan...

I have a theory about the root cause. The generated encrypted JSON has a `"Crypto"` property (with a capital C), however all tools I've used out there expects it to...

Found the culprit: https://github.com/ethers-io/ethers.js/blob/608864fc3f00390e1260048a157af00378a98e41/packages/json-wallets/src.ts/keystore.ts#L332 @ricmoo I can issue a PR to fix this, but it's literally a 1-char diff. To corroborate the theory, if you go to the [Web3 Secret...

I second this. I'm using `ripgrep` as source. Both `:F` and `:Far` are able to find the respective lines, however `:Fardo` fails for all lines.

What's the version of `geth` that your node is currently using? Also I think a Full Node is not enough, you'd be required to have an Archive Node in order...

> If an archive node is required, then consider this a request to support full nodes. =) Unfortunately this is not possible. The Kleros Court is required to be able...

Not everything is stored directly on state. Kleros' contracts use Events because otherwise it would be way too expensive to store everything related to disputes. Ethereum Events and Logs are...

Interesting... 🤔 > I confirmed that my full node is perfectly capable of retrieving logs from a large number of blocks at once from any distance in the chain's history...

The dynamic script should be standalone because it's sandboxed in an iframe for security reasons. In most environments it will fail reading parameters from the parent window. IIRC `Web3.givenProvider` relies...