OPERATION_ DOCUMENT
The minimized GraphQL document being sent to the server to save a few bytes. The un-minimized version is:
query getNormalizedMoveStruct($packageId: SuiAddress!, $module: String!, $struct: String!) {
object(address: $packageId) {
asMovePackage {
address
module(name: $module) {
fileFormatVersion
struct(name: $struct) {
__typename
...RPC_MOVE_STRUCT_FIELDS
}
}
}
}
}
fragment RPC_MOVE_STRUCT_FIELDS on MoveStruct {
name
abilities
fields {
name
type {
signature
}
}
typeParameters {
isPhantom
constraints
}
}
Content copied to clipboard