Skip to content

Method

class algokit_utils.applications.app_spec.arc56.Method

Method information.

actions : Actions

The allowed actions

args : list[MethodArg]

The method arguments

name : str

The method name

returns : Returns

The return information

desc : str | None = None

The optional description

events : list[Event] | None = None

The optional list of events

readonly : bool | None = None

The optional readonly flag

recommendations : Recommendations | None = None

The optional execution recommendations

to_abi_method() → algosdk.abi.Method

Convert to ABI method.

  • Raises: ValueError – If underlying ABI method is not initialized
  • Returns: ABI method

static from_dict(data: dict[str, Any]) → Method