Send a Transaction With Arguments To Your Smart Contract On Anvil using Cast

Noah Hein
InstructorNoah Hein
Share this video with your friends

Social Share Links

Send Tweet
Published 2 years ago
Updated 2 years ago

We will start off by using cast to interact with our contract that's deployed locally on Anvil. This time instead of calling increment we will call decrement. This will teach us how to interact with our smart contract whenever it expects the user to supply some data.

Instructor: [0:00] Now we can try what it looks like to call the decrement function. That would be relatively the same thing. Instead of increment, we're going to want to decrement this. The difference here is that while increment doesn't take any arguments, decrement does. [0:22] Here we can do decrement. Then here, we can pass in 2. You can see that doesn't look quite right. You can see that that didn't work. We can't just pass in directly here. What actually cast wants us to do is it wants us to put in the data type that we're expecting here. We're going to pass in uint256. Then, right after that, it will take all of your arguments.

[0:53] If you had multiple arguments, you would then space them out appropriately. Since we just have the one, we'll say, "Hey, we want to decrement this." You can see, cool, that works. Our block number increased. Now we would expect our getNum to return 9.

[1:10] We'll double-check that. You can see that, cool, we are now getting 9 back on our getNum. That's what it looks like to interact with your smart contract on your local testnet.

egghead
egghead
~ 40 minutes ago

Member comments are a way for members to communicate, interact, and ask questions about a lesson.

The instructor or someone from the community might respond to your question Here are a few basic guidelines to commenting on egghead.io

Be on-Topic

Comments are for discussing a lesson. If you're having a general issue with the website functionality, please contact us at support@egghead.io.

Avoid meta-discussion

  • This was great!
  • This was horrible!
  • I didn't like this because it didn't match my skill level.
  • +1 It will likely be deleted as spam.

Code Problems?

Should be accompanied by code! Codesandbox or Stackblitz provide a way to share code and discuss it in context

Details and Context

Vague question? Vague answer. Any details and context you can provide will lure more interesting answers!

Markdown supported.
Become a member to join the discussionEnroll Today