OPERATION_ DOCUMENT
The minimized GraphQL document being sent to the server to save a few bytes. The un-minimized version is:
query getNormalizedMoveFunction($packageId: SuiAddress!, $module: String!, $function: String!) {
object(address: $packageId) {
address
asMovePackage {
module(name: $module) {
fileFormatVersion
function(name: $function) {
__typename
...RPC_MOVE_FUNCTION_FIELDS
}
}
}
}
}
fragment RPC_MOVE_FUNCTION_FIELDS on MoveFunction {
name
visibility
isEntry
parameters {
signature
}
typeParameters {
constraints
}
return {
repr
signature
}
}
Content copied to clipboard