tincho
tincho
Hey @AnaRhisT94 , please refer to the most up-to-date version of Damn Vulnerable DeFi at https://github.com/tinchoabbate/damn-vulnerable-defi. Thanks!
Same happened to me, Token and Delegation appeared as completed after I solved Telephone :thinking:
I'm trying to track this down. Completed levels are tracked in LocalStorage (see https://github.com/OpenZeppelin/ethernaut/blob/solidity-05/src/reducers/playerReducer.js#L36-L62). Removing the level from LocalStorage manually puts things back to normal. The `SUBMIT_LEVEL_INSTANCE` action is triggered...
I seem to have found the culprit. In https://github.com/OpenZeppelin/ethernaut/blob/solidity-05/src/middlewares/syncPlayerProgress.js#L16-L18 we don't seem to be filtering appropriately. According to https://web3js.readthedocs.io/en/v1.2.2/web3-eth-contract.html#contract-events, we should be doing: ```javascript const log = state.contracts.ethernaut.LevelCompletedLog( { filter:...
You might want to take this one https://github.com/trufflesuite/truffle/issues/624 into account too, perhaps it becomes an issue during your tests against Geth. I lost several hours of _why on earth are...
wow, great answers 🙌 I'll try to summarize the most relevant points here. Everything not included I acknowledged and agreed with you. 2\. To different extents, it seems we all...
+1 to supporting syntax highlighting in Yul
Hi there! Adding my perspective to the discussion. > since they're pretty low-level themselves and we expect people to use low-level calls for that. AFAIK, that's not happening in reality....