Skip to main content
⚠️ This is the beta version of the Sui GraphQL schema. The beta schema will replace the alpha GraphQL schema upon its official release.

MoveCallCommand

No description

type MoveCallCommand {
package: SuiAddress
module: String
functionName: String
arguments: [TransactionArgument!]!
}

Fields

MoveCallCommand.package ● SuiAddress scalar

The storage ID of the package the function being called is defined in.

MoveCallCommand.module ● String scalar

The name of the module the function being called is defined in.

MoveCallCommand.functionName ● String scalar

The name of the function being called.

MoveCallCommand.arguments ● [TransactionArgument!]! non-null union

The actual function parameters passed in for this move call.

Implemented By

Command union