@mysten/sui 1.16.2 → 1.18.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (147) hide show
  1. package/CHANGELOG.md +23 -0
  2. package/dist/cjs/bcs/bcs.d.ts +13 -0
  3. package/dist/cjs/bcs/bcs.js +6 -0
  4. package/dist/cjs/bcs/bcs.js.map +2 -2
  5. package/dist/cjs/bcs/index.d.ts +13 -0
  6. package/dist/cjs/bcs/index.js +2 -1
  7. package/dist/cjs/bcs/index.js.map +2 -2
  8. package/dist/cjs/client/types/generated.d.ts +76 -27
  9. package/dist/cjs/client/types/generated.js.map +1 -1
  10. package/dist/cjs/client/types/params.d.ts +5 -1
  11. package/dist/cjs/client/types/params.js.map +1 -1
  12. package/dist/cjs/cryptography/publickey.d.ts +4 -0
  13. package/dist/cjs/cryptography/publickey.js +6 -0
  14. package/dist/cjs/cryptography/publickey.js.map +2 -2
  15. package/dist/cjs/cryptography/signature-scheme.d.ts +3 -1
  16. package/dist/cjs/cryptography/signature-scheme.js +4 -2
  17. package/dist/cjs/cryptography/signature-scheme.js.map +2 -2
  18. package/dist/cjs/cryptography/signature.d.ts +8 -0
  19. package/dist/cjs/cryptography/signature.js +5 -2
  20. package/dist/cjs/cryptography/signature.js.map +3 -3
  21. package/dist/cjs/graphql/generated/latest/tada-env.d.js +17 -0
  22. package/dist/cjs/graphql/generated/latest/tada-env.d.js.map +7 -0
  23. package/dist/cjs/graphql/generated/latest/tsconfig.tada.js +12 -0
  24. package/dist/cjs/graphql/generated/latest/tsconfig.tada.js.map +7 -0
  25. package/dist/cjs/graphql/schemas/latest/index.d.ts +9831 -0
  26. package/dist/cjs/graphql/schemas/latest/index.js +31 -0
  27. package/dist/cjs/graphql/schemas/latest/index.js.map +7 -0
  28. package/dist/cjs/keypairs/ed25519/ed25519-hd-key.d.ts +0 -5
  29. package/dist/cjs/keypairs/ed25519/ed25519-hd-key.js +1 -25
  30. package/dist/cjs/keypairs/ed25519/ed25519-hd-key.js.map +3 -3
  31. package/dist/cjs/keypairs/ed25519/keypair.js +22 -18
  32. package/dist/cjs/keypairs/ed25519/keypair.js.map +3 -3
  33. package/dist/cjs/keypairs/ed25519/publickey.js +2 -12
  34. package/dist/cjs/keypairs/ed25519/publickey.js.map +3 -3
  35. package/dist/cjs/keypairs/passkey/index.d.ts +3 -0
  36. package/dist/cjs/keypairs/passkey/index.js +28 -0
  37. package/dist/cjs/keypairs/passkey/index.js.map +7 -0
  38. package/dist/cjs/keypairs/passkey/keypair.d.ts +59 -0
  39. package/dist/cjs/keypairs/passkey/keypair.js +168 -0
  40. package/dist/cjs/keypairs/passkey/keypair.js.map +7 -0
  41. package/dist/cjs/keypairs/passkey/publickey.d.ts +72 -0
  42. package/dist/cjs/keypairs/passkey/publickey.js +168 -0
  43. package/dist/cjs/keypairs/passkey/publickey.js.map +7 -0
  44. package/dist/cjs/transactions/ObjectCache.d.ts +2 -1
  45. package/dist/cjs/transactions/ObjectCache.js +8 -3
  46. package/dist/cjs/transactions/ObjectCache.js.map +2 -2
  47. package/dist/cjs/transactions/Transaction.d.ts +5 -1
  48. package/dist/cjs/transactions/Transaction.js +8 -8
  49. package/dist/cjs/transactions/Transaction.js.map +2 -2
  50. package/dist/cjs/transactions/executor/serial.d.ts +2 -2
  51. package/dist/cjs/transactions/executor/serial.js +3 -5
  52. package/dist/cjs/transactions/executor/serial.js.map +3 -3
  53. package/dist/cjs/verify/verify.d.ts +5 -1
  54. package/dist/cjs/verify/verify.js +22 -10
  55. package/dist/cjs/verify/verify.js.map +2 -2
  56. package/dist/cjs/version.d.ts +1 -1
  57. package/dist/cjs/version.js +1 -1
  58. package/dist/cjs/version.js.map +1 -1
  59. package/dist/cjs/zklogin/publickey.d.ts +4 -0
  60. package/dist/cjs/zklogin/publickey.js +22 -10
  61. package/dist/cjs/zklogin/publickey.js.map +2 -2
  62. package/dist/esm/bcs/bcs.d.ts +13 -0
  63. package/dist/esm/bcs/bcs.js +6 -0
  64. package/dist/esm/bcs/bcs.js.map +2 -2
  65. package/dist/esm/bcs/index.d.ts +13 -0
  66. package/dist/esm/bcs/index.js +3 -1
  67. package/dist/esm/bcs/index.js.map +2 -2
  68. package/dist/esm/client/types/generated.d.ts +76 -27
  69. package/dist/esm/client/types/params.d.ts +5 -1
  70. package/dist/esm/cryptography/publickey.d.ts +4 -0
  71. package/dist/esm/cryptography/publickey.js +6 -0
  72. package/dist/esm/cryptography/publickey.js.map +2 -2
  73. package/dist/esm/cryptography/signature-scheme.d.ts +3 -1
  74. package/dist/esm/cryptography/signature-scheme.js +4 -2
  75. package/dist/esm/cryptography/signature-scheme.js.map +2 -2
  76. package/dist/esm/cryptography/signature.d.ts +8 -0
  77. package/dist/esm/cryptography/signature.js +3 -0
  78. package/dist/esm/cryptography/signature.js.map +2 -2
  79. package/dist/esm/graphql/generated/latest/tada-env.d.js +1 -0
  80. package/dist/esm/graphql/generated/latest/tada-env.d.js.map +7 -0
  81. package/dist/esm/graphql/generated/latest/tsconfig.tada.js +17 -0
  82. package/dist/esm/graphql/generated/latest/tsconfig.tada.js.map +7 -0
  83. package/dist/esm/graphql/schemas/latest/index.d.ts +9831 -0
  84. package/dist/esm/graphql/schemas/latest/index.js +10 -0
  85. package/dist/esm/graphql/schemas/latest/index.js.map +7 -0
  86. package/dist/esm/keypairs/ed25519/ed25519-hd-key.d.ts +0 -5
  87. package/dist/esm/keypairs/ed25519/ed25519-hd-key.js +1 -15
  88. package/dist/esm/keypairs/ed25519/ed25519-hd-key.js.map +2 -2
  89. package/dist/esm/keypairs/ed25519/keypair.js +22 -8
  90. package/dist/esm/keypairs/ed25519/keypair.js.map +2 -2
  91. package/dist/esm/keypairs/ed25519/publickey.js +2 -2
  92. package/dist/esm/keypairs/ed25519/publickey.js.map +2 -2
  93. package/dist/esm/keypairs/passkey/index.d.ts +3 -0
  94. package/dist/esm/keypairs/passkey/index.js +8 -0
  95. package/dist/esm/keypairs/passkey/index.js.map +7 -0
  96. package/dist/esm/keypairs/passkey/keypair.d.ts +59 -0
  97. package/dist/esm/keypairs/passkey/keypair.js +153 -0
  98. package/dist/esm/keypairs/passkey/keypair.js.map +7 -0
  99. package/dist/esm/keypairs/passkey/publickey.d.ts +72 -0
  100. package/dist/esm/keypairs/passkey/publickey.js +148 -0
  101. package/dist/esm/keypairs/passkey/publickey.js.map +7 -0
  102. package/dist/esm/transactions/ObjectCache.d.ts +2 -1
  103. package/dist/esm/transactions/ObjectCache.js +8 -3
  104. package/dist/esm/transactions/ObjectCache.js.map +2 -2
  105. package/dist/esm/transactions/Transaction.d.ts +5 -1
  106. package/dist/esm/transactions/Transaction.js +8 -8
  107. package/dist/esm/transactions/Transaction.js.map +2 -2
  108. package/dist/esm/transactions/executor/serial.d.ts +2 -2
  109. package/dist/esm/transactions/executor/serial.js +3 -5
  110. package/dist/esm/transactions/executor/serial.js.map +2 -2
  111. package/dist/esm/verify/verify.d.ts +5 -1
  112. package/dist/esm/verify/verify.js +13 -1
  113. package/dist/esm/verify/verify.js.map +2 -2
  114. package/dist/esm/version.d.ts +1 -1
  115. package/dist/esm/version.js +1 -1
  116. package/dist/esm/version.js.map +1 -1
  117. package/dist/esm/zklogin/publickey.d.ts +4 -0
  118. package/dist/esm/zklogin/publickey.js +21 -9
  119. package/dist/esm/zklogin/publickey.js.map +2 -2
  120. package/dist/tsconfig.esm.tsbuildinfo +1 -1
  121. package/dist/tsconfig.tsbuildinfo +1 -1
  122. package/graphql/schemas/latest/package.json +6 -0
  123. package/keypairs/passkey/package.json +6 -0
  124. package/package.json +10 -2
  125. package/src/bcs/bcs.ts +6 -0
  126. package/src/bcs/index.ts +2 -0
  127. package/src/client/types/generated.ts +110 -59
  128. package/src/client/types/params.ts +5 -1
  129. package/src/cryptography/publickey.ts +7 -0
  130. package/src/cryptography/signature-scheme.ts +9 -1
  131. package/src/cryptography/signature.ts +3 -0
  132. package/src/graphql/generated/latest/schema.graphql +4808 -0
  133. package/src/graphql/generated/latest/tada-env.d.ts +220 -0
  134. package/src/graphql/generated/latest/tsconfig.tada.json +11 -0
  135. package/src/graphql/schemas/latest/index.ts +17 -0
  136. package/src/keypairs/ed25519/ed25519-hd-key.ts +4 -14
  137. package/src/keypairs/ed25519/keypair.ts +23 -8
  138. package/src/keypairs/ed25519/publickey.ts +2 -2
  139. package/src/keypairs/passkey/index.ts +5 -0
  140. package/src/keypairs/passkey/keypair.ts +209 -0
  141. package/src/keypairs/passkey/publickey.ts +188 -0
  142. package/src/transactions/ObjectCache.ts +5 -1
  143. package/src/transactions/Transaction.ts +18 -14
  144. package/src/transactions/executor/serial.ts +3 -5
  145. package/src/verify/verify.ts +24 -3
  146. package/src/version.ts +1 -1
  147. package/src/zklogin/publickey.ts +19 -8
