Skip to content

Latest commit

 

History

History
47 lines (23 loc) · 1.47 KB

AbiFunction.md

File metadata and controls

47 lines (23 loc) · 1.47 KB

AbiFunction

Properties

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 &#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

  • Constructor (value: 'constructor')

  • Function (value: 'function')

  • Error (value: 'error')

  • Event (value: 'event')

  • Receive (value: 'receive')

  • Fallback (value: 'fallback')

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]