Skip to content

Latest commit

 

History

History
27 lines (15 loc) · 776 Bytes

LeanAbiFunction.md

File metadata and controls

27 lines (15 loc) · 776 Bytes

LeanAbiFunction

Properties

Name Type Description Notes
name String The function name [optional]
inputs List<ParameterWithValue> The function inputs
outputs List<ParameterWithValue> The function outputs [optional]
stateMutability StateMutabilityEnum The state mutability of the function (e.g., view, pure, nonpayable, payable) [optional]

Enum: StateMutabilityEnum

Name Value
VIEW "view"
PURE "pure"
NONPAYABLE "nonpayable"
PAYABLE "payable"