| Name | Type | Description | Notes |
|---|---|---|---|
| type | string | The type of the function | [default to undefined] |
| name | string | The name of the contract function as it appears in the ABI | [optional] [default to undefined] |
| stateMutability | string | The state mutability of the contract function as it appears in the ABI | [optional] [default to undefined] |
| inputs | Array<Parameter> | The parameters that this function/constructor posses | [optional] [default to undefined] |
| outputs | Array<Parameter> | The parameters that this 'read' function returns | [optional] [default to undefined] |
| description | string | The documentation of this function (if has any) | [optional] [default to undefined] |
-
Constructor(value:'constructor') -
Function(value:'function') -
Error(value:'error') -
Event(value:'event') -
Receive(value:'receive') -
Fallback(value:'fallback')
-
Pure(value:'pure') -
View(value:'view') -
Nonpayable(value:'nonpayable') -
Payable(value:'payable')
[Back to top] [Back to API list] [Back to Model list] [Back to README]