Kyle Baker
Kyle Baker
@cvan any chance could you get to this? this info is super out of date! a-frame's vr button alt text still points there, and I'll push to have that updated,...
I'm more familiar with ethers, but trying to dig into this and looking into truffle https://www.trufflesuite.com/docs/truffle/getting-started/interacting-with-your-contracts I'd guess that I could do something like this: ```js ethernaut.owner.estimateGas() ``` but that...
I have zero clue why this is working, but I'm able to get an address back by running this: ```js await ethernaut.contract.methods.owner.call().call() > '0x09902A56d04a9446601a0d451E07459dC5aF0820' ``` that's quite a mess, but...
fwiw: this was me following the opening instructions in order, to play with the ethernaut contract a bit before moving on. It didn't work, had to use the workaround above,...
My path to solving it literally involved me sitting down and converting the on-chain bytecode to opcodes and manually calculating gas usage of each executed bytecode up through the `GAS`...
> have you considered using this repo ? did you forget to add a link? Not sure what repo you're referring to. > In any case you are right that...
Did you ever get to the bottom of this?
There is a misleading part of the readme regarding this, and it might have been the source of your error. In my readme pull request, I updated their info to...
I was checking out your pull request and considering adding it to my fork [here](https://github.com/kylebakerio/aframe-super-keyboard), but wanted to better understand it. Unfortunately, your glitch fails to work for me. If...
Oh man, thanks for mentioning this. I had a weird raycaster issue in an old project I had never diagnosed properly, I bet this was it! lol. Good catch. I'll...