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