@@ -0,0 +1,220 @@
1
+ /* eslint-disable */
2
+ /* prettier-ignore */
3
+
4
+ /** An IntrospectionQuery representation of your schema.
5
+ *
6
+ * @remarks
7
+ * This is an introspection of your schema saved as a file by GraphQLSP.
8
+ * It will automatically be used by `gql.tada` to infer the types of your GraphQL documents.
9
+ * If you need to reuse this data or update your `scalars`, update `tadaOutputLocation` to
10
+ * instead save to a .ts instead of a .d.ts file.
11
+ */
12
+ export type introspection = {
13
+ name: never;
14
+ query: 'Query';
15
+ mutation: 'Mutation';
16
+ subscription: never;
17
+ types: {
18
+ 'ActiveJwk': { kind: 'OBJECT'; name: 'ActiveJwk'; fields: { 'alg': { name: 'alg'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; } }; 'e': { name: 'e'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; } }; 'epoch': { name: 'epoch'; type: { kind: 'OBJECT'; name: 'Epoch'; ofType: null; } }; 'iss': { name: 'iss'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; } }; 'kid': { name: 'kid'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; } }; 'kty': { name: 'kty'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; } }; 'n': { name: 'n'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; } }; }; };
19
+ 'ActiveJwkConnection': { kind: 'OBJECT'; name: 'ActiveJwkConnection'; fields: { 'edges': { name: 'edges'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'ActiveJwkEdge'; ofType: null; }; }; }; } }; 'nodes': { name: 'nodes'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'ActiveJwk'; ofType: null; }; }; }; } }; 'pageInfo': { name: 'pageInfo'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'PageInfo'; ofType: null; }; } }; }; };
20
+ 'ActiveJwkEdge': { kind: 'OBJECT'; name: 'ActiveJwkEdge'; fields: { 'cursor': { name: 'cursor'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; } }; 'node': { name: 'node'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'ActiveJwk'; ofType: null; }; } }; }; };
21
+ 'Address': { kind: 'OBJECT'; name: 'Address'; fields: { 'address': { name: 'address'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'SuiAddress'; ofType: null; }; } }; 'balance': { name: 'balance'; type: { kind: 'OBJECT'; name: 'Balance'; ofType: null; } }; 'balances': { name: 'balances'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'BalanceConnection'; ofType: null; }; } }; 'coins': { name: 'coins'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'CoinConnection'; ofType: null; }; } }; 'defaultSuinsName': { name: 'defaultSuinsName'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'objects': { name: 'objects'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'MoveObjectConnection'; ofType: null; }; } }; 'stakedSuis': { name: 'stakedSuis'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'StakedSuiConnection'; ofType: null; }; } }; 'suinsRegistrations': { name: 'suinsRegistrations'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'SuinsRegistrationConnection'; ofType: null; }; } }; 'transactionBlocks': { name: 'transactionBlocks'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'TransactionBlockConnection'; ofType: null; }; } }; }; };
22
+ 'AddressConnection': { kind: 'OBJECT'; name: 'AddressConnection'; fields: { 'edges': { name: 'edges'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'AddressEdge'; ofType: null; }; }; }; } }; 'nodes': { name: 'nodes'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Address'; ofType: null; }; }; }; } }; 'pageInfo': { name: 'pageInfo'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'PageInfo'; ofType: null; }; } }; }; };
23
+ 'AddressEdge': { kind: 'OBJECT'; name: 'AddressEdge'; fields: { 'cursor': { name: 'cursor'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; } }; 'node': { name: 'node'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Address'; ofType: null; }; } }; }; };
24
+ 'AddressOwner': { kind: 'OBJECT'; name: 'AddressOwner'; fields: { 'owner': { name: 'owner'; type: { kind: 'OBJECT'; name: 'Owner'; ofType: null; } }; }; };
25
+ 'AddressTransactionBlockRelationship': { name: 'AddressTransactionBlockRelationship'; enumValues: 'SENT' | 'AFFECTED'; };
26
+ 'Authenticator': { kind: 'UNION'; name: 'Authenticator'; fields: {}; possibleTypes: 'Address'; };
27
+ 'AuthenticatorStateCreateTransaction': { kind: 'OBJECT'; name: 'AuthenticatorStateCreateTransaction'; fields: { '_': { name: '_'; type: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; } }; }; };
28
+ 'AuthenticatorStateExpireTransaction': { kind: 'OBJECT'; name: 'AuthenticatorStateExpireTransaction'; fields: { 'authenticatorObjInitialSharedVersion': { name: 'authenticatorObjInitialSharedVersion'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'UInt53'; ofType: null; }; } }; 'minEpoch': { name: 'minEpoch'; type: { kind: 'OBJECT'; name: 'Epoch'; ofType: null; } }; }; };
29
+ 'AuthenticatorStateUpdateTransaction': { kind: 'OBJECT'; name: 'AuthenticatorStateUpdateTransaction'; fields: { 'authenticatorObjInitialSharedVersion': { name: 'authenticatorObjInitialSharedVersion'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'UInt53'; ofType: null; }; } }; 'epoch': { name: 'epoch'; type: { kind: 'OBJECT'; name: 'Epoch'; ofType: null; } }; 'newActiveJwks': { name: 'newActiveJwks'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'ActiveJwkConnection'; ofType: null; }; } }; 'round': { name: 'round'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'UInt53'; ofType: null; }; } }; }; };
30
+ 'AvailableRange': { kind: 'OBJECT'; name: 'AvailableRange'; fields: { 'first': { name: 'first'; type: { kind: 'OBJECT'; name: 'Checkpoint'; ofType: null; } }; 'last': { name: 'last'; type: { kind: 'OBJECT'; name: 'Checkpoint'; ofType: null; } }; }; };
31
+ 'Balance': { kind: 'OBJECT'; name: 'Balance'; fields: { 'coinObjectCount': { name: 'coinObjectCount'; type: { kind: 'SCALAR'; name: 'UInt53'; ofType: null; } }; 'coinType': { name: 'coinType'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'MoveType'; ofType: null; }; } }; 'totalBalance': { name: 'totalBalance'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; } }; }; };
32
+ 'BalanceChange': { kind: 'OBJECT'; name: 'BalanceChange'; fields: { 'amount': { name: 'amount'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; } }; 'coinType': { name: 'coinType'; type: { kind: 'OBJECT'; name: 'MoveType'; ofType: null; } }; 'owner': { name: 'owner'; type: { kind: 'OBJECT'; name: 'Owner'; ofType: null; } }; }; };
33
+ 'BalanceChangeConnection': { kind: 'OBJECT'; name: 'BalanceChangeConnection'; fields: { 'edges': { name: 'edges'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'BalanceChangeEdge'; ofType: null; }; }; }; } }; 'nodes': { name: 'nodes'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'BalanceChange'; ofType: null; }; }; }; } }; 'pageInfo': { name: 'pageInfo'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'PageInfo'; ofType: null; }; } }; }; };
34
+ 'BalanceChangeEdge': { kind: 'OBJECT'; name: 'BalanceChangeEdge'; fields: { 'cursor': { name: 'cursor'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; } }; 'node': { name: 'node'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'BalanceChange'; ofType: null; }; } }; }; };
35
+ 'BalanceConnection': { kind: 'OBJECT'; name: 'BalanceConnection'; fields: { 'edges': { name: 'edges'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'BalanceEdge'; ofType: null; }; }; }; } }; 'nodes': { name: 'nodes'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Balance'; ofType: null; }; }; }; } }; 'pageInfo': { name: 'pageInfo'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'PageInfo'; ofType: null; }; } }; }; };
36
+ 'BalanceEdge': { kind: 'OBJECT'; name: 'BalanceEdge'; fields: { 'cursor': { name: 'cursor'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; } }; 'node': { name: 'node'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Balance'; ofType: null; }; } }; }; };
37
+ 'Base64': unknown;
38
+ 'BigInt': unknown;
39
+ 'Boolean': unknown;
40
+ 'BridgeCommitteeInitTransaction': { kind: 'OBJECT'; name: 'BridgeCommitteeInitTransaction'; fields: { 'bridgeObjInitialSharedVersion': { name: 'bridgeObjInitialSharedVersion'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'UInt53'; ofType: null; }; } }; }; };
41
+ 'BridgeStateCreateTransaction': { kind: 'OBJECT'; name: 'BridgeStateCreateTransaction'; fields: { 'chainId': { name: 'chainId'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; } }; }; };
42
+ 'ChangeEpochTransaction': { kind: 'OBJECT'; name: 'ChangeEpochTransaction'; fields: { 'computationCharge': { name: 'computationCharge'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; } }; 'epoch': { name: 'epoch'; type: { kind: 'OBJECT'; name: 'Epoch'; ofType: null; } }; 'nonRefundableStorageFee': { name: 'nonRefundableStorageFee'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; } }; 'protocolVersion': { name: 'protocolVersion'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'UInt53'; ofType: null; }; } }; 'startTimestamp': { name: 'startTimestamp'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'DateTime'; ofType: null; }; } }; 'storageCharge': { name: 'storageCharge'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; } }; 'storageRebate': { name: 'storageRebate'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; } }; 'systemPackages': { name: 'systemPackages'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'MovePackageConnection'; ofType: null; }; } }; }; };
43
+ 'Checkpoint': { kind: 'OBJECT'; name: 'Checkpoint'; fields: { 'bcs': { name: 'bcs'; type: { kind: 'SCALAR'; name: 'Base64'; ofType: null; } }; 'digest': { name: 'digest'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; } }; 'epoch': { name: 'epoch'; type: { kind: 'OBJECT'; name: 'Epoch'; ofType: null; } }; 'networkTotalTransactions': { name: 'networkTotalTransactions'; type: { kind: 'SCALAR'; name: 'UInt53'; ofType: null; } }; 'previousCheckpointDigest': { name: 'previousCheckpointDigest'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'rollingGasSummary': { name: 'rollingGasSummary'; type: { kind: 'OBJECT'; name: 'GasCostSummary'; ofType: null; } }; 'sequenceNumber': { name: 'sequenceNumber'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'UInt53'; ofType: null; }; } }; 'timestamp': { name: 'timestamp'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'DateTime'; ofType: null; }; } }; 'transactionBlocks': { name: 'transactionBlocks'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'TransactionBlockConnection'; ofType: null; }; } }; 'validatorSignatures': { name: 'validatorSignatures'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Base64'; ofType: null; }; } }; }; };
44
+ 'CheckpointConnection': { kind: 'OBJECT'; name: 'CheckpointConnection'; fields: { 'edges': { name: 'edges'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'CheckpointEdge'; ofType: null; }; }; }; } }; 'nodes': { name: 'nodes'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Checkpoint'; ofType: null; }; }; }; } }; 'pageInfo': { name: 'pageInfo'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'PageInfo'; ofType: null; }; } }; }; };
45
+ 'CheckpointEdge': { kind: 'OBJECT'; name: 'CheckpointEdge'; fields: { 'cursor': { name: 'cursor'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; } }; 'node': { name: 'node'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Checkpoint'; ofType: null; }; } }; }; };
46
+ 'CheckpointId': { kind: 'INPUT_OBJECT'; name: 'CheckpointId'; isOneOf: false; inputFields: [{ name: 'digest'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'sequenceNumber'; type: { kind: 'SCALAR'; name: 'UInt53'; ofType: null; }; defaultValue: null }]; };
47
+ 'Coin': { kind: 'OBJECT'; name: 'Coin'; fields: { 'address': { name: 'address'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'SuiAddress'; ofType: null; }; } }; 'balance': { name: 'balance'; type: { kind: 'OBJECT'; name: 'Balance'; ofType: null; } }; 'balances': { name: 'balances'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'BalanceConnection'; ofType: null; }; } }; 'bcs': { name: 'bcs'; type: { kind: 'SCALAR'; name: 'Base64'; ofType: null; } }; 'coinBalance': { name: 'coinBalance'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; } }; 'coins': { name: 'coins'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'CoinConnection'; ofType: null; }; } }; 'contents': { name: 'contents'; type: { kind: 'OBJECT'; name: 'MoveValue'; ofType: null; } }; 'defaultSuinsName': { name: 'defaultSuinsName'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'digest': { name: 'digest'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'display': { name: 'display'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'DisplayEntry'; ofType: null; }; }; } }; 'dynamicField': { name: 'dynamicField'; type: { kind: 'OBJECT'; name: 'DynamicField'; ofType: null; } }; 'dynamicFields': { name: 'dynamicFields'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'DynamicFieldConnection'; ofType: null; }; } }; 'dynamicObjectField': { name: 'dynamicObjectField'; type: { kind: 'OBJECT'; name: 'DynamicField'; ofType: null; } }; 'hasPublicTransfer': { name: 'hasPublicTransfer'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; }; } }; 'objects': { name: 'objects'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'MoveObjectConnection'; ofType: null; }; } }; 'owner': { name: 'owner'; type: { kind: 'UNION'; name: 'ObjectOwner'; ofType: null; } }; 'previousTransactionBlock': { name: 'previousTransactionBlock'; type: { kind: 'OBJECT'; name: 'TransactionBlock'; ofType: null; } }; 'receivedTransactionBlocks': { name: 'receivedTransactionBlocks'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'TransactionBlockConnection'; ofType: null; }; } }; 'stakedSuis': { name: 'stakedSuis'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'StakedSuiConnection'; ofType: null; }; } }; 'status': { name: 'status'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'ENUM'; name: 'ObjectKind'; ofType: null; }; } }; 'storageRebate': { name: 'storageRebate'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; } }; 'suinsRegistrations': { name: 'suinsRegistrations'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'SuinsRegistrationConnection'; ofType: null; }; } }; 'version': { name: 'version'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'UInt53'; ofType: null; }; } }; }; };
48
+ 'CoinConnection': { kind: 'OBJECT'; name: 'CoinConnection'; fields: { 'edges': { name: 'edges'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'CoinEdge'; ofType: null; }; }; }; } }; 'nodes': { name: 'nodes'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Coin'; ofType: null; }; }; }; } }; 'pageInfo': { name: 'pageInfo'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'PageInfo'; ofType: null; }; } }; }; };
49
+ 'CoinDenyListStateCreateTransaction': { kind: 'OBJECT'; name: 'CoinDenyListStateCreateTransaction'; fields: { '_': { name: '_'; type: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; } }; }; };
50
+ 'CoinEdge': { kind: 'OBJECT'; name: 'CoinEdge'; fields: { 'cursor': { name: 'cursor'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; } }; 'node': { name: 'node'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Coin'; ofType: null; }; } }; }; };
51
+ 'CoinMetadata': { kind: 'OBJECT'; name: 'CoinMetadata'; fields: { 'address': { name: 'address'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'SuiAddress'; ofType: null; }; } }; 'balance': { name: 'balance'; type: { kind: 'OBJECT'; name: 'Balance'; ofType: null; } }; 'balances': { name: 'balances'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'BalanceConnection'; ofType: null; }; } }; 'bcs': { name: 'bcs'; type: { kind: 'SCALAR'; name: 'Base64'; ofType: null; } }; 'coins': { name: 'coins'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'CoinConnection'; ofType: null; }; } }; 'contents': { name: 'contents'; type: { kind: 'OBJECT'; name: 'MoveValue'; ofType: null; } }; 'decimals': { name: 'decimals'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; } }; 'defaultSuinsName': { name: 'defaultSuinsName'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'description': { name: 'description'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'digest': { name: 'digest'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'display': { name: 'display'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'DisplayEntry'; ofType: null; }; }; } }; 'dynamicField': { name: 'dynamicField'; type: { kind: 'OBJECT'; name: 'DynamicField'; ofType: null; } }; 'dynamicFields': { name: 'dynamicFields'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'DynamicFieldConnection'; ofType: null; }; } }; 'dynamicObjectField': { name: 'dynamicObjectField'; type: { kind: 'OBJECT'; name: 'DynamicField'; ofType: null; } }; 'hasPublicTransfer': { name: 'hasPublicTransfer'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; }; } }; 'iconUrl': { name: 'iconUrl'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'name': { name: 'name'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'objects': { name: 'objects'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'MoveObjectConnection'; ofType: null; }; } }; 'owner': { name: 'owner'; type: { kind: 'UNION'; name: 'ObjectOwner'; ofType: null; } }; 'previousTransactionBlock': { name: 'previousTransactionBlock'; type: { kind: 'OBJECT'; name: 'TransactionBlock'; ofType: null; } }; 'receivedTransactionBlocks': { name: 'receivedTransactionBlocks'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'TransactionBlockConnection'; ofType: null; }; } }; 'stakedSuis': { name: 'stakedSuis'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'StakedSuiConnection'; ofType: null; }; } }; 'status': { name: 'status'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'ENUM'; name: 'ObjectKind'; ofType: null; }; } }; 'storageRebate': { name: 'storageRebate'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; } }; 'suinsRegistrations': { name: 'suinsRegistrations'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'SuinsRegistrationConnection'; ofType: null; }; } }; 'supply': { name: 'supply'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; } }; 'symbol': { name: 'symbol'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'version': { name: 'version'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'UInt53'; ofType: null; }; } }; }; };
52
+ 'ConsensusCommitPrologueTransaction': { kind: 'OBJECT'; name: 'ConsensusCommitPrologueTransaction'; fields: { 'commitTimestamp': { name: 'commitTimestamp'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'DateTime'; ofType: null; }; } }; 'consensusCommitDigest': { name: 'consensusCommitDigest'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'epoch': { name: 'epoch'; type: { kind: 'OBJECT'; name: 'Epoch'; ofType: null; } }; 'round': { name: 'round'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'UInt53'; ofType: null; }; } }; }; };
53
+ 'ConsensusV2': { kind: 'OBJECT'; name: 'ConsensusV2'; fields: { 'authenticator': { name: 'authenticator'; type: { kind: 'UNION'; name: 'Authenticator'; ofType: null; } }; 'startVersion': { name: 'startVersion'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'UInt53'; ofType: null; }; } }; }; };
54
+ 'DateTime': unknown;
55
+ 'DependencyConnection': { kind: 'OBJECT'; name: 'DependencyConnection'; fields: { 'edges': { name: 'edges'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'DependencyEdge'; ofType: null; }; }; }; } }; 'nodes': { name: 'nodes'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'TransactionBlock'; ofType: null; }; }; }; } }; 'pageInfo': { name: 'pageInfo'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'PageInfo'; ofType: null; }; } }; }; };
56
+ 'DependencyEdge': { kind: 'OBJECT'; name: 'DependencyEdge'; fields: { 'cursor': { name: 'cursor'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; } }; 'node': { name: 'node'; type: { kind: 'OBJECT'; name: 'TransactionBlock'; ofType: null; } }; }; };
57
+ 'DisplayEntry': { kind: 'OBJECT'; name: 'DisplayEntry'; fields: { 'error': { name: 'error'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'key': { name: 'key'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; } }; 'value': { name: 'value'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; }; };
58
+ 'DomainFormat': { name: 'DomainFormat'; enumValues: 'AT' | 'DOT'; };
59
+ 'DryRunEffect': { kind: 'OBJECT'; name: 'DryRunEffect'; fields: { 'mutatedReferences': { name: 'mutatedReferences'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'DryRunMutation'; ofType: null; }; }; } }; 'returnValues': { name: 'returnValues'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'DryRunReturn'; ofType: null; }; }; } }; }; };
60
+ 'DryRunMutation': { kind: 'OBJECT'; name: 'DryRunMutation'; fields: { 'bcs': { name: 'bcs'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Base64'; ofType: null; }; } }; 'input': { name: 'input'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'UNION'; name: 'TransactionArgument'; ofType: null; }; } }; 'type': { name: 'type'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'MoveType'; ofType: null; }; } }; }; };
61
+ 'DryRunResult': { kind: 'OBJECT'; name: 'DryRunResult'; fields: { 'error': { name: 'error'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'results': { name: 'results'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'DryRunEffect'; ofType: null; }; }; } }; 'transaction': { name: 'transaction'; type: { kind: 'OBJECT'; name: 'TransactionBlock'; ofType: null; } }; }; };
62
+ 'DryRunReturn': { kind: 'OBJECT'; name: 'DryRunReturn'; fields: { 'bcs': { name: 'bcs'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Base64'; ofType: null; }; } }; 'type': { name: 'type'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'MoveType'; ofType: null; }; } }; }; };
63
+ 'DynamicField': { kind: 'OBJECT'; name: 'DynamicField'; fields: { 'name': { name: 'name'; type: { kind: 'OBJECT'; name: 'MoveValue'; ofType: null; } }; 'value': { name: 'value'; type: { kind: 'UNION'; name: 'DynamicFieldValue'; ofType: null; } }; }; };
64
+ 'DynamicFieldConnection': { kind: 'OBJECT'; name: 'DynamicFieldConnection'; fields: { 'edges': { name: 'edges'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'DynamicFieldEdge'; ofType: null; }; }; }; } }; 'nodes': { name: 'nodes'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'DynamicField'; ofType: null; }; }; }; } }; 'pageInfo': { name: 'pageInfo'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'PageInfo'; ofType: null; }; } }; }; };
65
+ 'DynamicFieldEdge': { kind: 'OBJECT'; name: 'DynamicFieldEdge'; fields: { 'cursor': { name: 'cursor'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; } }; 'node': { name: 'node'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'DynamicField'; ofType: null; }; } }; }; };
66
+ 'DynamicFieldName': { kind: 'INPUT_OBJECT'; name: 'DynamicFieldName'; isOneOf: false; inputFields: [{ name: 'type'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; defaultValue: null }, { name: 'bcs'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Base64'; ofType: null; }; }; defaultValue: null }]; };
67
+ 'DynamicFieldValue': { kind: 'UNION'; name: 'DynamicFieldValue'; fields: {}; possibleTypes: 'MoveObject' | 'MoveValue'; };
68
+ 'EndOfEpochTransaction': { kind: 'OBJECT'; name: 'EndOfEpochTransaction'; fields: { 'transactions': { name: 'transactions'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'EndOfEpochTransactionKindConnection'; ofType: null; }; } }; }; };
69
+ 'EndOfEpochTransactionKind': { kind: 'UNION'; name: 'EndOfEpochTransactionKind'; fields: {}; possibleTypes: 'AuthenticatorStateCreateTransaction' | 'AuthenticatorStateExpireTransaction' | 'BridgeCommitteeInitTransaction' | 'BridgeStateCreateTransaction' | 'ChangeEpochTransaction' | 'CoinDenyListStateCreateTransaction' | 'RandomnessStateCreateTransaction'; };
70
+ 'EndOfEpochTransactionKindConnection': { kind: 'OBJECT'; name: 'EndOfEpochTransactionKindConnection'; fields: { 'edges': { name: 'edges'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'EndOfEpochTransactionKindEdge'; ofType: null; }; }; }; } }; 'nodes': { name: 'nodes'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'UNION'; name: 'EndOfEpochTransactionKind'; ofType: null; }; }; }; } }; 'pageInfo': { name: 'pageInfo'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'PageInfo'; ofType: null; }; } }; }; };
71
+ 'EndOfEpochTransactionKindEdge': { kind: 'OBJECT'; name: 'EndOfEpochTransactionKindEdge'; fields: { 'cursor': { name: 'cursor'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; } }; 'node': { name: 'node'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'UNION'; name: 'EndOfEpochTransactionKind'; ofType: null; }; } }; }; };
72
+ 'Epoch': { kind: 'OBJECT'; name: 'Epoch'; fields: { 'checkpoints': { name: 'checkpoints'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'CheckpointConnection'; ofType: null; }; } }; 'endTimestamp': { name: 'endTimestamp'; type: { kind: 'SCALAR'; name: 'DateTime'; ofType: null; } }; 'epochId': { name: 'epochId'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'UInt53'; ofType: null; }; } }; 'fundInflow': { name: 'fundInflow'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; } }; 'fundOutflow': { name: 'fundOutflow'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; } }; 'fundSize': { name: 'fundSize'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; } }; 'liveObjectSetDigest': { name: 'liveObjectSetDigest'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'netInflow': { name: 'netInflow'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; } }; 'protocolConfigs': { name: 'protocolConfigs'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'ProtocolConfigs'; ofType: null; }; } }; 'referenceGasPrice': { name: 'referenceGasPrice'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; } }; 'safeMode': { name: 'safeMode'; type: { kind: 'OBJECT'; name: 'SafeMode'; ofType: null; } }; 'startTimestamp': { name: 'startTimestamp'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'DateTime'; ofType: null; }; } }; 'storageFund': { name: 'storageFund'; type: { kind: 'OBJECT'; name: 'StorageFund'; ofType: null; } }; 'systemParameters': { name: 'systemParameters'; type: { kind: 'OBJECT'; name: 'SystemParameters'; ofType: null; } }; 'systemStakeSubsidy': { name: 'systemStakeSubsidy'; type: { kind: 'OBJECT'; name: 'StakeSubsidy'; ofType: null; } }; 'systemStateVersion': { name: 'systemStateVersion'; type: { kind: 'SCALAR'; name: 'UInt53'; ofType: null; } }; 'totalCheckpoints': { name: 'totalCheckpoints'; type: { kind: 'SCALAR'; name: 'UInt53'; ofType: null; } }; 'totalGasFees': { name: 'totalGasFees'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; } }; 'totalStakeRewards': { name: 'totalStakeRewards'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; } }; 'totalStakeSubsidies': { name: 'totalStakeSubsidies'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; } }; 'totalTransactions': { name: 'totalTransactions'; type: { kind: 'SCALAR'; name: 'UInt53'; ofType: null; } }; 'transactionBlocks': { name: 'transactionBlocks'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'TransactionBlockConnection'; ofType: null; }; } }; 'validatorSet': { name: 'validatorSet'; type: { kind: 'OBJECT'; name: 'ValidatorSet'; ofType: null; } }; }; };
73
+ 'EpochConnection': { kind: 'OBJECT'; name: 'EpochConnection'; fields: { 'edges': { name: 'edges'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'EpochEdge'; ofType: null; }; }; }; } }; 'nodes': { name: 'nodes'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Epoch'; ofType: null; }; }; }; } }; 'pageInfo': { name: 'pageInfo'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'PageInfo'; ofType: null; }; } }; }; };
74
+ 'EpochEdge': { kind: 'OBJECT'; name: 'EpochEdge'; fields: { 'cursor': { name: 'cursor'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; } }; 'node': { name: 'node'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Epoch'; ofType: null; }; } }; }; };
75
+ 'Event': { kind: 'OBJECT'; name: 'Event'; fields: { 'bcs': { name: 'bcs'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Base64'; ofType: null; }; } }; 'contents': { name: 'contents'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'MoveValue'; ofType: null; }; } }; 'sender': { name: 'sender'; type: { kind: 'OBJECT'; name: 'Address'; ofType: null; } }; 'sendingModule': { name: 'sendingModule'; type: { kind: 'OBJECT'; name: 'MoveModule'; ofType: null; } }; 'timestamp': { name: 'timestamp'; type: { kind: 'SCALAR'; name: 'DateTime'; ofType: null; } }; 'transactionBlock': { name: 'transactionBlock'; type: { kind: 'OBJECT'; name: 'TransactionBlock'; ofType: null; } }; }; };
76
+ 'EventConnection': { kind: 'OBJECT'; name: 'EventConnection'; fields: { 'edges': { name: 'edges'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'EventEdge'; ofType: null; }; }; }; } }; 'nodes': { name: 'nodes'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Event'; ofType: null; }; }; }; } }; 'pageInfo': { name: 'pageInfo'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'PageInfo'; ofType: null; }; } }; }; };
77
+ 'EventEdge': { kind: 'OBJECT'; name: 'EventEdge'; fields: { 'cursor': { name: 'cursor'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; } }; 'node': { name: 'node'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Event'; ofType: null; }; } }; }; };
78
+ 'EventFilter': { kind: 'INPUT_OBJECT'; name: 'EventFilter'; isOneOf: false; inputFields: [{ name: 'sender'; type: { kind: 'SCALAR'; name: 'SuiAddress'; ofType: null; }; defaultValue: null }, { name: 'transactionDigest'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'emittingModule'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'eventType'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }]; };
79
+ 'ExecutionResult': { kind: 'OBJECT'; name: 'ExecutionResult'; fields: { 'effects': { name: 'effects'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'TransactionBlockEffects'; ofType: null; }; } }; 'errors': { name: 'errors'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; } }; }; };
80
+ 'ExecutionStatus': { name: 'ExecutionStatus'; enumValues: 'SUCCESS' | 'FAILURE'; };
81
+ 'Feature': { name: 'Feature'; enumValues: 'ANALYTICS' | 'COINS' | 'DYNAMIC_FIELDS' | 'NAME_SERVICE' | 'SUBSCRIPTIONS' | 'SYSTEM_STATE' | 'MOVE_REGISTRY'; };
82
+ 'GasCoin': { kind: 'OBJECT'; name: 'GasCoin'; fields: { '_': { name: '_'; type: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; } }; }; };
83
+ 'GasCostSummary': { kind: 'OBJECT'; name: 'GasCostSummary'; fields: { 'computationCost': { name: 'computationCost'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; } }; 'nonRefundableStorageFee': { name: 'nonRefundableStorageFee'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; } }; 'storageCost': { name: 'storageCost'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; } }; 'storageRebate': { name: 'storageRebate'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; } }; }; };
84
+ 'GasEffects': { kind: 'OBJECT'; name: 'GasEffects'; fields: { 'gasObject': { name: 'gasObject'; type: { kind: 'OBJECT'; name: 'Object'; ofType: null; } }; 'gasSummary': { name: 'gasSummary'; type: { kind: 'OBJECT'; name: 'GasCostSummary'; ofType: null; } }; }; };
85
+ 'GasInput': { kind: 'OBJECT'; name: 'GasInput'; fields: { 'gasBudget': { name: 'gasBudget'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; } }; 'gasPayment': { name: 'gasPayment'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'ObjectConnection'; ofType: null; }; } }; 'gasPrice': { name: 'gasPrice'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; } }; 'gasSponsor': { name: 'gasSponsor'; type: { kind: 'OBJECT'; name: 'Address'; ofType: null; } }; }; };
86
+ 'GenesisTransaction': { kind: 'OBJECT'; name: 'GenesisTransaction'; fields: { 'objects': { name: 'objects'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'ObjectConnection'; ofType: null; }; } }; }; };
87
+ 'IMoveDatatype': { kind: 'INTERFACE'; name: 'IMoveDatatype'; fields: { 'abilities': { name: 'abilities'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'ENUM'; name: 'MoveAbility'; ofType: null; }; }; } }; 'module': { name: 'module'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'MoveModule'; ofType: null; }; } }; 'name': { name: 'name'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; } }; 'typeParameters': { name: 'typeParameters'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'MoveStructTypeParameter'; ofType: null; }; }; } }; }; possibleTypes: 'MoveDatatype' | 'MoveEnum' | 'MoveStruct'; };
88
+ 'IMoveObject': { kind: 'INTERFACE'; name: 'IMoveObject'; fields: { 'contents': { name: 'contents'; type: { kind: 'OBJECT'; name: 'MoveValue'; ofType: null; } }; 'display': { name: 'display'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'DisplayEntry'; ofType: null; }; }; } }; 'dynamicField': { name: 'dynamicField'; type: { kind: 'OBJECT'; name: 'DynamicField'; ofType: null; } }; 'dynamicFields': { name: 'dynamicFields'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'DynamicFieldConnection'; ofType: null; }; } }; 'dynamicObjectField': { name: 'dynamicObjectField'; type: { kind: 'OBJECT'; name: 'DynamicField'; ofType: null; } }; 'hasPublicTransfer': { name: 'hasPublicTransfer'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; }; } }; }; possibleTypes: 'Coin' | 'CoinMetadata' | 'MoveObject' | 'StakedSui' | 'SuinsRegistration'; };
89
+ 'IObject': { kind: 'INTERFACE'; name: 'IObject'; fields: { 'bcs': { name: 'bcs'; type: { kind: 'SCALAR'; name: 'Base64'; ofType: null; } }; 'digest': { name: 'digest'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'owner': { name: 'owner'; type: { kind: 'UNION'; name: 'ObjectOwner'; ofType: null; } }; 'previousTransactionBlock': { name: 'previousTransactionBlock'; type: { kind: 'OBJECT'; name: 'TransactionBlock'; ofType: null; } }; 'receivedTransactionBlocks': { name: 'receivedTransactionBlocks'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'TransactionBlockConnection'; ofType: null; }; } }; 'status': { name: 'status'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'ENUM'; name: 'ObjectKind'; ofType: null; }; } }; 'storageRebate': { name: 'storageRebate'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; } }; 'version': { name: 'version'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'UInt53'; ofType: null; }; } }; }; possibleTypes: 'Coin' | 'CoinMetadata' | 'MoveObject' | 'MovePackage' | 'Object' | 'StakedSui' | 'SuinsRegistration'; };
90
+ 'IOwner': { kind: 'INTERFACE'; name: 'IOwner'; fields: { 'address': { name: 'address'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'SuiAddress'; ofType: null; }; } }; 'balance': { name: 'balance'; type: { kind: 'OBJECT'; name: 'Balance'; ofType: null; } }; 'balances': { name: 'balances'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'BalanceConnection'; ofType: null; }; } }; 'coins': { name: 'coins'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'CoinConnection'; ofType: null; }; } }; 'defaultSuinsName': { name: 'defaultSuinsName'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'objects': { name: 'objects'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'MoveObjectConnection'; ofType: null; }; } }; 'stakedSuis': { name: 'stakedSuis'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'StakedSuiConnection'; ofType: null; }; } }; 'suinsRegistrations': { name: 'suinsRegistrations'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'SuinsRegistrationConnection'; ofType: null; }; } }; }; possibleTypes: 'Address' | 'Coin' | 'CoinMetadata' | 'MoveObject' | 'MovePackage' | 'Object' | 'Owner' | 'StakedSui' | 'SuinsRegistration'; };
91
+ 'Immutable': { kind: 'OBJECT'; name: 'Immutable'; fields: { '_': { name: '_'; type: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; } }; }; };
92
+ 'Input': { kind: 'OBJECT'; name: 'Input'; fields: { 'ix': { name: 'ix'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; } }; }; };
93
+ 'Int': unknown;
94
+ 'JSON': unknown;
95
+ 'Linkage': { kind: 'OBJECT'; name: 'Linkage'; fields: { 'originalId': { name: 'originalId'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'SuiAddress'; ofType: null; }; } }; 'upgradedId': { name: 'upgradedId'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'SuiAddress'; ofType: null; }; } }; 'version': { name: 'version'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'UInt53'; ofType: null; }; } }; }; };
96
+ 'MakeMoveVecTransaction': { kind: 'OBJECT'; name: 'MakeMoveVecTransaction'; fields: { 'elements': { name: 'elements'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'UNION'; name: 'TransactionArgument'; ofType: null; }; }; }; } }; 'type': { name: 'type'; type: { kind: 'OBJECT'; name: 'MoveType'; ofType: null; } }; }; };
97
+ 'MergeCoinsTransaction': { kind: 'OBJECT'; name: 'MergeCoinsTransaction'; fields: { 'coin': { name: 'coin'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'UNION'; name: 'TransactionArgument'; ofType: null; }; } }; 'coins': { name: 'coins'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'UNION'; name: 'TransactionArgument'; ofType: null; }; }; }; } }; }; };
98
+ 'MoveAbility': { name: 'MoveAbility'; enumValues: 'COPY' | 'DROP' | 'KEY' | 'STORE'; };
99
+ 'MoveCallTransaction': { kind: 'OBJECT'; name: 'MoveCallTransaction'; fields: { 'arguments': { name: 'arguments'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'UNION'; name: 'TransactionArgument'; ofType: null; }; }; }; } }; 'function': { name: 'function'; type: { kind: 'OBJECT'; name: 'MoveFunction'; ofType: null; } }; 'functionName': { name: 'functionName'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; } }; 'module': { name: 'module'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; } }; 'package': { name: 'package'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'SuiAddress'; ofType: null; }; } }; 'typeArguments': { name: 'typeArguments'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'MoveType'; ofType: null; }; }; }; } }; }; };
100
+ 'MoveData': unknown;
101
+ 'MoveDatatype': { kind: 'OBJECT'; name: 'MoveDatatype'; fields: { 'abilities': { name: 'abilities'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'ENUM'; name: 'MoveAbility'; ofType: null; }; }; } }; 'asMoveEnum': { name: 'asMoveEnum'; type: { kind: 'OBJECT'; name: 'MoveEnum'; ofType: null; } }; 'asMoveStruct': { name: 'asMoveStruct'; type: { kind: 'OBJECT'; name: 'MoveStruct'; ofType: null; } }; 'module': { name: 'module'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'MoveModule'; ofType: null; }; } }; 'name': { name: 'name'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; } }; 'typeParameters': { name: 'typeParameters'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'MoveStructTypeParameter'; ofType: null; }; }; } }; }; };
102
+ 'MoveDatatypeConnection': { kind: 'OBJECT'; name: 'MoveDatatypeConnection'; fields: { 'edges': { name: 'edges'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'MoveDatatypeEdge'; ofType: null; }; }; }; } }; 'nodes': { name: 'nodes'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'MoveDatatype'; ofType: null; }; }; }; } }; 'pageInfo': { name: 'pageInfo'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'PageInfo'; ofType: null; }; } }; }; };
103
+ 'MoveDatatypeEdge': { kind: 'OBJECT'; name: 'MoveDatatypeEdge'; fields: { 'cursor': { name: 'cursor'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; } }; 'node': { name: 'node'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'MoveDatatype'; ofType: null; }; } }; }; };
104
+ 'MoveEnum': { kind: 'OBJECT'; name: 'MoveEnum'; fields: { 'abilities': { name: 'abilities'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'ENUM'; name: 'MoveAbility'; ofType: null; }; }; } }; 'module': { name: 'module'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'MoveModule'; ofType: null; }; } }; 'name': { name: 'name'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; } }; 'typeParameters': { name: 'typeParameters'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'MoveStructTypeParameter'; ofType: null; }; }; } }; 'variants': { name: 'variants'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'MoveEnumVariant'; ofType: null; }; }; } }; }; };
105
+ 'MoveEnumConnection': { kind: 'OBJECT'; name: 'MoveEnumConnection'; fields: { 'edges': { name: 'edges'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'MoveEnumEdge'; ofType: null; }; }; }; } }; 'nodes': { name: 'nodes'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'MoveEnum'; ofType: null; }; }; }; } }; 'pageInfo': { name: 'pageInfo'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'PageInfo'; ofType: null; }; } }; }; };
106
+ 'MoveEnumEdge': { kind: 'OBJECT'; name: 'MoveEnumEdge'; fields: { 'cursor': { name: 'cursor'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; } }; 'node': { name: 'node'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'MoveEnum'; ofType: null; }; } }; }; };
107
+ 'MoveEnumVariant': { kind: 'OBJECT'; name: 'MoveEnumVariant'; fields: { 'fields': { name: 'fields'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'MoveField'; ofType: null; }; }; } }; 'name': { name: 'name'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; } }; }; };
108
+ 'MoveField': { kind: 'OBJECT'; name: 'MoveField'; fields: { 'name': { name: 'name'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; } }; 'type': { name: 'type'; type: { kind: 'OBJECT'; name: 'OpenMoveType'; ofType: null; } }; }; };
109
+ 'MoveFunction': { kind: 'OBJECT'; name: 'MoveFunction'; fields: { 'isEntry': { name: 'isEntry'; type: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; } }; 'module': { name: 'module'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'MoveModule'; ofType: null; }; } }; 'name': { name: 'name'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; } }; 'parameters': { name: 'parameters'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'OpenMoveType'; ofType: null; }; }; } }; 'return': { name: 'return'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'OpenMoveType'; ofType: null; }; }; } }; 'typeParameters': { name: 'typeParameters'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'MoveFunctionTypeParameter'; ofType: null; }; }; } }; 'visibility': { name: 'visibility'; type: { kind: 'ENUM'; name: 'MoveVisibility'; ofType: null; } }; }; };
110
+ 'MoveFunctionConnection': { kind: 'OBJECT'; name: 'MoveFunctionConnection'; fields: { 'edges': { name: 'edges'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'MoveFunctionEdge'; ofType: null; }; }; }; } }; 'nodes': { name: 'nodes'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'MoveFunction'; ofType: null; }; }; }; } }; 'pageInfo': { name: 'pageInfo'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'PageInfo'; ofType: null; }; } }; }; };
111
+ 'MoveFunctionEdge': { kind: 'OBJECT'; name: 'MoveFunctionEdge'; fields: { 'cursor': { name: 'cursor'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; } }; 'node': { name: 'node'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'MoveFunction'; ofType: null; }; } }; }; };
112
+ 'MoveFunctionTypeParameter': { kind: 'OBJECT'; name: 'MoveFunctionTypeParameter'; fields: { 'constraints': { name: 'constraints'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'ENUM'; name: 'MoveAbility'; ofType: null; }; }; }; } }; }; };
113
+ 'MoveModule': { kind: 'OBJECT'; name: 'MoveModule'; fields: { 'bytes': { name: 'bytes'; type: { kind: 'SCALAR'; name: 'Base64'; ofType: null; } }; 'datatype': { name: 'datatype'; type: { kind: 'OBJECT'; name: 'MoveDatatype'; ofType: null; } }; 'datatypes': { name: 'datatypes'; type: { kind: 'OBJECT'; name: 'MoveDatatypeConnection'; ofType: null; } }; 'disassembly': { name: 'disassembly'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'enum': { name: 'enum'; type: { kind: 'OBJECT'; name: 'MoveEnum'; ofType: null; } }; 'enums': { name: 'enums'; type: { kind: 'OBJECT'; name: 'MoveEnumConnection'; ofType: null; } }; 'fileFormatVersion': { name: 'fileFormatVersion'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; } }; 'friends': { name: 'friends'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'MoveModuleConnection'; ofType: null; }; } }; 'function': { name: 'function'; type: { kind: 'OBJECT'; name: 'MoveFunction'; ofType: null; } }; 'functions': { name: 'functions'; type: { kind: 'OBJECT'; name: 'MoveFunctionConnection'; ofType: null; } }; 'name': { name: 'name'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; } }; 'package': { name: 'package'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'MovePackage'; ofType: null; }; } }; 'struct': { name: 'struct'; type: { kind: 'OBJECT'; name: 'MoveStruct'; ofType: null; } }; 'structs': { name: 'structs'; type: { kind: 'OBJECT'; name: 'MoveStructConnection'; ofType: null; } }; }; };
114
+ 'MoveModuleConnection': { kind: 'OBJECT'; name: 'MoveModuleConnection'; fields: { 'edges': { name: 'edges'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'MoveModuleEdge'; ofType: null; }; }; }; } }; 'nodes': { name: 'nodes'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'MoveModule'; ofType: null; }; }; }; } }; 'pageInfo': { name: 'pageInfo'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'PageInfo'; ofType: null; }; } }; }; };
115
+ 'MoveModuleEdge': { kind: 'OBJECT'; name: 'MoveModuleEdge'; fields: { 'cursor': { name: 'cursor'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; } }; 'node': { name: 'node'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'MoveModule'; ofType: null; }; } }; }; };
116
+ 'MoveObject': { kind: 'OBJECT'; name: 'MoveObject'; fields: { 'address': { name: 'address'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'SuiAddress'; ofType: null; }; } }; 'asCoin': { name: 'asCoin'; type: { kind: 'OBJECT'; name: 'Coin'; ofType: null; } }; 'asCoinMetadata': { name: 'asCoinMetadata'; type: { kind: 'OBJECT'; name: 'CoinMetadata'; ofType: null; } }; 'asStakedSui': { name: 'asStakedSui'; type: { kind: 'OBJECT'; name: 'StakedSui'; ofType: null; } }; 'asSuinsRegistration': { name: 'asSuinsRegistration'; type: { kind: 'OBJECT'; name: 'SuinsRegistration'; ofType: null; } }; 'balance': { name: 'balance'; type: { kind: 'OBJECT'; name: 'Balance'; ofType: null; } }; 'balances': { name: 'balances'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'BalanceConnection'; ofType: null; }; } }; 'bcs': { name: 'bcs'; type: { kind: 'SCALAR'; name: 'Base64'; ofType: null; } }; 'coins': { name: 'coins'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'CoinConnection'; ofType: null; }; } }; 'contents': { name: 'contents'; type: { kind: 'OBJECT'; name: 'MoveValue'; ofType: null; } }; 'defaultSuinsName': { name: 'defaultSuinsName'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'digest': { name: 'digest'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'display': { name: 'display'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'DisplayEntry'; ofType: null; }; }; } }; 'dynamicField': { name: 'dynamicField'; type: { kind: 'OBJECT'; name: 'DynamicField'; ofType: null; } }; 'dynamicFields': { name: 'dynamicFields'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'DynamicFieldConnection'; ofType: null; }; } }; 'dynamicObjectField': { name: 'dynamicObjectField'; type: { kind: 'OBJECT'; name: 'DynamicField'; ofType: null; } }; 'hasPublicTransfer': { name: 'hasPublicTransfer'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; }; } }; 'objects': { name: 'objects'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'MoveObjectConnection'; ofType: null; }; } }; 'owner': { name: 'owner'; type: { kind: 'UNION'; name: 'ObjectOwner'; ofType: null; } }; 'previousTransactionBlock': { name: 'previousTransactionBlock'; type: { kind: 'OBJECT'; name: 'TransactionBlock'; ofType: null; } }; 'receivedTransactionBlocks': { name: 'receivedTransactionBlocks'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'TransactionBlockConnection'; ofType: null; }; } }; 'stakedSuis': { name: 'stakedSuis'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'StakedSuiConnection'; ofType: null; }; } }; 'status': { name: 'status'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'ENUM'; name: 'ObjectKind'; ofType: null; }; } }; 'storageRebate': { name: 'storageRebate'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; } }; 'suinsRegistrations': { name: 'suinsRegistrations'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'SuinsRegistrationConnection'; ofType: null; }; } }; 'version': { name: 'version'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'UInt53'; ofType: null; }; } }; }; };
117
+ 'MoveObjectConnection': { kind: 'OBJECT'; name: 'MoveObjectConnection'; fields: { 'edges': { name: 'edges'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'MoveObjectEdge'; ofType: null; }; }; }; } }; 'nodes': { name: 'nodes'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'MoveObject'; ofType: null; }; }; }; } }; 'pageInfo': { name: 'pageInfo'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'PageInfo'; ofType: null; }; } }; }; };
118
+ 'MoveObjectEdge': { kind: 'OBJECT'; name: 'MoveObjectEdge'; fields: { 'cursor': { name: 'cursor'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; } }; 'node': { name: 'node'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'MoveObject'; ofType: null; }; } }; }; };
119
+ 'MovePackage': { kind: 'OBJECT'; name: 'MovePackage'; fields: { 'address': { name: 'address'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'SuiAddress'; ofType: null; }; } }; 'balance': { name: 'balance'; type: { kind: 'OBJECT'; name: 'Balance'; ofType: null; } }; 'balances': { name: 'balances'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'BalanceConnection'; ofType: null; }; } }; 'bcs': { name: 'bcs'; type: { kind: 'SCALAR'; name: 'Base64'; ofType: null; } }; 'coins': { name: 'coins'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'CoinConnection'; ofType: null; }; } }; 'defaultSuinsName': { name: 'defaultSuinsName'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'digest': { name: 'digest'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'latestPackage': { name: 'latestPackage'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'MovePackage'; ofType: null; }; } }; 'linkage': { name: 'linkage'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Linkage'; ofType: null; }; }; } }; 'module': { name: 'module'; type: { kind: 'OBJECT'; name: 'MoveModule'; ofType: null; } }; 'moduleBcs': { name: 'moduleBcs'; type: { kind: 'SCALAR'; name: 'Base64'; ofType: null; } }; 'modules': { name: 'modules'; type: { kind: 'OBJECT'; name: 'MoveModuleConnection'; ofType: null; } }; 'objects': { name: 'objects'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'MoveObjectConnection'; ofType: null; }; } }; 'owner': { name: 'owner'; type: { kind: 'UNION'; name: 'ObjectOwner'; ofType: null; } }; 'packageAtVersion': { name: 'packageAtVersion'; type: { kind: 'OBJECT'; name: 'MovePackage'; ofType: null; } }; 'packageBcs': { name: 'packageBcs'; type: { kind: 'SCALAR'; name: 'Base64'; ofType: null; } }; 'packageVersions': { name: 'packageVersions'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'MovePackageConnection'; ofType: null; }; } }; 'previousTransactionBlock': { name: 'previousTransactionBlock'; type: { kind: 'OBJECT'; name: 'TransactionBlock'; ofType: null; } }; 'receivedTransactionBlocks': { name: 'receivedTransactionBlocks'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'TransactionBlockConnection'; ofType: null; }; } }; 'stakedSuis': { name: 'stakedSuis'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'StakedSuiConnection'; ofType: null; }; } }; 'status': { name: 'status'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'ENUM'; name: 'ObjectKind'; ofType: null; }; } }; 'storageRebate': { name: 'storageRebate'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; } }; 'suinsRegistrations': { name: 'suinsRegistrations'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'SuinsRegistrationConnection'; ofType: null; }; } }; 'typeOrigins': { name: 'typeOrigins'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'TypeOrigin'; ofType: null; }; }; } }; 'version': { name: 'version'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'UInt53'; ofType: null; }; } }; }; };
120
+ 'MovePackageCheckpointFilter': { kind: 'INPUT_OBJECT'; name: 'MovePackageCheckpointFilter'; isOneOf: false; inputFields: [{ name: 'afterCheckpoint'; type: { kind: 'SCALAR'; name: 'UInt53'; ofType: null; }; defaultValue: null }, { name: 'beforeCheckpoint'; type: { kind: 'SCALAR'; name: 'UInt53'; ofType: null; }; defaultValue: null }]; };
121
+ 'MovePackageConnection': { kind: 'OBJECT'; name: 'MovePackageConnection'; fields: { 'edges': { name: 'edges'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'MovePackageEdge'; ofType: null; }; }; }; } }; 'nodes': { name: 'nodes'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'MovePackage'; ofType: null; }; }; }; } }; 'pageInfo': { name: 'pageInfo'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'PageInfo'; ofType: null; }; } }; }; };
122
+ 'MovePackageEdge': { kind: 'OBJECT'; name: 'MovePackageEdge'; fields: { 'cursor': { name: 'cursor'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; } }; 'node': { name: 'node'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'MovePackage'; ofType: null; }; } }; }; };
123
+ 'MovePackageVersionFilter': { kind: 'INPUT_OBJECT'; name: 'MovePackageVersionFilter'; isOneOf: false; inputFields: [{ name: 'afterVersion'; type: { kind: 'SCALAR'; name: 'UInt53'; ofType: null; }; defaultValue: null }, { name: 'beforeVersion'; type: { kind: 'SCALAR'; name: 'UInt53'; ofType: null; }; defaultValue: null }]; };
124
+ 'MoveStruct': { kind: 'OBJECT'; name: 'MoveStruct'; fields: { 'abilities': { name: 'abilities'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'ENUM'; name: 'MoveAbility'; ofType: null; }; }; } }; 'fields': { name: 'fields'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'MoveField'; ofType: null; }; }; } }; 'module': { name: 'module'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'MoveModule'; ofType: null; }; } }; 'name': { name: 'name'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; } }; 'typeParameters': { name: 'typeParameters'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'MoveStructTypeParameter'; ofType: null; }; }; } }; }; };
125
+ 'MoveStructConnection': { kind: 'OBJECT'; name: 'MoveStructConnection'; fields: { 'edges': { name: 'edges'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'MoveStructEdge'; ofType: null; }; }; }; } }; 'nodes': { name: 'nodes'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'MoveStruct'; ofType: null; }; }; }; } }; 'pageInfo': { name: 'pageInfo'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'PageInfo'; ofType: null; }; } }; }; };
126
+ 'MoveStructEdge': { kind: 'OBJECT'; name: 'MoveStructEdge'; fields: { 'cursor': { name: 'cursor'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; } }; 'node': { name: 'node'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'MoveStruct'; ofType: null; }; } }; }; };
127
+ 'MoveStructTypeParameter': { kind: 'OBJECT'; name: 'MoveStructTypeParameter'; fields: { 'constraints': { name: 'constraints'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'ENUM'; name: 'MoveAbility'; ofType: null; }; }; }; } }; 'isPhantom': { name: 'isPhantom'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; }; } }; }; };
128
+ 'MoveType': { kind: 'OBJECT'; name: 'MoveType'; fields: { 'abilities': { name: 'abilities'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'ENUM'; name: 'MoveAbility'; ofType: null; }; }; } }; 'layout': { name: 'layout'; type: { kind: 'SCALAR'; name: 'MoveTypeLayout'; ofType: null; } }; 'repr': { name: 'repr'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; } }; 'signature': { name: 'signature'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'MoveTypeSignature'; ofType: null; }; } }; }; };
129
+ 'MoveTypeLayout': unknown;
130
+ 'MoveTypeSignature': unknown;
131
+ 'MoveValue': { kind: 'OBJECT'; name: 'MoveValue'; fields: { 'bcs': { name: 'bcs'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Base64'; ofType: null; }; } }; 'data': { name: 'data'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'MoveData'; ofType: null; }; } }; 'json': { name: 'json'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'JSON'; ofType: null; }; } }; 'type': { name: 'type'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'MoveType'; ofType: null; }; } }; }; };
132
+ 'MoveVisibility': { name: 'MoveVisibility'; enumValues: 'PUBLIC' | 'PRIVATE' | 'FRIEND'; };
133
+ 'Mutation': { kind: 'OBJECT'; name: 'Mutation'; fields: { 'executeTransactionBlock': { name: 'executeTransactionBlock'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'ExecutionResult'; ofType: null; }; } }; }; };
134
+ 'Object': { kind: 'OBJECT'; name: 'Object'; fields: { 'address': { name: 'address'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'SuiAddress'; ofType: null; }; } }; 'asMoveObject': { name: 'asMoveObject'; type: { kind: 'OBJECT'; name: 'MoveObject'; ofType: null; } }; 'asMovePackage': { name: 'asMovePackage'; type: { kind: 'OBJECT'; name: 'MovePackage'; ofType: null; } }; 'balance': { name: 'balance'; type: { kind: 'OBJECT'; name: 'Balance'; ofType: null; } }; 'balances': { name: 'balances'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'BalanceConnection'; ofType: null; }; } }; 'bcs': { name: 'bcs'; type: { kind: 'SCALAR'; name: 'Base64'; ofType: null; } }; 'coins': { name: 'coins'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'CoinConnection'; ofType: null; }; } }; 'defaultSuinsName': { name: 'defaultSuinsName'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'digest': { name: 'digest'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'display': { name: 'display'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'DisplayEntry'; ofType: null; }; }; } }; 'dynamicField': { name: 'dynamicField'; type: { kind: 'OBJECT'; name: 'DynamicField'; ofType: null; } }; 'dynamicFields': { name: 'dynamicFields'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'DynamicFieldConnection'; ofType: null; }; } }; 'dynamicObjectField': { name: 'dynamicObjectField'; type: { kind: 'OBJECT'; name: 'DynamicField'; ofType: null; } }; 'objects': { name: 'objects'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'MoveObjectConnection'; ofType: null; }; } }; 'owner': { name: 'owner'; type: { kind: 'UNION'; name: 'ObjectOwner'; ofType: null; } }; 'previousTransactionBlock': { name: 'previousTransactionBlock'; type: { kind: 'OBJECT'; name: 'TransactionBlock'; ofType: null; } }; 'receivedTransactionBlocks': { name: 'receivedTransactionBlocks'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'TransactionBlockConnection'; ofType: null; }; } }; 'stakedSuis': { name: 'stakedSuis'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'StakedSuiConnection'; ofType: null; }; } }; 'status': { name: 'status'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'ENUM'; name: 'ObjectKind'; ofType: null; }; } }; 'storageRebate': { name: 'storageRebate'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; } }; 'suinsRegistrations': { name: 'suinsRegistrations'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'SuinsRegistrationConnection'; ofType: null; }; } }; 'version': { name: 'version'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'UInt53'; ofType: null; }; } }; }; };
135
+ 'ObjectChange': { kind: 'OBJECT'; name: 'ObjectChange'; fields: { 'address': { name: 'address'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'SuiAddress'; ofType: null; }; } }; 'idCreated': { name: 'idCreated'; type: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; } }; 'idDeleted': { name: 'idDeleted'; type: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; } }; 'inputState': { name: 'inputState'; type: { kind: 'OBJECT'; name: 'Object'; ofType: null; } }; 'outputState': { name: 'outputState'; type: { kind: 'OBJECT'; name: 'Object'; ofType: null; } }; }; };
136
+ 'ObjectChangeConnection': { kind: 'OBJECT'; name: 'ObjectChangeConnection'; fields: { 'edges': { name: 'edges'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'ObjectChangeEdge'; ofType: null; }; }; }; } }; 'nodes': { name: 'nodes'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'ObjectChange'; ofType: null; }; }; }; } }; 'pageInfo': { name: 'pageInfo'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'PageInfo'; ofType: null; }; } }; }; };
137
+ 'ObjectChangeEdge': { kind: 'OBJECT'; name: 'ObjectChangeEdge'; fields: { 'cursor': { name: 'cursor'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; } }; 'node': { name: 'node'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'ObjectChange'; ofType: null; }; } }; }; };
138
+ 'ObjectConnection': { kind: 'OBJECT'; name: 'ObjectConnection'; fields: { 'edges': { name: 'edges'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'ObjectEdge'; ofType: null; }; }; }; } }; 'nodes': { name: 'nodes'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Object'; ofType: null; }; }; }; } }; 'pageInfo': { name: 'pageInfo'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'PageInfo'; ofType: null; }; } }; }; };
139
+ 'ObjectEdge': { kind: 'OBJECT'; name: 'ObjectEdge'; fields: { 'cursor': { name: 'cursor'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; } }; 'node': { name: 'node'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Object'; ofType: null; }; } }; }; };
140
+ 'ObjectFilter': { kind: 'INPUT_OBJECT'; name: 'ObjectFilter'; isOneOf: false; inputFields: [{ name: 'type'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'owner'; type: { kind: 'SCALAR'; name: 'SuiAddress'; ofType: null; }; defaultValue: null }, { name: 'objectIds'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'SuiAddress'; ofType: null; }; }; }; defaultValue: null }, { name: 'objectKeys'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'ObjectKey'; ofType: null; }; }; }; defaultValue: null }]; };
141
+ 'ObjectKey': { kind: 'INPUT_OBJECT'; name: 'ObjectKey'; isOneOf: false; inputFields: [{ name: 'objectId'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'SuiAddress'; ofType: null; }; }; defaultValue: null }, { name: 'version'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'UInt53'; ofType: null; }; }; defaultValue: null }]; };
142
+ 'ObjectKind': { name: 'ObjectKind'; enumValues: 'NOT_INDEXED' | 'INDEXED'; };
143
+ 'ObjectOwner': { kind: 'UNION'; name: 'ObjectOwner'; fields: {}; possibleTypes: 'AddressOwner' | 'ConsensusV2' | 'Immutable' | 'Parent' | 'Shared'; };
144
+ 'ObjectRef': { kind: 'INPUT_OBJECT'; name: 'ObjectRef'; isOneOf: false; inputFields: [{ name: 'address'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'SuiAddress'; ofType: null; }; }; defaultValue: null }, { name: 'version'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'UInt53'; ofType: null; }; }; defaultValue: null }, { name: 'digest'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; defaultValue: null }]; };
145
+ 'OpenMoveType': { kind: 'OBJECT'; name: 'OpenMoveType'; fields: { 'repr': { name: 'repr'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; } }; 'signature': { name: 'signature'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'OpenMoveTypeSignature'; ofType: null; }; } }; }; };
146
+ 'OpenMoveTypeSignature': unknown;
147
+ 'OwnedOrImmutable': { kind: 'OBJECT'; name: 'OwnedOrImmutable'; fields: { 'address': { name: 'address'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'SuiAddress'; ofType: null; }; } }; 'digest': { name: 'digest'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; } }; 'object': { name: 'object'; type: { kind: 'OBJECT'; name: 'Object'; ofType: null; } }; 'version': { name: 'version'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'UInt53'; ofType: null; }; } }; }; };
148
+ 'Owner': { kind: 'OBJECT'; name: 'Owner'; fields: { 'address': { name: 'address'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'SuiAddress'; ofType: null; }; } }; 'asAddress': { name: 'asAddress'; type: { kind: 'OBJECT'; name: 'Address'; ofType: null; } }; 'asObject': { name: 'asObject'; type: { kind: 'OBJECT'; name: 'Object'; ofType: null; } }; 'balance': { name: 'balance'; type: { kind: 'OBJECT'; name: 'Balance'; ofType: null; } }; 'balances': { name: 'balances'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'BalanceConnection'; ofType: null; }; } }; 'coins': { name: 'coins'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'CoinConnection'; ofType: null; }; } }; 'defaultSuinsName': { name: 'defaultSuinsName'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'dynamicField': { name: 'dynamicField'; type: { kind: 'OBJECT'; name: 'DynamicField'; ofType: null; } }; 'dynamicFields': { name: 'dynamicFields'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'DynamicFieldConnection'; ofType: null; }; } }; 'dynamicObjectField': { name: 'dynamicObjectField'; type: { kind: 'OBJECT'; name: 'DynamicField'; ofType: null; } }; 'objects': { name: 'objects'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'MoveObjectConnection'; ofType: null; }; } }; 'stakedSuis': { name: 'stakedSuis'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'StakedSuiConnection'; ofType: null; }; } }; 'suinsRegistrations': { name: 'suinsRegistrations'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'SuinsRegistrationConnection'; ofType: null; }; } }; }; };
149
+ 'PageInfo': { kind: 'OBJECT'; name: 'PageInfo'; fields: { 'endCursor': { name: 'endCursor'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'hasNextPage': { name: 'hasNextPage'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; }; } }; 'hasPreviousPage': { name: 'hasPreviousPage'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; }; } }; 'startCursor': { name: 'startCursor'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; }; };
150
+ 'Parent': { kind: 'OBJECT'; name: 'Parent'; fields: { 'parent': { name: 'parent'; type: { kind: 'OBJECT'; name: 'Owner'; ofType: null; } }; }; };
151
+ 'ProgrammableTransaction': { kind: 'UNION'; name: 'ProgrammableTransaction'; fields: {}; possibleTypes: 'MakeMoveVecTransaction' | 'MergeCoinsTransaction' | 'MoveCallTransaction' | 'PublishTransaction' | 'SplitCoinsTransaction' | 'TransferObjectsTransaction' | 'UpgradeTransaction'; };
152
+ 'ProgrammableTransactionBlock': { kind: 'OBJECT'; name: 'ProgrammableTransactionBlock'; fields: { 'inputs': { name: 'inputs'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'TransactionInputConnection'; ofType: null; }; } }; 'transactions': { name: 'transactions'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'ProgrammableTransactionConnection'; ofType: null; }; } }; }; };
153
+ 'ProgrammableTransactionConnection': { kind: 'OBJECT'; name: 'ProgrammableTransactionConnection'; fields: { 'edges': { name: 'edges'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'ProgrammableTransactionEdge'; ofType: null; }; }; }; } }; 'nodes': { name: 'nodes'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'UNION'; name: 'ProgrammableTransaction'; ofType: null; }; }; }; } }; 'pageInfo': { name: 'pageInfo'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'PageInfo'; ofType: null; }; } }; }; };
154
+ 'ProgrammableTransactionEdge': { kind: 'OBJECT'; name: 'ProgrammableTransactionEdge'; fields: { 'cursor': { name: 'cursor'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; } }; 'node': { name: 'node'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'UNION'; name: 'ProgrammableTransaction'; ofType: null; }; } }; }; };
155
+ 'ProtocolConfigAttr': { kind: 'OBJECT'; name: 'ProtocolConfigAttr'; fields: { 'key': { name: 'key'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; } }; 'value': { name: 'value'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; }; };
156
+ 'ProtocolConfigFeatureFlag': { kind: 'OBJECT'; name: 'ProtocolConfigFeatureFlag'; fields: { 'key': { name: 'key'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; } }; 'value': { name: 'value'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; }; } }; }; };
157
+ 'ProtocolConfigs': { kind: 'OBJECT'; name: 'ProtocolConfigs'; fields: { 'config': { name: 'config'; type: { kind: 'OBJECT'; name: 'ProtocolConfigAttr'; ofType: null; } }; 'configs': { name: 'configs'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'ProtocolConfigAttr'; ofType: null; }; }; }; } }; 'featureFlag': { name: 'featureFlag'; type: { kind: 'OBJECT'; name: 'ProtocolConfigFeatureFlag'; ofType: null; } }; 'featureFlags': { name: 'featureFlags'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'ProtocolConfigFeatureFlag'; ofType: null; }; }; }; } }; 'protocolVersion': { name: 'protocolVersion'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'UInt53'; ofType: null; }; } }; }; };
158
+ 'PublishTransaction': { kind: 'OBJECT'; name: 'PublishTransaction'; fields: { 'dependencies': { name: 'dependencies'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'SuiAddress'; ofType: null; }; }; }; } }; 'modules': { name: 'modules'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Base64'; ofType: null; }; }; }; } }; }; };
159
+ 'Pure': { kind: 'OBJECT'; name: 'Pure'; fields: { 'bytes': { name: 'bytes'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Base64'; ofType: null; }; } }; }; };
160
+ 'Query': { kind: 'OBJECT'; name: 'Query'; fields: { 'address': { name: 'address'; type: { kind: 'OBJECT'; name: 'Address'; ofType: null; } }; 'availableRange': { name: 'availableRange'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'AvailableRange'; ofType: null; }; } }; 'chainIdentifier': { name: 'chainIdentifier'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; } }; 'checkpoint': { name: 'checkpoint'; type: { kind: 'OBJECT'; name: 'Checkpoint'; ofType: null; } }; 'checkpoints': { name: 'checkpoints'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'CheckpointConnection'; ofType: null; }; } }; 'coinMetadata': { name: 'coinMetadata'; type: { kind: 'OBJECT'; name: 'CoinMetadata'; ofType: null; } }; 'coins': { name: 'coins'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'CoinConnection'; ofType: null; }; } }; 'dryRunTransactionBlock': { name: 'dryRunTransactionBlock'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'DryRunResult'; ofType: null; }; } }; 'epoch': { name: 'epoch'; type: { kind: 'OBJECT'; name: 'Epoch'; ofType: null; } }; 'epochs': { name: 'epochs'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'EpochConnection'; ofType: null; }; } }; 'events': { name: 'events'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'EventConnection'; ofType: null; }; } }; 'latestPackage': { name: 'latestPackage'; type: { kind: 'OBJECT'; name: 'MovePackage'; ofType: null; } }; 'object': { name: 'object'; type: { kind: 'OBJECT'; name: 'Object'; ofType: null; } }; 'objects': { name: 'objects'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'ObjectConnection'; ofType: null; }; } }; 'owner': { name: 'owner'; type: { kind: 'OBJECT'; name: 'Owner'; ofType: null; } }; 'package': { name: 'package'; type: { kind: 'OBJECT'; name: 'MovePackage'; ofType: null; } }; 'packageByName': { name: 'packageByName'; type: { kind: 'OBJECT'; name: 'MovePackage'; ofType: null; } }; 'packageVersions': { name: 'packageVersions'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'MovePackageConnection'; ofType: null; }; } }; 'packages': { name: 'packages'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'MovePackageConnection'; ofType: null; }; } }; 'protocolConfig': { name: 'protocolConfig'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'ProtocolConfigs'; ofType: null; }; } }; 'resolveSuinsAddress': { name: 'resolveSuinsAddress'; type: { kind: 'OBJECT'; name: 'Address'; ofType: null; } }; 'serviceConfig': { name: 'serviceConfig'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'ServiceConfig'; ofType: null; }; } }; 'transactionBlock': { name: 'transactionBlock'; type: { kind: 'OBJECT'; name: 'TransactionBlock'; ofType: null; } }; 'transactionBlocks': { name: 'transactionBlocks'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'TransactionBlockConnection'; ofType: null; }; } }; 'type': { name: 'type'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'MoveType'; ofType: null; }; } }; 'typeByName': { name: 'typeByName'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'MoveType'; ofType: null; }; } }; 'verifyZkloginSignature': { name: 'verifyZkloginSignature'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'ZkLoginVerifyResult'; ofType: null; }; } }; }; };
161
+ 'RandomnessStateCreateTransaction': { kind: 'OBJECT'; name: 'RandomnessStateCreateTransaction'; fields: { '_': { name: '_'; type: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; } }; }; };
162
+ 'RandomnessStateUpdateTransaction': { kind: 'OBJECT'; name: 'RandomnessStateUpdateTransaction'; fields: { 'epoch': { name: 'epoch'; type: { kind: 'OBJECT'; name: 'Epoch'; ofType: null; } }; 'randomBytes': { name: 'randomBytes'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Base64'; ofType: null; }; } }; 'randomnessObjInitialSharedVersion': { name: 'randomnessObjInitialSharedVersion'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'UInt53'; ofType: null; }; } }; 'randomnessRound': { name: 'randomnessRound'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'UInt53'; ofType: null; }; } }; }; };
163
+ 'Receiving': { kind: 'OBJECT'; name: 'Receiving'; fields: { 'address': { name: 'address'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'SuiAddress'; ofType: null; }; } }; 'digest': { name: 'digest'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; } }; 'object': { name: 'object'; type: { kind: 'OBJECT'; name: 'Object'; ofType: null; } }; 'version': { name: 'version'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'UInt53'; ofType: null; }; } }; }; };
164
+ 'Result': { kind: 'OBJECT'; name: 'Result'; fields: { 'cmd': { name: 'cmd'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; } }; 'ix': { name: 'ix'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; } }; }; };
165
+ 'SafeMode': { kind: 'OBJECT'; name: 'SafeMode'; fields: { 'enabled': { name: 'enabled'; type: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; } }; 'gasSummary': { name: 'gasSummary'; type: { kind: 'OBJECT'; name: 'GasCostSummary'; ofType: null; } }; }; };
166
+ 'ServiceConfig': { kind: 'OBJECT'; name: 'ServiceConfig'; fields: { 'defaultPageSize': { name: 'defaultPageSize'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; } }; 'enabledFeatures': { name: 'enabledFeatures'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'ENUM'; name: 'Feature'; ofType: null; }; }; }; } }; 'isEnabled': { name: 'isEnabled'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; }; } }; 'maxDbQueryCost': { name: 'maxDbQueryCost'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; } }; 'maxMoveValueDepth': { name: 'maxMoveValueDepth'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; } }; 'maxOutputNodes': { name: 'maxOutputNodes'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; } }; 'maxPageSize': { name: 'maxPageSize'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; } }; 'maxQueryDepth': { name: 'maxQueryDepth'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; } }; 'maxQueryNodes': { name: 'maxQueryNodes'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; } }; 'maxQueryPayloadSize': { name: 'maxQueryPayloadSize'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; } }; 'maxScanLimit': { name: 'maxScanLimit'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; } }; 'maxTransactionIds': { name: 'maxTransactionIds'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; } }; 'maxTransactionPayloadSize': { name: 'maxTransactionPayloadSize'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; } }; 'maxTypeArgumentDepth': { name: 'maxTypeArgumentDepth'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; } }; 'maxTypeArgumentWidth': { name: 'maxTypeArgumentWidth'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; } }; 'maxTypeNodes': { name: 'maxTypeNodes'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; } }; 'mutationTimeoutMs': { name: 'mutationTimeoutMs'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; } }; 'requestTimeoutMs': { name: 'requestTimeoutMs'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; } }; }; };
167
+ 'Shared': { kind: 'OBJECT'; name: 'Shared'; fields: { 'initialSharedVersion': { name: 'initialSharedVersion'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'UInt53'; ofType: null; }; } }; }; };
168
+ 'SharedInput': { kind: 'OBJECT'; name: 'SharedInput'; fields: { 'address': { name: 'address'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'SuiAddress'; ofType: null; }; } }; 'initialSharedVersion': { name: 'initialSharedVersion'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'UInt53'; ofType: null; }; } }; 'mutable': { name: 'mutable'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; }; } }; }; };
169
+ 'SharedObjectCancelled': { kind: 'OBJECT'; name: 'SharedObjectCancelled'; fields: { 'address': { name: 'address'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'SuiAddress'; ofType: null; }; } }; 'version': { name: 'version'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'UInt53'; ofType: null; }; } }; }; };
170
+ 'SharedObjectDelete': { kind: 'OBJECT'; name: 'SharedObjectDelete'; fields: { 'address': { name: 'address'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'SuiAddress'; ofType: null; }; } }; 'mutable': { name: 'mutable'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; }; } }; 'version': { name: 'version'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'UInt53'; ofType: null; }; } }; }; };
171
+ 'SharedObjectRead': { kind: 'OBJECT'; name: 'SharedObjectRead'; fields: { 'address': { name: 'address'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'SuiAddress'; ofType: null; }; } }; 'digest': { name: 'digest'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; } }; 'object': { name: 'object'; type: { kind: 'OBJECT'; name: 'Object'; ofType: null; } }; 'version': { name: 'version'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'UInt53'; ofType: null; }; } }; }; };
172
+ 'SplitCoinsTransaction': { kind: 'OBJECT'; name: 'SplitCoinsTransaction'; fields: { 'amounts': { name: 'amounts'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'UNION'; name: 'TransactionArgument'; ofType: null; }; }; }; } }; 'coin': { name: 'coin'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'UNION'; name: 'TransactionArgument'; ofType: null; }; } }; }; };
173
+ 'StakeStatus': { name: 'StakeStatus'; enumValues: 'ACTIVE' | 'PENDING' | 'UNSTAKED'; };
174
+ 'StakeSubsidy': { kind: 'OBJECT'; name: 'StakeSubsidy'; fields: { 'balance': { name: 'balance'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; } }; 'currentDistributionAmount': { name: 'currentDistributionAmount'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; } }; 'decreaseRate': { name: 'decreaseRate'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; } }; 'distributionCounter': { name: 'distributionCounter'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; } }; 'periodLength': { name: 'periodLength'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; } }; }; };
175
+ 'StakedSui': { kind: 'OBJECT'; name: 'StakedSui'; fields: { 'activatedEpoch': { name: 'activatedEpoch'; type: { kind: 'OBJECT'; name: 'Epoch'; ofType: null; } }; 'address': { name: 'address'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'SuiAddress'; ofType: null; }; } }; 'balance': { name: 'balance'; type: { kind: 'OBJECT'; name: 'Balance'; ofType: null; } }; 'balances': { name: 'balances'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'BalanceConnection'; ofType: null; }; } }; 'bcs': { name: 'bcs'; type: { kind: 'SCALAR'; name: 'Base64'; ofType: null; } }; 'coins': { name: 'coins'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'CoinConnection'; ofType: null; }; } }; 'contents': { name: 'contents'; type: { kind: 'OBJECT'; name: 'MoveValue'; ofType: null; } }; 'defaultSuinsName': { name: 'defaultSuinsName'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'digest': { name: 'digest'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'display': { name: 'display'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'DisplayEntry'; ofType: null; }; }; } }; 'dynamicField': { name: 'dynamicField'; type: { kind: 'OBJECT'; name: 'DynamicField'; ofType: null; } }; 'dynamicFields': { name: 'dynamicFields'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'DynamicFieldConnection'; ofType: null; }; } }; 'dynamicObjectField': { name: 'dynamicObjectField'; type: { kind: 'OBJECT'; name: 'DynamicField'; ofType: null; } }; 'estimatedReward': { name: 'estimatedReward'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; } }; 'hasPublicTransfer': { name: 'hasPublicTransfer'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; }; } }; 'objects': { name: 'objects'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'MoveObjectConnection'; ofType: null; }; } }; 'owner': { name: 'owner'; type: { kind: 'UNION'; name: 'ObjectOwner'; ofType: null; } }; 'poolId': { name: 'poolId'; type: { kind: 'SCALAR'; name: 'SuiAddress'; ofType: null; } }; 'previousTransactionBlock': { name: 'previousTransactionBlock'; type: { kind: 'OBJECT'; name: 'TransactionBlock'; ofType: null; } }; 'principal': { name: 'principal'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; } }; 'receivedTransactionBlocks': { name: 'receivedTransactionBlocks'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'TransactionBlockConnection'; ofType: null; }; } }; 'requestedEpoch': { name: 'requestedEpoch'; type: { kind: 'OBJECT'; name: 'Epoch'; ofType: null; } }; 'stakeStatus': { name: 'stakeStatus'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'ENUM'; name: 'StakeStatus'; ofType: null; }; } }; 'stakedSuis': { name: 'stakedSuis'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'StakedSuiConnection'; ofType: null; }; } }; 'status': { name: 'status'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'ENUM'; name: 'ObjectKind'; ofType: null; }; } }; 'storageRebate': { name: 'storageRebate'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; } }; 'suinsRegistrations': { name: 'suinsRegistrations'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'SuinsRegistrationConnection'; ofType: null; }; } }; 'version': { name: 'version'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'UInt53'; ofType: null; }; } }; }; };
176
+ 'StakedSuiConnection': { kind: 'OBJECT'; name: 'StakedSuiConnection'; fields: { 'edges': { name: 'edges'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'StakedSuiEdge'; ofType: null; }; }; }; } }; 'nodes': { name: 'nodes'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'StakedSui'; ofType: null; }; }; }; } }; 'pageInfo': { name: 'pageInfo'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'PageInfo'; ofType: null; }; } }; }; };
177
+ 'StakedSuiEdge': { kind: 'OBJECT'; name: 'StakedSuiEdge'; fields: { 'cursor': { name: 'cursor'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; } }; 'node': { name: 'node'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'StakedSui'; ofType: null; }; } }; }; };
178
+ 'StorageFund': { kind: 'OBJECT'; name: 'StorageFund'; fields: { 'nonRefundableBalance': { name: 'nonRefundableBalance'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; } }; 'totalObjectStorageRebates': { name: 'totalObjectStorageRebates'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; } }; }; };
179
+ 'String': unknown;
180
+ 'SuiAddress': unknown;
181
+ 'SuinsRegistration': { kind: 'OBJECT'; name: 'SuinsRegistration'; fields: { 'address': { name: 'address'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'SuiAddress'; ofType: null; }; } }; 'balance': { name: 'balance'; type: { kind: 'OBJECT'; name: 'Balance'; ofType: null; } }; 'balances': { name: 'balances'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'BalanceConnection'; ofType: null; }; } }; 'bcs': { name: 'bcs'; type: { kind: 'SCALAR'; name: 'Base64'; ofType: null; } }; 'coins': { name: 'coins'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'CoinConnection'; ofType: null; }; } }; 'contents': { name: 'contents'; type: { kind: 'OBJECT'; name: 'MoveValue'; ofType: null; } }; 'defaultSuinsName': { name: 'defaultSuinsName'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'digest': { name: 'digest'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'display': { name: 'display'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'DisplayEntry'; ofType: null; }; }; } }; 'domain': { name: 'domain'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; } }; 'dynamicField': { name: 'dynamicField'; type: { kind: 'OBJECT'; name: 'DynamicField'; ofType: null; } }; 'dynamicFields': { name: 'dynamicFields'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'DynamicFieldConnection'; ofType: null; }; } }; 'dynamicObjectField': { name: 'dynamicObjectField'; type: { kind: 'OBJECT'; name: 'DynamicField'; ofType: null; } }; 'hasPublicTransfer': { name: 'hasPublicTransfer'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; }; } }; 'objects': { name: 'objects'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'MoveObjectConnection'; ofType: null; }; } }; 'owner': { name: 'owner'; type: { kind: 'UNION'; name: 'ObjectOwner'; ofType: null; } }; 'previousTransactionBlock': { name: 'previousTransactionBlock'; type: { kind: 'OBJECT'; name: 'TransactionBlock'; ofType: null; } }; 'receivedTransactionBlocks': { name: 'receivedTransactionBlocks'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'TransactionBlockConnection'; ofType: null; }; } }; 'stakedSuis': { name: 'stakedSuis'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'StakedSuiConnection'; ofType: null; }; } }; 'status': { name: 'status'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'ENUM'; name: 'ObjectKind'; ofType: null; }; } }; 'storageRebate': { name: 'storageRebate'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; } }; 'suinsRegistrations': { name: 'suinsRegistrations'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'SuinsRegistrationConnection'; ofType: null; }; } }; 'version': { name: 'version'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'UInt53'; ofType: null; }; } }; }; };
182
+ 'SuinsRegistrationConnection': { kind: 'OBJECT'; name: 'SuinsRegistrationConnection'; fields: { 'edges': { name: 'edges'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'SuinsRegistrationEdge'; ofType: null; }; }; }; } }; 'nodes': { name: 'nodes'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'SuinsRegistration'; ofType: null; }; }; }; } }; 'pageInfo': { name: 'pageInfo'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'PageInfo'; ofType: null; }; } }; }; };
183
+ 'SuinsRegistrationEdge': { kind: 'OBJECT'; name: 'SuinsRegistrationEdge'; fields: { 'cursor': { name: 'cursor'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; } }; 'node': { name: 'node'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'SuinsRegistration'; ofType: null; }; } }; }; };
184
+ 'SystemParameters': { kind: 'OBJECT'; name: 'SystemParameters'; fields: { 'durationMs': { name: 'durationMs'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; } }; 'maxValidatorCount': { name: 'maxValidatorCount'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; } }; 'minValidatorCount': { name: 'minValidatorCount'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; } }; 'minValidatorJoiningStake': { name: 'minValidatorJoiningStake'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; } }; 'stakeSubsidyStartEpoch': { name: 'stakeSubsidyStartEpoch'; type: { kind: 'SCALAR'; name: 'UInt53'; ofType: null; } }; 'validatorLowStakeGracePeriod': { name: 'validatorLowStakeGracePeriod'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; } }; 'validatorLowStakeThreshold': { name: 'validatorLowStakeThreshold'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; } }; 'validatorVeryLowStakeThreshold': { name: 'validatorVeryLowStakeThreshold'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; } }; }; };
185
+ 'TransactionArgument': { kind: 'UNION'; name: 'TransactionArgument'; fields: {}; possibleTypes: 'GasCoin' | 'Input' | 'Result'; };
186
+ 'TransactionBlock': { kind: 'OBJECT'; name: 'TransactionBlock'; fields: { 'bcs': { name: 'bcs'; type: { kind: 'SCALAR'; name: 'Base64'; ofType: null; } }; 'digest': { name: 'digest'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'effects': { name: 'effects'; type: { kind: 'OBJECT'; name: 'TransactionBlockEffects'; ofType: null; } }; 'expiration': { name: 'expiration'; type: { kind: 'OBJECT'; name: 'Epoch'; ofType: null; } }; 'gasInput': { name: 'gasInput'; type: { kind: 'OBJECT'; name: 'GasInput'; ofType: null; } }; 'kind': { name: 'kind'; type: { kind: 'UNION'; name: 'TransactionBlockKind'; ofType: null; } }; 'sender': { name: 'sender'; type: { kind: 'OBJECT'; name: 'Address'; ofType: null; } }; 'signatures': { name: 'signatures'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Base64'; ofType: null; }; }; } }; }; };
187
+ 'TransactionBlockConnection': { kind: 'OBJECT'; name: 'TransactionBlockConnection'; fields: { 'edges': { name: 'edges'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'TransactionBlockEdge'; ofType: null; }; }; }; } }; 'nodes': { name: 'nodes'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'TransactionBlock'; ofType: null; }; }; }; } }; 'pageInfo': { name: 'pageInfo'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'PageInfo'; ofType: null; }; } }; }; };
188
+ 'TransactionBlockEdge': { kind: 'OBJECT'; name: 'TransactionBlockEdge'; fields: { 'cursor': { name: 'cursor'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; } }; 'node': { name: 'node'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'TransactionBlock'; ofType: null; }; } }; }; };
189
+ 'TransactionBlockEffects': { kind: 'OBJECT'; name: 'TransactionBlockEffects'; fields: { 'balanceChanges': { name: 'balanceChanges'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'BalanceChangeConnection'; ofType: null; }; } }; 'bcs': { name: 'bcs'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Base64'; ofType: null; }; } }; 'checkpoint': { name: 'checkpoint'; type: { kind: 'OBJECT'; name: 'Checkpoint'; ofType: null; } }; 'dependencies': { name: 'dependencies'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'DependencyConnection'; ofType: null; }; } }; 'epoch': { name: 'epoch'; type: { kind: 'OBJECT'; name: 'Epoch'; ofType: null; } }; 'errors': { name: 'errors'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'events': { name: 'events'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'EventConnection'; ofType: null; }; } }; 'gasEffects': { name: 'gasEffects'; type: { kind: 'OBJECT'; name: 'GasEffects'; ofType: null; } }; 'lamportVersion': { name: 'lamportVersion'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'UInt53'; ofType: null; }; } }; 'objectChanges': { name: 'objectChanges'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'ObjectChangeConnection'; ofType: null; }; } }; 'status': { name: 'status'; type: { kind: 'ENUM'; name: 'ExecutionStatus'; ofType: null; } }; 'timestamp': { name: 'timestamp'; type: { kind: 'SCALAR'; name: 'DateTime'; ofType: null; } }; 'transactionBlock': { name: 'transactionBlock'; type: { kind: 'OBJECT'; name: 'TransactionBlock'; ofType: null; } }; 'unchangedSharedObjects': { name: 'unchangedSharedObjects'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'UnchangedSharedObjectConnection'; ofType: null; }; } }; }; };
190
+ 'TransactionBlockFilter': { kind: 'INPUT_OBJECT'; name: 'TransactionBlockFilter'; isOneOf: false; inputFields: [{ name: 'function'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'kind'; type: { kind: 'ENUM'; name: 'TransactionBlockKindInput'; ofType: null; }; defaultValue: null }, { name: 'afterCheckpoint'; type: { kind: 'SCALAR'; name: 'UInt53'; ofType: null; }; defaultValue: null }, { name: 'atCheckpoint'; type: { kind: 'SCALAR'; name: 'UInt53'; ofType: null; }; defaultValue: null }, { name: 'beforeCheckpoint'; type: { kind: 'SCALAR'; name: 'UInt53'; ofType: null; }; defaultValue: null }, { name: 'affectedAddress'; type: { kind: 'SCALAR'; name: 'SuiAddress'; ofType: null; }; defaultValue: null }, { name: 'sentAddress'; type: { kind: 'SCALAR'; name: 'SuiAddress'; ofType: null; }; defaultValue: null }, { name: 'inputObject'; type: { kind: 'SCALAR'; name: 'SuiAddress'; ofType: null; }; defaultValue: null }, { name: 'changedObject'; type: { kind: 'SCALAR'; name: 'SuiAddress'; ofType: null; }; defaultValue: null }, { name: 'transactionIds'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }]; };
191
+ 'TransactionBlockKind': { kind: 'UNION'; name: 'TransactionBlockKind'; fields: {}; possibleTypes: 'AuthenticatorStateUpdateTransaction' | 'ChangeEpochTransaction' | 'ConsensusCommitPrologueTransaction' | 'EndOfEpochTransaction' | 'GenesisTransaction' | 'ProgrammableTransactionBlock' | 'RandomnessStateUpdateTransaction'; };
192
+ 'TransactionBlockKindInput': { name: 'TransactionBlockKindInput'; enumValues: 'SYSTEM_TX' | 'PROGRAMMABLE_TX'; };
193
+ 'TransactionInput': { kind: 'UNION'; name: 'TransactionInput'; fields: {}; possibleTypes: 'OwnedOrImmutable' | 'Pure' | 'Receiving' | 'SharedInput'; };
194
+ 'TransactionInputConnection': { kind: 'OBJECT'; name: 'TransactionInputConnection'; fields: { 'edges': { name: 'edges'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'TransactionInputEdge'; ofType: null; }; }; }; } }; 'nodes': { name: 'nodes'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'UNION'; name: 'TransactionInput'; ofType: null; }; }; }; } }; 'pageInfo': { name: 'pageInfo'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'PageInfo'; ofType: null; }; } }; }; };
195
+ 'TransactionInputEdge': { kind: 'OBJECT'; name: 'TransactionInputEdge'; fields: { 'cursor': { name: 'cursor'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; } }; 'node': { name: 'node'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'UNION'; name: 'TransactionInput'; ofType: null; }; } }; }; };
196
+ 'TransactionMetadata': { kind: 'INPUT_OBJECT'; name: 'TransactionMetadata'; isOneOf: false; inputFields: [{ name: 'sender'; type: { kind: 'SCALAR'; name: 'SuiAddress'; ofType: null; }; defaultValue: null }, { name: 'gasPrice'; type: { kind: 'SCALAR'; name: 'UInt53'; ofType: null; }; defaultValue: null }, { name: 'gasObjects'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'ObjectRef'; ofType: null; }; }; }; defaultValue: null }, { name: 'gasBudget'; type: { kind: 'SCALAR'; name: 'UInt53'; ofType: null; }; defaultValue: null }, { name: 'gasSponsor'; type: { kind: 'SCALAR'; name: 'SuiAddress'; ofType: null; }; defaultValue: null }]; };
197
+ 'TransferObjectsTransaction': { kind: 'OBJECT'; name: 'TransferObjectsTransaction'; fields: { 'address': { name: 'address'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'UNION'; name: 'TransactionArgument'; ofType: null; }; } }; 'inputs': { name: 'inputs'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'UNION'; name: 'TransactionArgument'; ofType: null; }; }; }; } }; }; };
198
+ 'TypeOrigin': { kind: 'OBJECT'; name: 'TypeOrigin'; fields: { 'definingId': { name: 'definingId'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'SuiAddress'; ofType: null; }; } }; 'module': { name: 'module'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; } }; 'struct': { name: 'struct'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; } }; }; };
199
+ 'UInt53': unknown;
200
+ 'UnchangedSharedObject': { kind: 'UNION'; name: 'UnchangedSharedObject'; fields: {}; possibleTypes: 'SharedObjectCancelled' | 'SharedObjectDelete' | 'SharedObjectRead'; };
201
+ 'UnchangedSharedObjectConnection': { kind: 'OBJECT'; name: 'UnchangedSharedObjectConnection'; fields: { 'edges': { name: 'edges'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'UnchangedSharedObjectEdge'; ofType: null; }; }; }; } }; 'nodes': { name: 'nodes'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'UNION'; name: 'UnchangedSharedObject'; ofType: null; }; }; }; } }; 'pageInfo': { name: 'pageInfo'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'PageInfo'; ofType: null; }; } }; }; };
202
+ 'UnchangedSharedObjectEdge': { kind: 'OBJECT'; name: 'UnchangedSharedObjectEdge'; fields: { 'cursor': { name: 'cursor'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; } }; 'node': { name: 'node'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'UNION'; name: 'UnchangedSharedObject'; ofType: null; }; } }; }; };
203
+ 'UpgradeTransaction': { kind: 'OBJECT'; name: 'UpgradeTransaction'; fields: { 'currentPackage': { name: 'currentPackage'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'SuiAddress'; ofType: null; }; } }; 'dependencies': { name: 'dependencies'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'SuiAddress'; ofType: null; }; }; }; } }; 'modules': { name: 'modules'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Base64'; ofType: null; }; }; }; } }; 'upgradeTicket': { name: 'upgradeTicket'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'UNION'; name: 'TransactionArgument'; ofType: null; }; } }; }; };
204
+ 'Validator': { kind: 'OBJECT'; name: 'Validator'; fields: { 'address': { name: 'address'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Address'; ofType: null; }; } }; 'apy': { name: 'apy'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; } }; 'atRisk': { name: 'atRisk'; type: { kind: 'SCALAR'; name: 'UInt53'; ofType: null; } }; 'commissionRate': { name: 'commissionRate'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; } }; 'credentials': { name: 'credentials'; type: { kind: 'OBJECT'; name: 'ValidatorCredentials'; ofType: null; } }; 'description': { name: 'description'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'exchangeRates': { name: 'exchangeRates'; type: { kind: 'OBJECT'; name: 'MoveObject'; ofType: null; } }; 'exchangeRatesSize': { name: 'exchangeRatesSize'; type: { kind: 'SCALAR'; name: 'UInt53'; ofType: null; } }; 'exchangeRatesTable': { name: 'exchangeRatesTable'; type: { kind: 'OBJECT'; name: 'Owner'; ofType: null; } }; 'gasPrice': { name: 'gasPrice'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; } }; 'imageUrl': { name: 'imageUrl'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'name': { name: 'name'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'nextEpochCommissionRate': { name: 'nextEpochCommissionRate'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; } }; 'nextEpochCredentials': { name: 'nextEpochCredentials'; type: { kind: 'OBJECT'; name: 'ValidatorCredentials'; ofType: null; } }; 'nextEpochGasPrice': { name: 'nextEpochGasPrice'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; } }; 'nextEpochStake': { name: 'nextEpochStake'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; } }; 'operationCap': { name: 'operationCap'; type: { kind: 'OBJECT'; name: 'MoveObject'; ofType: null; } }; 'pendingPoolTokenWithdraw': { name: 'pendingPoolTokenWithdraw'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; } }; 'pendingStake': { name: 'pendingStake'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; } }; 'pendingTotalSuiWithdraw': { name: 'pendingTotalSuiWithdraw'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; } }; 'poolTokenBalance': { name: 'poolTokenBalance'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; } }; 'projectUrl': { name: 'projectUrl'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'reportRecords': { name: 'reportRecords'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'AddressConnection'; ofType: null; }; } }; 'rewardsPool': { name: 'rewardsPool'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; } }; 'stakingPool': { name: 'stakingPool'; type: { kind: 'OBJECT'; name: 'MoveObject'; ofType: null; } }; 'stakingPoolActivationEpoch': { name: 'stakingPoolActivationEpoch'; type: { kind: 'SCALAR'; name: 'UInt53'; ofType: null; } }; 'stakingPoolId': { name: 'stakingPoolId'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'SuiAddress'; ofType: null; }; } }; 'stakingPoolSuiBalance': { name: 'stakingPoolSuiBalance'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; } }; 'votingPower': { name: 'votingPower'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; } }; }; };
205
+ 'ValidatorConnection': { kind: 'OBJECT'; name: 'ValidatorConnection'; fields: { 'edges': { name: 'edges'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'ValidatorEdge'; ofType: null; }; }; }; } }; 'nodes': { name: 'nodes'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Validator'; ofType: null; }; }; }; } }; 'pageInfo': { name: 'pageInfo'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'PageInfo'; ofType: null; }; } }; }; };
206
+ 'ValidatorCredentials': { kind: 'OBJECT'; name: 'ValidatorCredentials'; fields: { 'netAddress': { name: 'netAddress'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'networkPubKey': { name: 'networkPubKey'; type: { kind: 'SCALAR'; name: 'Base64'; ofType: null; } }; 'p2PAddress': { name: 'p2PAddress'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'primaryAddress': { name: 'primaryAddress'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'proofOfPossession': { name: 'proofOfPossession'; type: { kind: 'SCALAR'; name: 'Base64'; ofType: null; } }; 'protocolPubKey': { name: 'protocolPubKey'; type: { kind: 'SCALAR'; name: 'Base64'; ofType: null; } }; 'workerAddress': { name: 'workerAddress'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'workerPubKey': { name: 'workerPubKey'; type: { kind: 'SCALAR'; name: 'Base64'; ofType: null; } }; }; };
207
+ 'ValidatorEdge': { kind: 'OBJECT'; name: 'ValidatorEdge'; fields: { 'cursor': { name: 'cursor'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; } }; 'node': { name: 'node'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Validator'; ofType: null; }; } }; }; };
208
+ 'ValidatorSet': { kind: 'OBJECT'; name: 'ValidatorSet'; fields: { 'activeValidators': { name: 'activeValidators'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'ValidatorConnection'; ofType: null; }; } }; 'inactivePoolsId': { name: 'inactivePoolsId'; type: { kind: 'SCALAR'; name: 'SuiAddress'; ofType: null; } }; 'inactivePoolsSize': { name: 'inactivePoolsSize'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; } }; 'pendingActiveValidatorsId': { name: 'pendingActiveValidatorsId'; type: { kind: 'SCALAR'; name: 'SuiAddress'; ofType: null; } }; 'pendingActiveValidatorsSize': { name: 'pendingActiveValidatorsSize'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; } }; 'pendingRemovals': { name: 'pendingRemovals'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; }; } }; 'stakingPoolMappingsId': { name: 'stakingPoolMappingsId'; type: { kind: 'SCALAR'; name: 'SuiAddress'; ofType: null; } }; 'stakingPoolMappingsSize': { name: 'stakingPoolMappingsSize'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; } }; 'totalStake': { name: 'totalStake'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; } }; 'validatorCandidatesId': { name: 'validatorCandidatesId'; type: { kind: 'SCALAR'; name: 'SuiAddress'; ofType: null; } }; 'validatorCandidatesSize': { name: 'validatorCandidatesSize'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; } }; }; };
209
+ 'ZkLoginIntentScope': { name: 'ZkLoginIntentScope'; enumValues: 'TRANSACTION_DATA' | 'PERSONAL_MESSAGE'; };
210
+ 'ZkLoginVerifyResult': { kind: 'OBJECT'; name: 'ZkLoginVerifyResult'; fields: { 'errors': { name: 'errors'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; } }; 'success': { name: 'success'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; }; } }; }; };
211
+ };
212
+ };
213
+
214
+ import * as gqlTada from 'gql.tada';
215
+
216
+ declare module 'gql.tada' {
217
+ interface setupSchema {
218
+ introspection: introspection
219
+ }
220
+ }
@@ -0,0 +1,11 @@
1
+ {
2
+ "compilerOptions": {
3
+ "plugins": [
4
+ {
5
+ "name": "@0no-co/graphqlsp",
6
+ "schema": "./schema.graphql",
7
+ "tadaOutputLocation": "src/graphql/generated/latest/tada-env.d.ts"
8
+ }
9
+ ]
10
+ }
11
+ }
@@ -0,0 +1,17 @@
1
+ // Copyright (c) Mysten Labs, Inc.
2
+ // SPDX-License-Identifier: Apache-2.0
3
+
4
+ import { initGraphQLTada } from 'gql.tada';
5
+
6
+ import type { introspection } from '../../generated/latest/tada-env.js';
7
+ import type { CustomScalars } from '../../types.js';
8
+
9
+ export * from '../../types.js';
10
+
11
+ export type { FragmentOf, ResultOf, VariablesOf, TadaDocumentNode } from 'gql.tada';
12
+ export { readFragment, maskFragments } from 'gql.tada';
13
+
14
+ export const graphql = initGraphQLTada<{
15
+ introspection: introspection;
16
+ scalars: CustomScalars;
17
+ }>();