Optional AbiParameter name #88
-
I noticed in #52 that an intentional decision was made to make the As far as I can tell, the I didn't see any mention of this field being optional in the Solidity ABI specification, but I'll admit that I only tried looking this up in the last few versions of the Solidity docs. |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 1 reply
-
Also, I wasn't sure if this should be categorized as |
Beta Was this translation helpful? Give feedback.
-
Good points! We saw some folks using ABIs with wagmi, where they removed |
Beta Was this translation helpful? Give feedback.
Good points! We saw some folks using ABIs with wagmi, where they removed
name: ''
to make their code less verbose (or it wasn't defined in the first place - not sure where they got those ABIs from). Rather than force folks to addname: ''
everywhere, we made it optional asname: ''
seems nearly the same asname?: undefined
.