OPERATION_ DOCUMENT
The minimized GraphQL document being sent to the server to save a few bytes. The un-minimized version is:
query getCoins($owner: SuiAddress!, $first: Int, $cursor: String, $type: String = "0x2::sui::SUI" ) {
address(address: $owner) {
address
coins(first: $first, after: $cursor, type: $type) {
pageInfo {
hasNextPage
endCursor
}
nodes {
coinBalance
contents {
type {
repr
}
}
address
version
digest
previousTransactionBlock {
digest
}
}
}
}
}Content copied to clipboard