Skip to content

Latest commit

 

History

History
39 lines (19 loc) · 1.33 KB

AbiFunction.md

File metadata and controls

39 lines (19 loc) · 1.33 KB

AbiFunction

Properties

Name Type Description Notes
type string The type if the function [default to undefined]
inputs Array<Parameter> The parameters that this function/constructor posses [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]
outputs Array<Parameter> The parameters that this &#39;read&#39; function returns [optional] [default to undefined]
description string The documentation of this function (if has any) [optional] [default to undefined]

Enum: AbiFunctionTypeEnum

  • Function (value: 'function')

  • Constructor (value: 'constructor')

Enum: AbiFunctionStateMutabilityEnum

  • 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]