6 Comments

geth plugin seems to be deprecated in latest version (0.8.9)

Expand full comment

Good catch, yes they renamed it to 'node'

Expand full comment

Not sure if an error, but in the hello_world.vy example above, the line <greeting: String[24]> should be <greeting: public(String[24]). I got an ApeAttributeError when I tried the code exactly above.

Expand full comment

Good catch, thanks! Yes, I had forgotten to make 'greeting' a public variable, which automatically creates a greeting() view method to return the value. I've edited the post with that fix.

Expand full comment

Hey there, I just subbed to your Substack, good stuff.

I bought quite a few trading tools in JavaScript and smart contracts in C++. Nothing quite as advanced as what you're working with. But I appreciate contact, and I'm considering a paid subscription.

I went ahead and recommended you to our readers, who I teach about AI code generation. I hope it helps more people find your stuff.

Have a good weekend!

Expand full comment

Also, I needed to add this to get multicall to work:

from ape_ethereum import multicall

call = multicall.Call()

Expand full comment