-
Hi all, Could anyone tell me how you approached this challenge? Thanks in advance! |
Beta Was this translation helpful? Give feedback.
Replies: 3 comments 5 replies
-
Hello @usereri , after i carefully read and study the transactions that have been sent to the contract address of the lesson 8 challenge, i realize that you just have to call the As you can see in the above image the first argument is a uint256 and the second argument is of type string which is your twitter handle. I have noticed every person that successfully call the I hope you have hint on about how to solve the challenge now |
Beta Was this translation helpful? Give feedback.
-
The contract address in the constants.js file needs to be updated to 0xf215a0b6DD88d6029b5385D6fab51968337E963D. https://ipfs.io/ipfs/QmUgc1xpNgTMwSF2GBS5FTFKmSdrmSnLJD5DoYZtcQ2n5X/ -> constants.js points to a different smart contract. Gas estimation will always fail. You can download the files locally, edit the sepoliaAddress to 0xf215a0b6DD88d6029b5385D6fab51968337E963D and run on a local server. Fun fact: Index for this challenge (Lesson 8) is 11. :) |
Beta Was this translation helpful? Give feedback.
Hello @usereri , after i carefully read and study the transactions that have been sent to the contract address of the lesson 8 challenge, i realize that you just have to call the
solveChallenge
method on the contract address[0xf215a0b6DD88d6029b5385D6fab51968337E963D]
of the challenge. Yea the contract isn't verified on etherscan so you won't have the luxury of just calling the method by clicking on some button on a user interface. So you would have to do a low level call by usingcontractAddress.call(callData)
thesolveChallenge
method takes two argument as shown belowAs you can see in the above image the first argument is a uint256 and the second argument is of type string which is y…