Skip to content

Latest commit

 

History

History
28 lines (14 loc) · 994 Bytes

LeanAbiFunction.md

File metadata and controls

28 lines (14 loc) · 994 Bytes

LeanAbiFunction

Properties

Name Type Description Notes
inputs Array<ParameterWithValue> The function inputs [default to undefined]
name string The function name [optional] [default to undefined]
outputs Array<ParameterWithValue> The function outputs [optional] [default to undefined]
stateMutability string The state mutability of the function (e.g., view, pure, nonpayable, payable) [optional] [default to undefined]

Enum: LeanAbiFunctionStateMutabilityEnum

  • View (value: 'view')

  • Pure (value: 'pure')

  • Nonpayable (value: 'nonpayable')

  • Payable (value: 'payable')

[Back to top] [Back to API list] [Back to Model list] [Back to README]