Move
Functions
Link copied to clipboard
open suspend override fun getMoveFunctionArgTypes(id: String): Result<GetMoveFunctionArgTypesQuery.Data?, SuiError>
Fetches the argument types for a specific Move function.
Link copied to clipboard
open suspend override fun getNormalizedMoveFunction(id: String): Result<GetNormalizedMoveFunctionQuery.Data?, SuiError>
Fetches the normalized (desugared and with types expanded) representation of a Move function.
Link copied to clipboard
open suspend override fun getNormalizedMoveModule(packageId: String, module: String): Result<GetNormalizedMoveModuleQuery.Data?, SuiError>
Fetches the normalized representation of a specific module within a package.
Link copied to clipboard
open suspend override fun getNormalizedMoveModulesByPackage(packageId: String, cursor: String?): Result<GetNormalizedMoveModulesByPackageQuery.Data?, SuiError>
Fetches a paginated list of all normalized modules within a given package.
Link copied to clipboard
open suspend override fun getNormalizedMoveStruct(id: String): Result<GetNormalizedMoveStructQuery.Data?, SuiError>
Fetches the normalized representation of a Move struct.
Link copied to clipboard
Resolves the on-chain memory layout for a specified Move type.
Link copied to clipboard
open suspend override fun paginateMoveModuleLists(packageId: String, module: String, hasMoreFriends: Boolean, hasMoreStructs: Boolean, hasMoreFunctions: Boolean, hasMoreEnums: Boolean, afterFriends: String?, afterStructs: String?, afterFunctions: String?, afterEnums: String?): Result<PaginateMoveModuleListsQuery.Data?, SuiError>
Fetches paginated lists of components within a Move module.