@iota/graphql-transport 0.2.2 → 0.2.4
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.
- package/CHANGELOG.md +14 -0
- package/dist/cjs/generated/queries.d.ts +18 -18
- package/dist/cjs/generated/queries.js.map +1 -1
- package/dist/cjs/mappers/transaction-block.d.ts +1 -1
- package/dist/cjs/mappers/transaction-block.js +7 -7
- package/dist/cjs/mappers/transaction-block.js.map +2 -2
- package/dist/esm/generated/queries.d.ts +18 -18
- package/dist/esm/generated/queries.js.map +1 -1
- package/dist/esm/mappers/transaction-block.d.ts +1 -1
- package/dist/esm/mappers/transaction-block.js +7 -7
- package/dist/esm/mappers/transaction-block.js.map +2 -2
- package/dist/tsconfig.esm.tsbuildinfo +1 -1
- package/dist/tsconfig.tsbuildinfo +1 -1
- package/package.json +3 -3
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"version": 3,
|
|
3
3
|
"sources": ["../../../src/generated/queries.ts"],
|
|
4
|
-
"sourcesContent": ["// Copyright (c) Mysten Labs, Inc.\n// Modifications Copyright (c) 2024 IOTA Stiftung\n// SPDX-License-Identifier: Apache-2.0\n/* eslint-disable */\n\nimport { DocumentTypeDecoration } from '@graphql-typed-document-node/core';\nexport type Maybe<T> = T | null;\nexport type InputMaybe<T> = Maybe<T>;\nexport type Exact<T extends { [key: string]: unknown }> = { [K in keyof T]: T[K] };\nexport type MakeOptional<T, K extends keyof T> = Omit<T, K> & { [SubKey in K]?: Maybe<T[SubKey]> };\nexport type MakeMaybe<T, K extends keyof T> = Omit<T, K> & { [SubKey in K]: Maybe<T[SubKey]> };\nexport type MakeEmpty<T extends { [key: string]: unknown }, K extends keyof T> = { [_ in K]?: never };\nexport type Incremental<T> = T | { [P in keyof T]?: P extends ' $fragmentName' | '__typename' ? T[P] : never };\n/** All built-in and custom scalars, mapped to their actual values */\nexport type Scalars = {\n ID: { input: string; output: string; }\n String: { input: string; output: string; }\n Boolean: { input: boolean; output: boolean; }\n Int: { input: number; output: number; }\n Float: { input: number; output: number; }\n /** String containing Base64-encoded binary data. */\n Base64: { input: any; output: any; }\n /** String representation of an arbitrary width, possibly signed integer. */\n BigInt: { input: any; output: any; }\n /** ISO-8601 Date and Time: RFC3339 in UTC with format: YYYY-MM-DDTHH:MM:SS.mmmZ. Note that the milliseconds part is optional, and it may be omitted if its value is 0. */\n DateTime: { input: any; output: any; }\n /** String containing 32B hex-encoded address, with a leading \"0x\". Leading zeroes can be omitted on input but will always appear in outputs (IotaAddress in output is guaranteed to be 66 characters long). */\n IotaAddress: { input: any; output: any; }\n /** Arbitrary JSON data. */\n JSON: { input: any; output: any; }\n /**\n * The contents of a Move Value, corresponding to the following recursive type:\n *\n * type MoveData =\n * { Address: IotaAddress }\n * | { UID: IotaAddress }\n * | { ID: IotaAddress }\n * | { Bool: bool }\n * | { Number: BigInt }\n * | { String: string }\n * | { Vector: [MoveData] }\n * | { Option: MoveData? }\n * | { Struct: [{ name: string , value: MoveData }] }\n * | { Variant: {\n * name: string,\n * fields: [{ name: string, value: MoveData }],\n * }\n */\n MoveData: { input: any; output: any; }\n /**\n * The shape of a concrete Move Type (a type with all its type parameters instantiated with concrete types), corresponding to the following recursive type:\n *\n * type MoveTypeLayout =\n * \"address\"\n * | \"bool\"\n * | \"u8\" | \"u16\" | ... | \"u256\"\n * | { vector: MoveTypeLayout }\n * | {\n * struct: {\n * type: string,\n * fields: [{ name: string, layout: MoveTypeLayout }],\n * }\n * }\n * | { enum: [{\n * type: string,\n * variants: [{\n * name: string,\n * fields: [{ name: string, layout: MoveTypeLayout }],\n * }]\n * }]\n * }\n */\n MoveTypeLayout: { input: any; output: any; }\n /**\n * The signature of a concrete Move Type (a type with all its type parameters instantiated with concrete types, that contains no references), corresponding to the following recursive type:\n *\n * type MoveTypeSignature =\n * \"address\"\n * | \"bool\"\n * | \"u8\" | \"u16\" | ... | \"u256\"\n * | { vector: MoveTypeSignature }\n * | {\n * datatype: {\n * package: string,\n * module: string,\n * type: string,\n * typeParameters: [MoveTypeSignature],\n * }\n * }\n */\n MoveTypeSignature: { input: any; output: any; }\n /**\n * The shape of an abstract Move Type (a type that can contain free type parameters, and can optionally be taken by reference), corresponding to the following recursive type:\n *\n * type OpenMoveTypeSignature = {\n * ref: (\"&\" | \"&mut\")?,\n * body: OpenMoveTypeSignatureBody,\n * }\n *\n * type OpenMoveTypeSignatureBody =\n * \"address\"\n * | \"bool\"\n * | \"u8\" | \"u16\" | ... | \"u256\"\n * | { vector: OpenMoveTypeSignatureBody }\n * | {\n * datatype {\n * package: string,\n * module: string,\n * type: string,\n * typeParameters: [OpenMoveTypeSignatureBody]\n * }\n * }\n * | { typeParameter: number }\n */\n OpenMoveTypeSignature: { input: any; output: any; }\n /**\n * An unsigned integer that can hold values up to 2^53 - 1. This can be treated\n * similarly to `Int`, but it is guaranteed to be non-negative, and it may be\n * larger than 2^32 - 1.\n */\n UInt53: { input: any; output: any; }\n};\n\nexport type ActiveJwk = {\n __typename?: 'ActiveJwk';\n /** The JWK algorithm parameter, (RFC 7517, Section 4.4). */\n alg: Scalars['String']['output'];\n /** The JWK RSA public exponent, (RFC 7517, Section 9.3). */\n e: Scalars['String']['output'];\n /** The most recent epoch in which the JWK was validated. */\n epoch?: Maybe<Epoch>;\n /** The string (Issuing Authority) that identifies the OIDC provider. */\n iss: Scalars['String']['output'];\n /**\n * The string (Key ID) that identifies the JWK among a set of JWKs, (RFC\n * 7517, Section 4.5).\n */\n kid: Scalars['String']['output'];\n /** The JWK key type parameter, (RFC 7517, Section 4.1). */\n kty: Scalars['String']['output'];\n /** The JWK RSA modulus, (RFC 7517, Section 9.3). */\n n: Scalars['String']['output'];\n};\n\nexport type ActiveJwkConnection = {\n __typename?: 'ActiveJwkConnection';\n /** A list of edges. */\n edges: Array<ActiveJwkEdge>;\n /** A list of nodes. */\n nodes: Array<ActiveJwk>;\n /** Information to aid in pagination. */\n pageInfo: PageInfo;\n};\n\n/** An edge in a connection. */\nexport type ActiveJwkEdge = {\n __typename?: 'ActiveJwkEdge';\n /** A cursor for use in pagination */\n cursor: Scalars['String']['output'];\n /** The item at the end of the edge */\n node: ActiveJwk;\n};\n\n/**\n * The 32-byte address that is an account address (corresponding to a public\n * key).\n */\nexport type Address = IOwner & {\n __typename?: 'Address';\n address: Scalars['IotaAddress']['output'];\n /**\n * Total balance of all coins with marker type owned by this address. If\n * type is not supplied, it defaults to `0x2::iota::IOTA`.\n */\n balance?: Maybe<Balance>;\n /** The balances of all coin types owned by this address. */\n balances: BalanceConnection;\n /**\n * The coin objects for this address.\n *\n * `type` is a filter on the coin's type parameter, defaulting to\n * `0x2::iota::IOTA`.\n */\n coins: CoinConnection;\n /** Objects owned by this address, optionally `filter`-ed. */\n objects: MoveObjectConnection;\n /** The `0x3::staking_pool::StakedIota` objects owned by this address. */\n stakedIotas: StakedIotaConnection;\n /**\n * Similar behavior to the `transactionBlocks` in Query but supporting the\n * additional `AddressTransactionBlockRelationship` filter, which\n * defaults to `SIGN`.\n *\n * `scanLimit` restricts the number of candidate transactions scanned when\n * gathering a page of results. It is required for queries that apply\n * more than two complex filters (on function, kind, sender, recipient,\n * input object, changed object, or ids), and can be at most\n * `serviceConfig.maxScanLimit`.\n *\n * When the scan limit is reached the page will be returned even if it has\n * fewer than `first` results when paginating forward (`last` when\n * paginating backwards). If there are more transactions to scan,\n * `pageInfo.hasNextPage` (or `pageInfo.hasPreviousPage`) will be set to\n * `true`, and `PageInfo.endCursor` (or `PageInfo.startCursor`) will be set\n * to the last transaction that was scanned as opposed to the last (or\n * first) transaction in the page.\n *\n * Requesting the next (or previous) page after this cursor will resume the\n * search, scanning the next `scanLimit` many transactions in the\n * direction of pagination, and so on until all transactions in the\n * scanning range have been visited.\n *\n * By default, the scanning range includes all transactions known to\n * GraphQL, but it can be restricted by the `after` and `before`\n * cursors, and the `beforeCheckpoint`, `afterCheckpoint` and\n * `atCheckpoint` filters.\n */\n transactionBlocks: TransactionBlockConnection;\n};\n\n\n/**\n * The 32-byte address that is an account address (corresponding to a public\n * key).\n */\nexport type AddressBalanceArgs = {\n type?: InputMaybe<Scalars['String']['input']>;\n};\n\n\n/**\n * The 32-byte address that is an account address (corresponding to a public\n * key).\n */\nexport type AddressBalancesArgs = {\n after?: InputMaybe<Scalars['String']['input']>;\n before?: InputMaybe<Scalars['String']['input']>;\n first?: InputMaybe<Scalars['Int']['input']>;\n last?: InputMaybe<Scalars['Int']['input']>;\n};\n\n\n/**\n * The 32-byte address that is an account address (corresponding to a public\n * key).\n */\nexport type AddressCoinsArgs = {\n after?: InputMaybe<Scalars['String']['input']>;\n before?: InputMaybe<Scalars['String']['input']>;\n first?: InputMaybe<Scalars['Int']['input']>;\n last?: InputMaybe<Scalars['Int']['input']>;\n type?: InputMaybe<Scalars['String']['input']>;\n};\n\n\n/**\n * The 32-byte address that is an account address (corresponding to a public\n * key).\n */\nexport type AddressObjectsArgs = {\n after?: InputMaybe<Scalars['String']['input']>;\n before?: InputMaybe<Scalars['String']['input']>;\n filter?: InputMaybe<ObjectFilter>;\n first?: InputMaybe<Scalars['Int']['input']>;\n last?: InputMaybe<Scalars['Int']['input']>;\n};\n\n\n/**\n * The 32-byte address that is an account address (corresponding to a public\n * key).\n */\nexport type AddressStakedIotasArgs = {\n after?: InputMaybe<Scalars['String']['input']>;\n before?: InputMaybe<Scalars['String']['input']>;\n first?: InputMaybe<Scalars['Int']['input']>;\n last?: InputMaybe<Scalars['Int']['input']>;\n};\n\n\n/**\n * The 32-byte address that is an account address (corresponding to a public\n * key).\n */\nexport type AddressTransactionBlocksArgs = {\n after?: InputMaybe<Scalars['String']['input']>;\n before?: InputMaybe<Scalars['String']['input']>;\n filter?: InputMaybe<TransactionBlockFilter>;\n first?: InputMaybe<Scalars['Int']['input']>;\n last?: InputMaybe<Scalars['Int']['input']>;\n relation?: InputMaybe<AddressTransactionBlockRelationship>;\n scanLimit?: InputMaybe<Scalars['Int']['input']>;\n};\n\nexport type AddressConnection = {\n __typename?: 'AddressConnection';\n /** A list of edges. */\n edges: Array<AddressEdge>;\n /** A list of nodes. */\n nodes: Array<Address>;\n /** Information to aid in pagination. */\n pageInfo: PageInfo;\n};\n\n/** An edge in a connection. */\nexport type AddressEdge = {\n __typename?: 'AddressEdge';\n /** A cursor for use in pagination */\n cursor: Scalars['String']['output'];\n /** The item at the end of the edge */\n node: Address;\n};\n\n/**\n * An address-owned object is owned by a specific 32-byte address that is\n * either an account address (derived from a particular signature scheme) or\n * an object ID. An address-owned object is accessible only to its owner and no\n * others.\n */\nexport type AddressOwner = {\n __typename?: 'AddressOwner';\n owner?: Maybe<Owner>;\n};\n\n/**\n * The possible relationship types for a transaction block: sign, sent,\n * received, or paid.\n */\nexport enum AddressTransactionBlockRelationship {\n /** Transactions that sent objects to this address. */\n Recv = 'RECV',\n /** Transactions this address has signed either as a sender or as a sponsor. */\n Sign = 'SIGN'\n}\n\n/** System transaction for creating the on-chain state used by zkLogin. */\nexport type AuthenticatorStateCreateTransaction = {\n __typename?: 'AuthenticatorStateCreateTransaction';\n /** A workaround to define an empty variant of a GraphQL union. */\n _?: Maybe<Scalars['Boolean']['output']>;\n};\n\nexport type AuthenticatorStateExpireTransaction = {\n __typename?: 'AuthenticatorStateExpireTransaction';\n /** The initial version that the AuthenticatorStateUpdateV1 was shared at. */\n authenticatorObjInitialSharedVersion: Scalars['UInt53']['output'];\n /** Expire JWKs that have a lower epoch than this. */\n minEpoch?: Maybe<Epoch>;\n};\n\n/** System transaction for updating the on-chain state used by zkLogin. */\nexport type AuthenticatorStateUpdateTransaction = {\n __typename?: 'AuthenticatorStateUpdateTransaction';\n /** The initial version of the authenticator object that it was shared at. */\n authenticatorObjInitialSharedVersion: Scalars['UInt53']['output'];\n /** Epoch of the authenticator state update transaction. */\n epoch?: Maybe<Epoch>;\n /** Newly active JWKs (JSON Web Keys). */\n newActiveJwks: ActiveJwkConnection;\n /** Consensus round of the authenticator state update. */\n round: Scalars['UInt53']['output'];\n};\n\n\n/** System transaction for updating the on-chain state used by zkLogin. */\nexport type AuthenticatorStateUpdateTransactionNewActiveJwksArgs = {\n after?: InputMaybe<Scalars['String']['input']>;\n before?: InputMaybe<Scalars['String']['input']>;\n first?: InputMaybe<Scalars['Int']['input']>;\n last?: InputMaybe<Scalars['Int']['input']>;\n};\n\n/**\n * Range of checkpoints that the RPC is guaranteed to produce a consistent\n * response for.\n */\nexport type AvailableRange = {\n __typename?: 'AvailableRange';\n first?: Maybe<Checkpoint>;\n last?: Maybe<Checkpoint>;\n};\n\n/** The total balance for a particular coin type. */\nexport type Balance = {\n __typename?: 'Balance';\n /** How many coins of this type constitute the balance */\n coinObjectCount?: Maybe<Scalars['UInt53']['output']>;\n /** Coin type for the balance, such as 0x2::iota::IOTA */\n coinType: MoveType;\n /** Total balance across all coin objects of the coin type */\n totalBalance?: Maybe<Scalars['BigInt']['output']>;\n};\n\n/**\n * Effects to the balance (sum of coin values per coin type) owned by an\n * address or object.\n */\nexport type BalanceChange = {\n __typename?: 'BalanceChange';\n /** The signed balance change. */\n amount?: Maybe<Scalars['BigInt']['output']>;\n /**\n * The inner type of the coin whose balance has changed (e.g.\n * `0x2::iota::IOTA`).\n */\n coinType?: Maybe<MoveType>;\n /** The address or object whose balance has changed. */\n owner?: Maybe<Owner>;\n};\n\nexport type BalanceChangeConnection = {\n __typename?: 'BalanceChangeConnection';\n /** A list of edges. */\n edges: Array<BalanceChangeEdge>;\n /** A list of nodes. */\n nodes: Array<BalanceChange>;\n /** Information to aid in pagination. */\n pageInfo: PageInfo;\n};\n\n/** An edge in a connection. */\nexport type BalanceChangeEdge = {\n __typename?: 'BalanceChangeEdge';\n /** A cursor for use in pagination */\n cursor: Scalars['String']['output'];\n /** The item at the end of the edge */\n node: BalanceChange;\n};\n\nexport type BalanceConnection = {\n __typename?: 'BalanceConnection';\n /** A list of edges. */\n edges: Array<BalanceEdge>;\n /** A list of nodes. */\n nodes: Array<Balance>;\n /** Information to aid in pagination. */\n pageInfo: PageInfo;\n};\n\n/** An edge in a connection. */\nexport type BalanceEdge = {\n __typename?: 'BalanceEdge';\n /** A cursor for use in pagination */\n cursor: Scalars['String']['output'];\n /** The item at the end of the edge */\n node: Balance;\n};\n\nexport type BridgeCommitteeInitTransaction = {\n __typename?: 'BridgeCommitteeInitTransaction';\n bridgeObjInitialSharedVersion: Scalars['UInt53']['output'];\n};\n\nexport type BridgeStateCreateTransaction = {\n __typename?: 'BridgeStateCreateTransaction';\n chainId: Scalars['String']['output'];\n};\n\n/**\n * A system transaction that updates epoch information on-chain (increments the\n * current epoch). Executed by the system once per epoch, without using gas.\n * Epoch change transactions cannot be submitted by users, because validators\n * will refuse to sign them.\n */\nexport type ChangeEpochTransaction = {\n __typename?: 'ChangeEpochTransaction';\n /**\n * The total amount of gas charged for computation during the previous\n * epoch (in NANOS).\n */\n computationCharge: Scalars['BigInt']['output'];\n /** The next (to become) epoch. */\n epoch?: Maybe<Epoch>;\n /**\n * The total gas retained from storage fees, that will not be returned by\n * storage rebates when the relevant objects are cleaned up (in NANOS).\n */\n nonRefundableStorageFee: Scalars['BigInt']['output'];\n /** The protocol version in effect in the new epoch. */\n protocolVersion: Scalars['UInt53']['output'];\n /** Time at which the next epoch will start. */\n startTimestamp: Scalars['DateTime']['output'];\n /**\n * The total amount of gas charged for storage during the previous epoch\n * (in NANOS).\n */\n storageCharge: Scalars['BigInt']['output'];\n /**\n * The IOTA returned to transaction senders for cleaning up objects (in\n * NANOS).\n */\n storageRebate: Scalars['BigInt']['output'];\n /**\n * System packages (specifically framework and move stdlib) that are\n * written before the new epoch starts, to upgrade them on-chain.\n * Validators write these packages out when running the transaction.\n */\n systemPackages: MovePackageConnection;\n};\n\n\n/**\n * A system transaction that updates epoch information on-chain (increments the\n * current epoch). Executed by the system once per epoch, without using gas.\n * Epoch change transactions cannot be submitted by users, because validators\n * will refuse to sign them.\n */\nexport type ChangeEpochTransactionSystemPackagesArgs = {\n after?: InputMaybe<Scalars['String']['input']>;\n before?: InputMaybe<Scalars['String']['input']>;\n first?: InputMaybe<Scalars['Int']['input']>;\n last?: InputMaybe<Scalars['Int']['input']>;\n};\n\n/**\n * Checkpoints contain finalized transactions and are used for node\n * synchronization and global transaction ordering.\n */\nexport type Checkpoint = {\n __typename?: 'Checkpoint';\n /**\n * A 32-byte hash that uniquely identifies the checkpoint contents, encoded\n * in Base58. This hash can be used to verify checkpoint contents by\n * checking signatures against the committee, Hashing contents to match\n * digest, and checking that the previous checkpoint digest matches.\n */\n digest: Scalars['String']['output'];\n /** The epoch this checkpoint is part of. */\n epoch?: Maybe<Epoch>;\n /**\n * The total number of transaction blocks in the network by the end of this\n * checkpoint.\n */\n networkTotalTransactions?: Maybe<Scalars['UInt53']['output']>;\n /** The digest of the checkpoint at the previous sequence number. */\n previousCheckpointDigest?: Maybe<Scalars['String']['output']>;\n /**\n * The computation cost, storage cost, storage rebate, and non-refundable\n * storage fee accumulated during this epoch, up to and including this\n * checkpoint. These values increase monotonically across checkpoints\n * in the same epoch, and reset on epoch boundaries.\n */\n rollingGasSummary?: Maybe<GasCostSummary>;\n /**\n * This checkpoint's position in the total order of finalized checkpoints,\n * agreed upon by consensus.\n */\n sequenceNumber: Scalars['UInt53']['output'];\n /**\n * The timestamp at which the checkpoint is agreed to have happened\n * according to consensus. Transactions that access time in this\n * checkpoint will observe this timestamp.\n */\n timestamp: Scalars['DateTime']['output'];\n /**\n * Transactions in this checkpoint.\n *\n * `scanLimit` restricts the number of candidate transactions scanned when\n * gathering a page of results. It is required for queries that apply\n * more than two complex filters (on function, kind, sender, recipient,\n * input object, changed object, or ids), and can be at most\n * `serviceConfig.maxScanLimit`.\n *\n * When the scan limit is reached the page will be returned even if it has\n * fewer than `first` results when paginating forward (`last` when\n * paginating backwards). If there are more transactions to scan,\n * `pageInfo.hasNextPage` (or `pageInfo.hasPreviousPage`) will be set to\n * `true`, and `PageInfo.endCursor` (or `PageInfo.startCursor`) will be set\n * to the last transaction that was scanned as opposed to the last (or\n * first) transaction in the page.\n *\n * Requesting the next (or previous) page after this cursor will resume the\n * search, scanning the next `scanLimit` many transactions in the\n * direction of pagination, and so on until all transactions in the\n * scanning range have been visited.\n *\n * By default, the scanning range consists of all transactions in this\n * checkpoint.\n */\n transactionBlocks: TransactionBlockConnection;\n /**\n * This is an aggregation of signatures from a quorum of validators for the\n * checkpoint proposal.\n */\n validatorSignatures: Scalars['Base64']['output'];\n};\n\n\n/**\n * Checkpoints contain finalized transactions and are used for node\n * synchronization and global transaction ordering.\n */\nexport type CheckpointTransactionBlocksArgs = {\n after?: InputMaybe<Scalars['String']['input']>;\n before?: InputMaybe<Scalars['String']['input']>;\n filter?: InputMaybe<TransactionBlockFilter>;\n first?: InputMaybe<Scalars['Int']['input']>;\n last?: InputMaybe<Scalars['Int']['input']>;\n scanLimit?: InputMaybe<Scalars['Int']['input']>;\n};\n\nexport type CheckpointConnection = {\n __typename?: 'CheckpointConnection';\n /** A list of edges. */\n edges: Array<CheckpointEdge>;\n /** A list of nodes. */\n nodes: Array<Checkpoint>;\n /** Information to aid in pagination. */\n pageInfo: PageInfo;\n};\n\n/** An edge in a connection. */\nexport type CheckpointEdge = {\n __typename?: 'CheckpointEdge';\n /** A cursor for use in pagination */\n cursor: Scalars['String']['output'];\n /** The item at the end of the edge */\n node: Checkpoint;\n};\n\n/**\n * Filter either by the digest, or the sequence number, or neither, to get the\n * latest checkpoint.\n */\nexport type CheckpointId = {\n digest?: InputMaybe<Scalars['String']['input']>;\n sequenceNumber?: InputMaybe<Scalars['UInt53']['input']>;\n};\n\n/** Some 0x2::coin::Coin Move object. */\nexport type Coin = IMoveObject & IObject & IOwner & {\n __typename?: 'Coin';\n address: Scalars['IotaAddress']['output'];\n /**\n * Total balance of all coins with marker type owned by this object. If\n * type is not supplied, it defaults to `0x2::iota::IOTA`.\n */\n balance?: Maybe<Balance>;\n /** The balances of all coin types owned by this object. */\n balances: BalanceConnection;\n /** The Base64-encoded BCS serialization of the object's content. */\n bcs?: Maybe<Scalars['Base64']['output']>;\n /** Balance of this coin object. */\n coinBalance?: Maybe<Scalars['BigInt']['output']>;\n /**\n * The coin objects for this object.\n *\n * `type` is a filter on the coin's type parameter, defaulting to\n * `0x2::iota::IOTA`.\n */\n coins: CoinConnection;\n /**\n * Displays the contents of the Move object in a JSON string and through\n * GraphQL types. Also provides the flat representation of the type\n * signature, and the BCS of the corresponding data.\n */\n contents?: Maybe<MoveValue>;\n /**\n * 32-byte hash that identifies the object's contents, encoded as a Base58\n * string.\n */\n digest?: Maybe<Scalars['String']['output']>;\n /**\n * The set of named templates defined on-chain for the type of this object,\n * to be handled off-chain. The server substitutes data from the object\n * into these templates to generate a display string per template.\n */\n display?: Maybe<Array<DisplayEntry>>;\n /**\n * Access a dynamic field on an object using its name. Names are arbitrary\n * Move values whose type have `copy`, `drop`, and `store`, and are\n * specified using their type, and their BCS contents, Base64 encoded.\n *\n * Dynamic fields on wrapped objects can be accessed by using the same API\n * under the Owner type.\n */\n dynamicField?: Maybe<DynamicField>;\n /**\n * The dynamic fields and dynamic object fields on an object.\n *\n * Dynamic fields on wrapped objects can be accessed by using the same API\n * under the Owner type.\n */\n dynamicFields: DynamicFieldConnection;\n /**\n * Access a dynamic object field on an object using its name. Names are\n * arbitrary Move values whose type have `copy`, `drop`, and `store`,\n * and are specified using their type, and their BCS contents, Base64\n * encoded. The value of a dynamic object field can also be accessed\n * off-chain directly via its address (e.g. using `Query.object`).\n *\n * Dynamic fields on wrapped objects can be accessed by using the same API\n * under the Owner type.\n */\n dynamicObjectField?: Maybe<DynamicField>;\n /** Objects owned by this object, optionally `filter`-ed. */\n objects: MoveObjectConnection;\n /** The owner type of this object: Immutable, Shared, Parent, Address */\n owner?: Maybe<ObjectOwner>;\n /** The transaction block that created this version of the object. */\n previousTransactionBlock?: Maybe<TransactionBlock>;\n /**\n * The transaction blocks that sent objects to this object.\n *\n * `scanLimit` restricts the number of candidate transactions scanned when\n * gathering a page of results. It is required for queries that apply\n * more than two complex filters (on function, kind, sender, recipient,\n * input object, changed object, or ids), and can be at most\n * `serviceConfig.maxScanLimit`.\n *\n * When the scan limit is reached the page will be returned even if it has\n * fewer than `first` results when paginating forward (`last` when\n * paginating backwards). If there are more transactions to scan,\n * `pageInfo.hasNextPage` (or `pageInfo.hasPreviousPage`) will be set to\n * `true`, and `PageInfo.endCursor` (or `PageInfo.startCursor`) will be set\n * to the last transaction that was scanned as opposed to the last (or\n * first) transaction in the page.\n *\n * Requesting the next (or previous) page after this cursor will resume the\n * search, scanning the next `scanLimit` many transactions in the\n * direction of pagination, and so on until all transactions in the\n * scanning range have been visited.\n *\n * By default, the scanning range includes all transactions known to\n * GraphQL, but it can be restricted by the `after` and `before`\n * cursors, and the `beforeCheckpoint`, `afterCheckpoint` and\n * `atCheckpoint` filters.\n */\n receivedTransactionBlocks: TransactionBlockConnection;\n /** The `0x3::staking_pool::StakedIota` objects owned by this object. */\n stakedIotas: StakedIotaConnection;\n /**\n * The current status of the object as read from the off-chain store. The\n * possible states are: NOT_INDEXED, the object is loaded from\n * serialized data, such as the contents of a genesis or system package\n * upgrade transaction. LIVE, the version returned is the most recent for\n * the object, and it is not deleted or wrapped at that version.\n * HISTORICAL, the object was referenced at a specific version or\n * checkpoint, so is fetched from historical tables and may not be the\n * latest version of the object. WRAPPED_OR_DELETED, the object is deleted\n * or wrapped and only partial information can be loaded.\"\n */\n status: ObjectKind;\n /**\n * The amount of IOTA we would rebate if this object gets deleted or\n * mutated. This number is recalculated based on the present storage\n * gas price.\n */\n storageRebate?: Maybe<Scalars['BigInt']['output']>;\n version: Scalars['UInt53']['output'];\n};\n\n\n/** Some 0x2::coin::Coin Move object. */\nexport type CoinBalanceArgs = {\n type?: InputMaybe<Scalars['String']['input']>;\n};\n\n\n/** Some 0x2::coin::Coin Move object. */\nexport type CoinBalancesArgs = {\n after?: InputMaybe<Scalars['String']['input']>;\n before?: InputMaybe<Scalars['String']['input']>;\n first?: InputMaybe<Scalars['Int']['input']>;\n last?: InputMaybe<Scalars['Int']['input']>;\n};\n\n\n/** Some 0x2::coin::Coin Move object. */\nexport type CoinCoinsArgs = {\n after?: InputMaybe<Scalars['String']['input']>;\n before?: InputMaybe<Scalars['String']['input']>;\n first?: InputMaybe<Scalars['Int']['input']>;\n last?: InputMaybe<Scalars['Int']['input']>;\n type?: InputMaybe<Scalars['String']['input']>;\n};\n\n\n/** Some 0x2::coin::Coin Move object. */\nexport type CoinDynamicFieldArgs = {\n name: DynamicFieldName;\n};\n\n\n/** Some 0x2::coin::Coin Move object. */\nexport type CoinDynamicFieldsArgs = {\n after?: InputMaybe<Scalars['String']['input']>;\n before?: InputMaybe<Scalars['String']['input']>;\n first?: InputMaybe<Scalars['Int']['input']>;\n last?: InputMaybe<Scalars['Int']['input']>;\n};\n\n\n/** Some 0x2::coin::Coin Move object. */\nexport type CoinDynamicObjectFieldArgs = {\n name: DynamicFieldName;\n};\n\n\n/** Some 0x2::coin::Coin Move object. */\nexport type CoinObjectsArgs = {\n after?: InputMaybe<Scalars['String']['input']>;\n before?: InputMaybe<Scalars['String']['input']>;\n filter?: InputMaybe<ObjectFilter>;\n first?: InputMaybe<Scalars['Int']['input']>;\n last?: InputMaybe<Scalars['Int']['input']>;\n};\n\n\n/** Some 0x2::coin::Coin Move object. */\nexport type CoinReceivedTransactionBlocksArgs = {\n after?: InputMaybe<Scalars['String']['input']>;\n before?: InputMaybe<Scalars['String']['input']>;\n filter?: InputMaybe<TransactionBlockFilter>;\n first?: InputMaybe<Scalars['Int']['input']>;\n last?: InputMaybe<Scalars['Int']['input']>;\n scanLimit?: InputMaybe<Scalars['Int']['input']>;\n};\n\n\n/** Some 0x2::coin::Coin Move object. */\nexport type CoinStakedIotasArgs = {\n after?: InputMaybe<Scalars['String']['input']>;\n before?: InputMaybe<Scalars['String']['input']>;\n first?: InputMaybe<Scalars['Int']['input']>;\n last?: InputMaybe<Scalars['Int']['input']>;\n};\n\nexport type CoinConnection = {\n __typename?: 'CoinConnection';\n /** A list of edges. */\n edges: Array<CoinEdge>;\n /** A list of nodes. */\n nodes: Array<Coin>;\n /** Information to aid in pagination. */\n pageInfo: PageInfo;\n};\n\n/** An edge in a connection. */\nexport type CoinEdge = {\n __typename?: 'CoinEdge';\n /** A cursor for use in pagination */\n cursor: Scalars['String']['output'];\n /** The item at the end of the edge */\n node: Coin;\n};\n\n/** The metadata for a coin type. */\nexport type CoinMetadata = IMoveObject & IObject & IOwner & {\n __typename?: 'CoinMetadata';\n address: Scalars['IotaAddress']['output'];\n /**\n * Total balance of all coins with marker type owned by this object. If\n * type is not supplied, it defaults to `0x2::iota::IOTA`.\n */\n balance?: Maybe<Balance>;\n /** The balances of all coin types owned by this object. */\n balances: BalanceConnection;\n /** The Base64-encoded BCS serialization of the object's content. */\n bcs?: Maybe<Scalars['Base64']['output']>;\n /**\n * The coin objects for this object.\n *\n * `type` is a filter on the coin's type parameter, defaulting to\n * `0x2::iota::IOTA`.\n */\n coins: CoinConnection;\n /**\n * Displays the contents of the Move object in a JSON string and through\n * GraphQL types. Also provides the flat representation of the type\n * signature, and the BCS of the corresponding data.\n */\n contents?: Maybe<MoveValue>;\n /** The number of decimal places used to represent the token. */\n decimals?: Maybe<Scalars['Int']['output']>;\n /** Optional description of the token, provided by the creator of the token. */\n description?: Maybe<Scalars['String']['output']>;\n /**\n * 32-byte hash that identifies the object's contents, encoded as a Base58\n * string.\n */\n digest?: Maybe<Scalars['String']['output']>;\n /**\n * The set of named templates defined on-chain for the type of this object,\n * to be handled off-chain. The server substitutes data from the object\n * into these templates to generate a display string per template.\n */\n display?: Maybe<Array<DisplayEntry>>;\n /**\n * Access a dynamic field on an object using its name. Names are arbitrary\n * Move values whose type have `copy`, `drop`, and `store`, and are\n * specified using their type, and their BCS contents, Base64 encoded.\n *\n * Dynamic fields on wrapped objects can be accessed by using the same API\n * under the Owner type.\n */\n dynamicField?: Maybe<DynamicField>;\n /**\n * The dynamic fields and dynamic object fields on an object.\n *\n * Dynamic fields on wrapped objects can be accessed by using the same API\n * under the Owner type.\n */\n dynamicFields: DynamicFieldConnection;\n /**\n * Access a dynamic object field on an object using its name. Names are\n * arbitrary Move values whose type have `copy`, `drop`, and `store`,\n * and are specified using their type, and their BCS contents, Base64\n * encoded. The value of a dynamic object field can also be accessed\n * off-chain directly via its address (e.g. using `Query.object`).\n *\n * Dynamic fields on wrapped objects can be accessed by using the same API\n * under the Owner type.\n */\n dynamicObjectField?: Maybe<DynamicField>;\n iconUrl?: Maybe<Scalars['String']['output']>;\n /** Full, official name of the token. */\n name?: Maybe<Scalars['String']['output']>;\n /** Objects owned by this object, optionally `filter`-ed. */\n objects: MoveObjectConnection;\n /** The owner type of this object: Immutable, Shared, Parent, Address */\n owner?: Maybe<ObjectOwner>;\n /** The transaction block that created this version of the object. */\n previousTransactionBlock?: Maybe<TransactionBlock>;\n /**\n * The transaction blocks that sent objects to this object.\n *\n * `scanLimit` restricts the number of candidate transactions scanned when\n * gathering a page of results. It is required for queries that apply\n * more than two complex filters (on function, kind, sender, recipient,\n * input object, changed object, or ids), and can be at most\n * `serviceConfig.maxScanLimit`.\n *\n * When the scan limit is reached the page will be returned even if it has\n * fewer than `first` results when paginating forward (`last` when\n * paginating backwards). If there are more transactions to scan,\n * `pageInfo.hasNextPage` (or `pageInfo.hasPreviousPage`) will be set to\n * `true`, and `PageInfo.endCursor` (or `PageInfo.startCursor`) will be set\n * to the last transaction that was scanned as opposed to the last (or\n * first) transaction in the page.\n *\n * Requesting the next (or previous) page after this cursor will resume the\n * search, scanning the next `scanLimit` many transactions in the\n * direction of pagination, and so on until all transactions in the\n * scanning range have been visited.\n *\n * By default, the scanning range includes all transactions known to\n * GraphQL, but it can be restricted by the `after` and `before`\n * cursors, and the `beforeCheckpoint`, `afterCheckpoint` and\n * `atCheckpoint` filters.\n */\n receivedTransactionBlocks: TransactionBlockConnection;\n /** The `0x3::staking_pool::StakedIota` objects owned by this object. */\n stakedIotas: StakedIotaConnection;\n /**\n * The current status of the object as read from the off-chain store. The\n * possible states are: NOT_INDEXED, the object is loaded from\n * serialized data, such as the contents of a genesis or system package\n * upgrade transaction. LIVE, the version returned is the most recent for\n * the object, and it is not deleted or wrapped at that version.\n * HISTORICAL, the object was referenced at a specific version or\n * checkpoint, so is fetched from historical tables and may not be the\n * latest version of the object. WRAPPED_OR_DELETED, the object is deleted\n * or wrapped and only partial information can be loaded.\"\n */\n status: ObjectKind;\n /**\n * The amount of IOTA we would rebate if this object gets deleted or\n * mutated. This number is recalculated based on the present storage\n * gas price.\n */\n storageRebate?: Maybe<Scalars['BigInt']['output']>;\n /** The overall quantity of tokens that will be issued. */\n supply?: Maybe<Scalars['BigInt']['output']>;\n /** The token's identifying abbreviation. */\n symbol?: Maybe<Scalars['String']['output']>;\n version: Scalars['UInt53']['output'];\n};\n\n\n/** The metadata for a coin type. */\nexport type CoinMetadataBalanceArgs = {\n type?: InputMaybe<Scalars['String']['input']>;\n};\n\n\n/** The metadata for a coin type. */\nexport type CoinMetadataBalancesArgs = {\n after?: InputMaybe<Scalars['String']['input']>;\n before?: InputMaybe<Scalars['String']['input']>;\n first?: InputMaybe<Scalars['Int']['input']>;\n last?: InputMaybe<Scalars['Int']['input']>;\n};\n\n\n/** The metadata for a coin type. */\nexport type CoinMetadataCoinsArgs = {\n after?: InputMaybe<Scalars['String']['input']>;\n before?: InputMaybe<Scalars['String']['input']>;\n first?: InputMaybe<Scalars['Int']['input']>;\n last?: InputMaybe<Scalars['Int']['input']>;\n type?: InputMaybe<Scalars['String']['input']>;\n};\n\n\n/** The metadata for a coin type. */\nexport type CoinMetadataDynamicFieldArgs = {\n name: DynamicFieldName;\n};\n\n\n/** The metadata for a coin type. */\nexport type CoinMetadataDynamicFieldsArgs = {\n after?: InputMaybe<Scalars['String']['input']>;\n before?: InputMaybe<Scalars['String']['input']>;\n first?: InputMaybe<Scalars['Int']['input']>;\n last?: InputMaybe<Scalars['Int']['input']>;\n};\n\n\n/** The metadata for a coin type. */\nexport type CoinMetadataDynamicObjectFieldArgs = {\n name: DynamicFieldName;\n};\n\n\n/** The metadata for a coin type. */\nexport type CoinMetadataObjectsArgs = {\n after?: InputMaybe<Scalars['String']['input']>;\n before?: InputMaybe<Scalars['String']['input']>;\n filter?: InputMaybe<ObjectFilter>;\n first?: InputMaybe<Scalars['Int']['input']>;\n last?: InputMaybe<Scalars['Int']['input']>;\n};\n\n\n/** The metadata for a coin type. */\nexport type CoinMetadataReceivedTransactionBlocksArgs = {\n after?: InputMaybe<Scalars['String']['input']>;\n before?: InputMaybe<Scalars['String']['input']>;\n filter?: InputMaybe<TransactionBlockFilter>;\n first?: InputMaybe<Scalars['Int']['input']>;\n last?: InputMaybe<Scalars['Int']['input']>;\n scanLimit?: InputMaybe<Scalars['Int']['input']>;\n};\n\n\n/** The metadata for a coin type. */\nexport type CoinMetadataStakedIotasArgs = {\n after?: InputMaybe<Scalars['String']['input']>;\n before?: InputMaybe<Scalars['String']['input']>;\n first?: InputMaybe<Scalars['Int']['input']>;\n last?: InputMaybe<Scalars['Int']['input']>;\n};\n\n/**\n * System transaction that runs at the beginning of a checkpoint, and is\n * responsible for setting the current value of the clock, based on the\n * timestamp from consensus.\n */\nexport type ConsensusCommitPrologueTransaction = {\n __typename?: 'ConsensusCommitPrologueTransaction';\n /** Unix timestamp from consensus. */\n commitTimestamp: Scalars['DateTime']['output'];\n /** Digest of consensus output, encoded as a Base58 string. */\n consensusCommitDigest: Scalars['String']['output'];\n /** Epoch of the commit prologue transaction. */\n epoch?: Maybe<Epoch>;\n /** Consensus round of the commit. */\n round: Scalars['UInt53']['output'];\n};\n\nexport type DependencyConnection = {\n __typename?: 'DependencyConnection';\n /** A list of edges. */\n edges: Array<DependencyEdge>;\n /** A list of nodes. */\n nodes: Array<TransactionBlock>;\n /** Information to aid in pagination. */\n pageInfo: PageInfo;\n};\n\n/** An edge in a connection. */\nexport type DependencyEdge = {\n __typename?: 'DependencyEdge';\n /** A cursor for use in pagination */\n cursor: Scalars['String']['output'];\n /** The item at the end of the edge */\n node?: Maybe<TransactionBlock>;\n};\n\n/**\n * The set of named templates defined on-chain for the type of this object,\n * to be handled off-chain. The server substitutes data from the object\n * into these templates to generate a display string per template.\n */\nexport type DisplayEntry = {\n __typename?: 'DisplayEntry';\n /** An error string describing why the template could not be rendered. */\n error?: Maybe<Scalars['String']['output']>;\n /** The identifier for a particular template string of the Display object. */\n key: Scalars['String']['output'];\n /** The template string for the key with placeholder values substituted. */\n value?: Maybe<Scalars['String']['output']>;\n};\n\nexport type DryRunEffect = {\n __typename?: 'DryRunEffect';\n /**\n * Changes made to arguments that were mutably borrowed by each command in\n * this transaction.\n */\n mutatedReferences?: Maybe<Array<DryRunMutation>>;\n /** Return results of each command in this transaction. */\n returnValues?: Maybe<Array<DryRunReturn>>;\n};\n\nexport type DryRunMutation = {\n __typename?: 'DryRunMutation';\n bcs: Scalars['Base64']['output'];\n input: TransactionArgument;\n type: MoveType;\n};\n\nexport type DryRunResult = {\n __typename?: 'DryRunResult';\n /** The error that occurred during dry run execution, if any. */\n error?: Maybe<Scalars['String']['output']>;\n /**\n * The intermediate results for each command of the dry run execution,\n * including contents of mutated references and return values.\n */\n results?: Maybe<Array<DryRunEffect>>;\n /** The transaction block representing the dry run execution. */\n transaction?: Maybe<TransactionBlock>;\n};\n\nexport type DryRunReturn = {\n __typename?: 'DryRunReturn';\n bcs: Scalars['Base64']['output'];\n type: MoveType;\n};\n\n/**\n * Dynamic fields are heterogeneous fields that can be added or removed at\n * runtime, and can have arbitrary user-assigned names. There are two sub-types\n * of dynamic fields:\n *\n * 1) Dynamic Fields can store any value that has the `store` ability, however\n * an object stored in this kind of field will be considered wrapped and\n * will not be accessible directly via its ID by external tools (explorers,\n * wallets, etc) accessing storage.\n * 2) Dynamic Object Fields values must be Iota objects (have the `key` and\n * `store` abilities, and id: UID as the first field), but will still be\n * directly accessible off-chain via their object ID after being attached.\n */\nexport type DynamicField = {\n __typename?: 'DynamicField';\n /**\n * The string type, data, and serialized value of the DynamicField's 'name'\n * field. This field is used to uniquely identify a child of the parent\n * object.\n */\n name?: Maybe<MoveValue>;\n /**\n * The returned dynamic field is an object if its return type is\n * `MoveObject`, in which case it is also accessible off-chain via its\n * address. Its contents will be from the latest version that is at\n * most equal to its parent object's version.\n */\n value?: Maybe<DynamicFieldValue>;\n};\n\nexport type DynamicFieldConnection = {\n __typename?: 'DynamicFieldConnection';\n /** A list of edges. */\n edges: Array<DynamicFieldEdge>;\n /** A list of nodes. */\n nodes: Array<DynamicField>;\n /** Information to aid in pagination. */\n pageInfo: PageInfo;\n};\n\n/** An edge in a connection. */\nexport type DynamicFieldEdge = {\n __typename?: 'DynamicFieldEdge';\n /** A cursor for use in pagination */\n cursor: Scalars['String']['output'];\n /** The item at the end of the edge */\n node: DynamicField;\n};\n\nexport type DynamicFieldName = {\n /** The Base64 encoded bcs serialization of the DynamicField's 'name' field. */\n bcs: Scalars['Base64']['input'];\n /**\n * The string type of the DynamicField's 'name' field.\n * A string representation of a Move primitive like 'u64', or a struct type\n * like '0x2::kiosk::Listing'\n */\n type: Scalars['String']['input'];\n};\n\nexport type DynamicFieldValue = MoveObject | MoveValue;\n\n/**\n * System transaction that supersedes `ChangeEpochTransaction` as the new way\n * to run transactions at the end of an epoch. Behaves similarly to\n * `ChangeEpochTransaction` but can accommodate other optional transactions to\n * run at the end of the epoch.\n */\nexport type EndOfEpochTransaction = {\n __typename?: 'EndOfEpochTransaction';\n /**\n * The list of system transactions that are allowed to run at the end of\n * the epoch.\n */\n transactions: EndOfEpochTransactionKindConnection;\n};\n\n\n/**\n * System transaction that supersedes `ChangeEpochTransaction` as the new way\n * to run transactions at the end of an epoch. Behaves similarly to\n * `ChangeEpochTransaction` but can accommodate other optional transactions to\n * run at the end of the epoch.\n */\nexport type EndOfEpochTransactionTransactionsArgs = {\n after?: InputMaybe<Scalars['String']['input']>;\n before?: InputMaybe<Scalars['String']['input']>;\n first?: InputMaybe<Scalars['Int']['input']>;\n last?: InputMaybe<Scalars['Int']['input']>;\n};\n\nexport type EndOfEpochTransactionKind = AuthenticatorStateCreateTransaction | AuthenticatorStateExpireTransaction | BridgeCommitteeInitTransaction | BridgeStateCreateTransaction | ChangeEpochTransaction;\n\nexport type EndOfEpochTransactionKindConnection = {\n __typename?: 'EndOfEpochTransactionKindConnection';\n /** A list of edges. */\n edges: Array<EndOfEpochTransactionKindEdge>;\n /** A list of nodes. */\n nodes: Array<EndOfEpochTransactionKind>;\n /** Information to aid in pagination. */\n pageInfo: PageInfo;\n};\n\n/** An edge in a connection. */\nexport type EndOfEpochTransactionKindEdge = {\n __typename?: 'EndOfEpochTransactionKindEdge';\n /** A cursor for use in pagination */\n cursor: Scalars['String']['output'];\n /** The item at the end of the edge */\n node: EndOfEpochTransactionKind;\n};\n\n/**\n * Operation of the Iota network is temporally partitioned into non-overlapping\n * epochs, and the network aims to keep epochs roughly the same duration as\n * each other. During a particular epoch the following data is fixed:\n *\n * - the protocol version\n * - the reference gas price\n * - the set of participating validators\n */\nexport type Epoch = {\n __typename?: 'Epoch';\n /** The epoch's corresponding checkpoints. */\n checkpoints: CheckpointConnection;\n /** The epoch's ending timestamp. */\n endTimestamp?: Maybe<Scalars['DateTime']['output']>;\n /**\n * The epoch's id as a sequence number that starts at 0 and is incremented\n * by one at every epoch change.\n */\n epochId: Scalars['UInt53']['output'];\n /** The storage fees paid for transactions executed during the epoch. */\n fundInflow?: Maybe<Scalars['BigInt']['output']>;\n /**\n * The storage fee rebates paid to users who deleted the data associated\n * with past transactions.\n */\n fundOutflow?: Maybe<Scalars['BigInt']['output']>;\n /**\n * The storage fund available in this epoch.\n * This fund is used to redistribute storage fees from past transactions\n * to future validators.\n */\n fundSize?: Maybe<Scalars['BigInt']['output']>;\n /** The total IOTA supply. */\n iotaTotalSupply?: Maybe<Scalars['Int']['output']>;\n /** The treasury-cap id. */\n iotaTreasuryCapId?: Maybe<Scalars['IotaAddress']['output']>;\n /**\n * A commitment by the committee at the end of epoch on the contents of the\n * live object set at that time. This can be used to verify state\n * snapshots.\n */\n liveObjectSetDigest?: Maybe<Scalars['String']['output']>;\n /**\n * The difference between the fund inflow and outflow, representing\n * the net amount of storage fees accumulated in this epoch.\n */\n netInflow?: Maybe<Scalars['BigInt']['output']>;\n /**\n * The epoch's corresponding protocol configuration, including the feature\n * flags and the configuration options.\n */\n protocolConfigs: ProtocolConfigs;\n /**\n * The minimum gas price that a quorum of validators are guaranteed to sign\n * a transaction for.\n */\n referenceGasPrice?: Maybe<Scalars['BigInt']['output']>;\n /**\n * Information about whether this epoch was started in safe mode, which\n * happens if the full epoch change logic fails for some reason.\n */\n safeMode?: Maybe<SafeMode>;\n /** The epoch's starting timestamp. */\n startTimestamp: Scalars['DateTime']['output'];\n /**\n * IOTA set aside to account for objects stored on-chain, at the start of\n * the epoch. This is also used for storage rebates.\n */\n storageFund?: Maybe<StorageFund>;\n /** Details of the system that are decided during genesis. */\n systemParameters?: Maybe<SystemParameters>;\n /**\n * The value of the `version` field of `0x5`, the\n * `0x3::iota::IotaSystemState` object. This version changes whenever\n * the fields contained in the system state object (held in a dynamic\n * field attached to `0x5`) change.\n */\n systemStateVersion?: Maybe<Scalars['UInt53']['output']>;\n /** The total number of checkpoints in this epoch. */\n totalCheckpoints?: Maybe<Scalars['UInt53']['output']>;\n /** The total amount of gas fees (in NANOS) that were paid in this epoch. */\n totalGasFees?: Maybe<Scalars['BigInt']['output']>;\n /** The total NANOS rewarded as stake. */\n totalStakeRewards?: Maybe<Scalars['BigInt']['output']>;\n /** The total number of transaction blocks in this epoch. */\n totalTransactions?: Maybe<Scalars['UInt53']['output']>;\n /**\n * The epoch's corresponding transaction blocks.\n *\n * `scanLimit` restricts the number of candidate transactions scanned when\n * gathering a page of results. It is required for queries that apply\n * more than two complex filters (on function, kind, sender, recipient,\n * input object, changed object, or ids), and can be at most\n * `serviceConfig.maxScanLimit`.\n *\n * When the scan limit is reached the page will be returned even if it has\n * fewer than `first` results when paginating forward (`last` when\n * paginating backwards). If there are more transactions to scan,\n * `pageInfo.hasNextPage` (or `pageInfo.hasPreviousPage`) will be set to\n * `true`, and `PageInfo.endCursor` (or `PageInfo.startCursor`) will be set\n * to the last transaction that was scanned as opposed to the last (or\n * first) transaction in the page.\n *\n * Requesting the next (or previous) page after this cursor will resume the\n * search, scanning the next `scanLimit` many transactions in the\n * direction of pagination, and so on until all transactions in the\n * scanning range have been visited.\n *\n * By default, the scanning range consists of all transactions in this\n * epoch.\n */\n transactionBlocks: TransactionBlockConnection;\n /** Validator related properties, including the active validators. */\n validatorSet?: Maybe<ValidatorSet>;\n};\n\n\n/**\n * Operation of the Iota network is temporally partitioned into non-overlapping\n * epochs, and the network aims to keep epochs roughly the same duration as\n * each other. During a particular epoch the following data is fixed:\n *\n * - the protocol version\n * - the reference gas price\n * - the set of participating validators\n */\nexport type EpochCheckpointsArgs = {\n after?: InputMaybe<Scalars['String']['input']>;\n before?: InputMaybe<Scalars['String']['input']>;\n first?: InputMaybe<Scalars['Int']['input']>;\n last?: InputMaybe<Scalars['Int']['input']>;\n};\n\n\n/**\n * Operation of the Iota network is temporally partitioned into non-overlapping\n * epochs, and the network aims to keep epochs roughly the same duration as\n * each other. During a particular epoch the following data is fixed:\n *\n * - the protocol version\n * - the reference gas price\n * - the set of participating validators\n */\nexport type EpochTransactionBlocksArgs = {\n after?: InputMaybe<Scalars['String']['input']>;\n before?: InputMaybe<Scalars['String']['input']>;\n filter?: InputMaybe<TransactionBlockFilter>;\n first?: InputMaybe<Scalars['Int']['input']>;\n last?: InputMaybe<Scalars['Int']['input']>;\n scanLimit?: InputMaybe<Scalars['Int']['input']>;\n};\n\nexport type Event = {\n __typename?: 'Event';\n /** The BCS representation of this value, Base64 encoded. */\n bcs: Scalars['Base64']['output'];\n /** Structured contents of a Move value. */\n data: Scalars['MoveData']['output'];\n /**\n * Representation of a Move value in JSON, where:\n *\n * - Addresses, IDs, and UIDs are represented in canonical form, as JSON\n * strings.\n * - Bools are represented by JSON boolean literals.\n * - u8, u16, and u32 are represented as JSON numbers.\n * - u64, u128, and u256 are represented as JSON strings.\n * - Vectors are represented by JSON arrays.\n * - Structs are represented by JSON objects.\n * - Empty optional values are represented by `null`.\n *\n * This form is offered as a less verbose convenience in cases where the\n * layout of the type is known by the client.\n */\n json: Scalars['JSON']['output'];\n /** Address of the sender of the event */\n sender?: Maybe<Address>;\n /**\n * The Move module containing some function that when called by\n * a programmable transaction block (PTB) emitted this event.\n * For example, if a PTB invokes A::m1::foo, which internally\n * calls A::m2::emit_event to emit an event,\n * the sending module would be A::m1.\n */\n sendingModule?: Maybe<MoveModule>;\n /** UTC timestamp in milliseconds since epoch (1/1/1970) */\n timestamp?: Maybe<Scalars['DateTime']['output']>;\n /** The value's Move type. */\n type: MoveType;\n};\n\nexport type EventConnection = {\n __typename?: 'EventConnection';\n /** A list of edges. */\n edges: Array<EventEdge>;\n /** A list of nodes. */\n nodes: Array<Event>;\n /** Information to aid in pagination. */\n pageInfo: PageInfo;\n};\n\n/** An edge in a connection. */\nexport type EventEdge = {\n __typename?: 'EventEdge';\n /** A cursor for use in pagination */\n cursor: Scalars['String']['output'];\n /** The item at the end of the edge */\n node: Event;\n};\n\nexport type EventFilter = {\n /**\n * Events emitted by a particular module. An event is emitted by a\n * particular module if some function in the module is called by a\n * PTB and emits an event.\n *\n * Modules can be filtered by their package, or package::module.\n * We currently do not support filtering by emitting module and event type\n * at the same time so if both are provided in one filter, the query will\n * error.\n */\n emittingModule?: InputMaybe<Scalars['String']['input']>;\n /**\n * This field is used to specify the type of event emitted.\n *\n * Events can be filtered by their type's package, package::module,\n * or their fully qualified type name.\n *\n * Generic types can be queried by either the generic type name, e.g.\n * `0x2::coin::Coin`, or by the full type name, such as\n * `0x2::coin::Coin<0x2::iota::IOTA>`.\n */\n eventType?: InputMaybe<Scalars['String']['input']>;\n sender?: InputMaybe<Scalars['IotaAddress']['input']>;\n transactionDigest?: InputMaybe<Scalars['String']['input']>;\n};\n\n/**\n * The result of an execution, including errors that occurred during said\n * execution.\n */\nexport type ExecutionResult = {\n __typename?: 'ExecutionResult';\n /**\n * The effects of the executed transaction. Since the transaction was just\n * executed and not indexed yet, fields including `balance_changes`,\n * `timestamp` and `checkpoint` are not available.\n */\n effects: TransactionBlockEffects;\n /** The errors field captures any errors that occurred during execution */\n errors?: Maybe<Array<Scalars['String']['output']>>;\n};\n\n/** The execution status of this transaction block: success or failure. */\nexport enum ExecutionStatus {\n /** The transaction block could not be executed */\n Failure = 'FAILURE',\n /** The transaction block was successfully executed */\n Success = 'SUCCESS'\n}\n\n/**\n * Groups of features served by the RPC service. The GraphQL Service can be\n * configured to enable or disable these features.\n */\nexport enum Feature {\n /**\n * Statistics about how the network was running (TPS, top packages, APY,\n * etc)\n */\n Analytics = 'ANALYTICS',\n /** Coin metadata, per-address coin and balance information. */\n Coins = 'COINS',\n /** Querying an object's dynamic fields. */\n DynamicFields = 'DYNAMIC_FIELDS',\n /** Transaction and Event subscriptions. */\n Subscriptions = 'SUBSCRIPTIONS',\n /**\n * Aspects that affect the running of the system that are managed by the\n * validators either directly, or through system transactions.\n */\n SystemState = 'SYSTEM_STATE'\n}\n\n/**\n * Access to the gas inputs, after they have been smashed into one coin. The\n * gas coin can only be used by reference, except for with\n * `TransferObjectsTransaction` that can accept it by value.\n */\nexport type GasCoin = {\n __typename?: 'GasCoin';\n /** A workaround to define an empty variant of a GraphQL union. */\n _?: Maybe<Scalars['Boolean']['output']>;\n};\n\n/** Breakdown of gas costs in effects. */\nexport type GasCostSummary = {\n __typename?: 'GasCostSummary';\n /** Gas paid for executing this transaction (in NANOS). */\n computationCost?: Maybe<Scalars['BigInt']['output']>;\n /** Gas burned for executing this transactions (in NANOS). */\n computationCostBurned?: Maybe<Scalars['BigInt']['output']>;\n /**\n * Part of storage cost that is not reclaimed when data created by this\n * transaction is cleaned up (in NANOS).\n */\n nonRefundableStorageFee?: Maybe<Scalars['BigInt']['output']>;\n /** Gas paid for the data stored on-chain by this transaction (in NANOS). */\n storageCost?: Maybe<Scalars['BigInt']['output']>;\n /**\n * Part of storage cost that can be reclaimed by cleaning up data created\n * by this transaction (when objects are deleted or an object is\n * modified, which is treated as a deletion followed by a creation) (in\n * NANOS).\n */\n storageRebate?: Maybe<Scalars['BigInt']['output']>;\n};\n\n/**\n * Effects related to gas (costs incurred and the identity of the smashed gas\n * object returned).\n */\nexport type GasEffects = {\n __typename?: 'GasEffects';\n gasObject?: Maybe<Object>;\n gasSummary?: Maybe<GasCostSummary>;\n};\n\n/**\n * Configuration for this transaction's gas price and the coins used to pay for\n * gas.\n */\nexport type GasInput = {\n __typename?: 'GasInput';\n /**\n * The maximum number of gas units that can be expended by executing this\n * transaction\n */\n gasBudget?: Maybe<Scalars['BigInt']['output']>;\n /** Objects used to pay for a transaction's execution and storage */\n gasPayment: ObjectConnection;\n /**\n * An unsigned integer specifying the number of native tokens per gas unit\n * this transaction will pay (in NANOS).\n */\n gasPrice?: Maybe<Scalars['BigInt']['output']>;\n /** Address of the owner of the gas object(s) used */\n gasSponsor?: Maybe<Address>;\n};\n\n\n/**\n * Configuration for this transaction's gas price and the coins used to pay for\n * gas.\n */\nexport type GasInputGasPaymentArgs = {\n after?: InputMaybe<Scalars['String']['input']>;\n before?: InputMaybe<Scalars['String']['input']>;\n first?: InputMaybe<Scalars['Int']['input']>;\n last?: InputMaybe<Scalars['Int']['input']>;\n};\n\n/**\n * System transaction that initializes the network and writes the initial set\n * of objects on-chain.\n */\nexport type GenesisTransaction = {\n __typename?: 'GenesisTransaction';\n /** Events emitted during genesis. */\n events: EventConnection;\n /** Objects to be created during genesis. */\n objects: ObjectConnection;\n};\n\n\n/**\n * System transaction that initializes the network and writes the initial set\n * of objects on-chain.\n */\nexport type GenesisTransactionEventsArgs = {\n after?: InputMaybe<Scalars['String']['input']>;\n before?: InputMaybe<Scalars['String']['input']>;\n first?: InputMaybe<Scalars['Int']['input']>;\n last?: InputMaybe<Scalars['Int']['input']>;\n};\n\n\n/**\n * System transaction that initializes the network and writes the initial set\n * of objects on-chain.\n */\nexport type GenesisTransactionObjectsArgs = {\n after?: InputMaybe<Scalars['String']['input']>;\n before?: InputMaybe<Scalars['String']['input']>;\n first?: InputMaybe<Scalars['Int']['input']>;\n last?: InputMaybe<Scalars['Int']['input']>;\n};\n\n/**\n * Interface implemented by all GraphQL types that represent a Move datatype\n * (either structs or enums). This interface is used to provide a way to access\n * fields that are shared by both structs and enums, e.g., the module that the\n * datatype belongs to, the name of the datatype, type parameters etc.\n */\nexport type IMoveDatatype = {\n /** The abilities of the datatype. */\n abilities?: Maybe<Array<MoveAbility>>;\n /** The module that the datatype belongs to. */\n module: MoveModule;\n /** The name of the datatype. */\n name: Scalars['String']['output'];\n /** The type parameters of the datatype. */\n typeParameters?: Maybe<Array<MoveStructTypeParameter>>;\n};\n\n/**\n * This interface is implemented by types that represent a Move object on-chain\n * (A Move value whose type has `key`).\n */\nexport type IMoveObject = {\n /** Displays the contents of the Move object in a JSON string and through GraphQL types. Also provides the flat representation of the type signature, and the BCS of the corresponding data. */\n contents?: Maybe<MoveValue>;\n /** The set of named templates defined on-chain for the type of this object, to be handled off-chain. The server substitutes data from the object into these templates to generate a display string per template. */\n display?: Maybe<Array<DisplayEntry>>;\n /**\n * Access a dynamic field on an object using its name. Names are arbitrary Move values whose type have `copy`, `drop`, and `store`, and are specified using their type, and their BCS contents, Base64 encoded.\n *\n * Dynamic fields on wrapped objects can be accessed by using the same API under the Ownertype.\n */\n dynamicField?: Maybe<DynamicField>;\n /**\n * The dynamic fields and dynamic object fields on an object.\n *\n * Dynamic fields on wrapped objects can be accessed by using the same API under the Owner type.\n */\n dynamicFields: DynamicFieldConnection;\n /**\n * Access a dynamic object field on an object using its name. Names are arbitrary Move values whose type have `copy`, `drop`, and `store`, and are specified using their type, and their BCS contents, Base64 encoded. The value of a dynamic object field can also be accessed off-chain directly via its address (e.g. using `Query.object`).\n *\n * Dynamic fields on wrapped objects can be accessed by using the same API under the Owner type.\n */\n dynamicObjectField?: Maybe<DynamicField>;\n};\n\n\n/**\n * This interface is implemented by types that represent a Move object on-chain\n * (A Move value whose type has `key`).\n */\nexport type IMoveObjectDynamicFieldArgs = {\n name: DynamicFieldName;\n};\n\n\n/**\n * This interface is implemented by types that represent a Move object on-chain\n * (A Move value whose type has `key`).\n */\nexport type IMoveObjectDynamicFieldsArgs = {\n after?: InputMaybe<Scalars['String']['input']>;\n before?: InputMaybe<Scalars['String']['input']>;\n first?: InputMaybe<Scalars['Int']['input']>;\n last?: InputMaybe<Scalars['Int']['input']>;\n};\n\n\n/**\n * This interface is implemented by types that represent a Move object on-chain\n * (A Move value whose type has `key`).\n */\nexport type IMoveObjectDynamicObjectFieldArgs = {\n name: DynamicFieldName;\n};\n\n/**\n * Interface implemented by on-chain values that are addressable by an ID (also\n * referred to as its address). This includes Move objects and packages.\n */\nexport type IObject = {\n /** The Base64-encoded BCS serialization of the object's content. */\n bcs?: Maybe<Scalars['Base64']['output']>;\n /** 32-byte hash that identifies the object's current contents, encoded as a Base58 string. */\n digest?: Maybe<Scalars['String']['output']>;\n /**\n * The owner type of this object: Immutable, Shared, Parent, Address\n * Immutable and Shared Objects do not have owners.\n */\n owner?: Maybe<ObjectOwner>;\n /** The transaction block that created this version of the object. */\n previousTransactionBlock?: Maybe<TransactionBlock>;\n /** The transaction blocks that sent objects to this object. */\n receivedTransactionBlocks: TransactionBlockConnection;\n /** The current status of the object as read from the off-chain store. The possible states are: NOT_INDEXED, the object is loaded from serialized data, such as the contents of a genesis or system package upgrade transaction. LIVE, the version returned is the most recent for the object, and it is not deleted or wrapped at that version. HISTORICAL, the object was referenced at a specific version or checkpoint, so is fetched from historical tables and may not be the latest version of the object. WRAPPED_OR_DELETED, the object is deleted or wrapped and only partial information can be loaded. */\n status: ObjectKind;\n storageRebate?: Maybe<Scalars['BigInt']['output']>;\n version: Scalars['UInt53']['output'];\n};\n\n\n/**\n * Interface implemented by on-chain values that are addressable by an ID (also\n * referred to as its address). This includes Move objects and packages.\n */\nexport type IObjectReceivedTransactionBlocksArgs = {\n after?: InputMaybe<Scalars['String']['input']>;\n before?: InputMaybe<Scalars['String']['input']>;\n filter?: InputMaybe<TransactionBlockFilter>;\n first?: InputMaybe<Scalars['Int']['input']>;\n last?: InputMaybe<Scalars['Int']['input']>;\n scanLimit?: InputMaybe<Scalars['Int']['input']>;\n};\n\n/**\n * Interface implemented by GraphQL types representing entities that can own\n * objects. Object owners are identified by an address which can represent\n * either the public key of an account or another object. The same address can\n * only refer to an account or an object, never both, but it is not possible to\n * know which up-front.\n */\nexport type IOwner = {\n address: Scalars['IotaAddress']['output'];\n /** Total balance of all coins with marker type owned by this object or address. If type is not supplied, it defaults to `0x2::iota::IOTA`. */\n balance?: Maybe<Balance>;\n /** The balances of all coin types owned by this object or address. */\n balances: BalanceConnection;\n /**\n * The coin objects for this object or address.\n *\n * `type` is a filter on the coin's type parameter, defaulting to `0x2::iota::IOTA`.\n */\n coins: CoinConnection;\n /** Objects owned by this object or address, optionally `filter`-ed. */\n objects: MoveObjectConnection;\n /** The `0x3::staking_pool::StakedIota` objects owned by this object or address. */\n stakedIotas: StakedIotaConnection;\n};\n\n\n/**\n * Interface implemented by GraphQL types representing entities that can own\n * objects. Object owners are identified by an address which can represent\n * either the public key of an account or another object. The same address can\n * only refer to an account or an object, never both, but it is not possible to\n * know which up-front.\n */\nexport type IOwnerBalanceArgs = {\n type?: InputMaybe<Scalars['String']['input']>;\n};\n\n\n/**\n * Interface implemented by GraphQL types representing entities that can own\n * objects. Object owners are identified by an address which can represent\n * either the public key of an account or another object. The same address can\n * only refer to an account or an object, never both, but it is not possible to\n * know which up-front.\n */\nexport type IOwnerBalancesArgs = {\n after?: InputMaybe<Scalars['String']['input']>;\n before?: InputMaybe<Scalars['String']['input']>;\n first?: InputMaybe<Scalars['Int']['input']>;\n last?: InputMaybe<Scalars['Int']['input']>;\n};\n\n\n/**\n * Interface implemented by GraphQL types representing entities that can own\n * objects. Object owners are identified by an address which can represent\n * either the public key of an account or another object. The same address can\n * only refer to an account or an object, never both, but it is not possible to\n * know which up-front.\n */\nexport type IOwnerCoinsArgs = {\n after?: InputMaybe<Scalars['String']['input']>;\n before?: InputMaybe<Scalars['String']['input']>;\n first?: InputMaybe<Scalars['Int']['input']>;\n last?: InputMaybe<Scalars['Int']['input']>;\n type?: InputMaybe<Scalars['String']['input']>;\n};\n\n\n/**\n * Interface implemented by GraphQL types representing entities that can own\n * objects. Object owners are identified by an address which can represent\n * either the public key of an account or another object. The same address can\n * only refer to an account or an object, never both, but it is not possible to\n * know which up-front.\n */\nexport type IOwnerObjectsArgs = {\n after?: InputMaybe<Scalars['String']['input']>;\n before?: InputMaybe<Scalars['String']['input']>;\n filter?: InputMaybe<ObjectFilter>;\n first?: InputMaybe<Scalars['Int']['input']>;\n last?: InputMaybe<Scalars['Int']['input']>;\n};\n\n\n/**\n * Interface implemented by GraphQL types representing entities that can own\n * objects. Object owners are identified by an address which can represent\n * either the public key of an account or another object. The same address can\n * only refer to an account or an object, never both, but it is not possible to\n * know which up-front.\n */\nexport type IOwnerStakedIotasArgs = {\n after?: InputMaybe<Scalars['String']['input']>;\n before?: InputMaybe<Scalars['String']['input']>;\n first?: InputMaybe<Scalars['Int']['input']>;\n last?: InputMaybe<Scalars['Int']['input']>;\n};\n\n/**\n * An immutable object is an object that can't be mutated, transferred, or\n * deleted. Immutable objects have no owner, so anyone can use them.\n */\nexport type Immutable = {\n __typename?: 'Immutable';\n _?: Maybe<Scalars['Boolean']['output']>;\n};\n\n/**\n * One of the input objects or primitive values to the programmable transaction\n * block.\n */\nexport type Input = {\n __typename?: 'Input';\n /** Index of the programmable transaction block input (0-indexed). */\n ix: Scalars['Int']['output'];\n};\n\n/**\n * Information used by a package to link to a specific version of its\n * dependency.\n */\nexport type Linkage = {\n __typename?: 'Linkage';\n /** The ID on-chain of the first version of the dependency. */\n originalId: Scalars['IotaAddress']['output'];\n /**\n * The ID on-chain of the version of the dependency that this package\n * depends on.\n */\n upgradedId: Scalars['IotaAddress']['output'];\n /** The version of the dependency that this package depends on. */\n version: Scalars['UInt53']['output'];\n};\n\n/** Create a vector (possibly empty). */\nexport type MakeMoveVecTransaction = {\n __typename?: 'MakeMoveVecTransaction';\n /** The values to pack into the vector, all of the same type. */\n elements: Array<TransactionArgument>;\n /**\n * If the elements are not objects, or the vector is empty, a type must be\n * supplied.\n */\n type?: Maybe<MoveType>;\n};\n\n/** Merges `coins` into the first `coin` (produces no results). */\nexport type MergeCoinsTransaction = {\n __typename?: 'MergeCoinsTransaction';\n /** The coin to merge into. */\n coin: TransactionArgument;\n /** The coins to be merged. */\n coins: Array<TransactionArgument>;\n};\n\n/**\n * Abilities are keywords in Iota Move that define how types behave at the\n * compiler level.\n */\nexport enum MoveAbility {\n /** Enables values to be copied. */\n Copy = 'COPY',\n /** Enables values to be popped/dropped. */\n Drop = 'DROP',\n /** Enables values to be held directly in global storage. */\n Key = 'KEY',\n /** Enables values to be held inside a struct in global storage. */\n Store = 'STORE'\n}\n\n/** A call to either an entry or a public Move function. */\nexport type MoveCallTransaction = {\n __typename?: 'MoveCallTransaction';\n /** The actual function parameters passed in for this move call. */\n arguments: Array<TransactionArgument>;\n /** The function being called, resolved. */\n function?: Maybe<MoveFunction>;\n /** The name of the function being called. */\n functionName: Scalars['String']['output'];\n /** The name of the module the function being called is defined in. */\n module: Scalars['String']['output'];\n /** The storage ID of the package the function being called is defined in. */\n package: Scalars['IotaAddress']['output'];\n /** The actual type parameters passed in for this move call. */\n typeArguments: Array<MoveType>;\n};\n\n/**\n * The generic representation of a Move datatype (either a struct or an enum)\n * which exposes common fields and information (module, name, abilities, type\n * parameters etc.) that is shared across them.\n */\nexport type MoveDatatype = IMoveDatatype & {\n __typename?: 'MoveDatatype';\n abilities?: Maybe<Array<MoveAbility>>;\n asMoveEnum?: Maybe<MoveEnum>;\n asMoveStruct?: Maybe<MoveStruct>;\n module: MoveModule;\n name: Scalars['String']['output'];\n typeParameters?: Maybe<Array<MoveStructTypeParameter>>;\n};\n\nexport type MoveDatatypeConnection = {\n __typename?: 'MoveDatatypeConnection';\n /** A list of edges. */\n edges: Array<MoveDatatypeEdge>;\n /** A list of nodes. */\n nodes: Array<MoveDatatype>;\n /** Information to aid in pagination. */\n pageInfo: PageInfo;\n};\n\n/** An edge in a connection. */\nexport type MoveDatatypeEdge = {\n __typename?: 'MoveDatatypeEdge';\n /** A cursor for use in pagination */\n cursor: Scalars['String']['output'];\n /** The item at the end of the edge */\n node: MoveDatatype;\n};\n\n/** Description of an enum type, defined in a Move module. */\nexport type MoveEnum = IMoveDatatype & {\n __typename?: 'MoveEnum';\n /** The enum's abilities. */\n abilities?: Maybe<Array<MoveAbility>>;\n /** The module this enum was originally defined in. */\n module: MoveModule;\n /** The enum's (unqualified) type name. */\n name: Scalars['String']['output'];\n /**\n * Constraints on the enum's formal type parameters. Move bytecode does\n * not name type parameters, so when they are referenced (e.g. in field\n * types) they are identified by their index in this list.\n */\n typeParameters?: Maybe<Array<MoveStructTypeParameter>>;\n /**\n * The names and types of the enum's fields. Field types reference type\n * parameters, by their index in the defining enum's `typeParameters`\n * list.\n */\n variants?: Maybe<Array<MoveEnumVariant>>;\n};\n\nexport type MoveEnumConnection = {\n __typename?: 'MoveEnumConnection';\n /** A list of edges. */\n edges: Array<MoveEnumEdge>;\n /** A list of nodes. */\n nodes: Array<MoveEnum>;\n /** Information to aid in pagination. */\n pageInfo: PageInfo;\n};\n\n/** An edge in a connection. */\nexport type MoveEnumEdge = {\n __typename?: 'MoveEnumEdge';\n /** A cursor for use in pagination */\n cursor: Scalars['String']['output'];\n /** The item at the end of the edge */\n node: MoveEnum;\n};\n\nexport type MoveEnumVariant = {\n __typename?: 'MoveEnumVariant';\n /**\n * The names and types of the variant's fields. Field types reference type\n * parameters, by their index in the defining enum's `typeParameters`\n * list.\n */\n fields?: Maybe<Array<MoveField>>;\n /** The name of the variant */\n name: Scalars['String']['output'];\n};\n\n/** Information for a particular field on a Move struct. */\nexport type MoveField = {\n __typename?: 'MoveField';\n name: Scalars['String']['output'];\n type?: Maybe<OpenMoveType>;\n};\n\n/** Signature of a function, defined in a Move module. */\nexport type MoveFunction = {\n __typename?: 'MoveFunction';\n /** Whether the function has the `entry` modifier or not. */\n isEntry?: Maybe<Scalars['Boolean']['output']>;\n /** The module this function was defined in. */\n module: MoveModule;\n /** The function's (unqualified) name. */\n name: Scalars['String']['output'];\n /**\n * The function's parameter types. These types can reference type\n * parameters introduce by this function (see `typeParameters`).\n */\n parameters?: Maybe<Array<OpenMoveType>>;\n /**\n * The function's return types. There can be multiple because functions in\n * Move can return multiple values. These types can reference type\n * parameters introduced by this function (see `typeParameters`).\n */\n return?: Maybe<Array<OpenMoveType>>;\n /**\n * Constraints on the function's formal type parameters. Move bytecode\n * does not name type parameters, so when they are referenced (e.g. in\n * parameter and return types) they are identified by their index in\n * this list.\n */\n typeParameters?: Maybe<Array<MoveFunctionTypeParameter>>;\n /** The function's visibility: `public`, `public(friend)`, or `private`. */\n visibility?: Maybe<MoveVisibility>;\n};\n\nexport type MoveFunctionConnection = {\n __typename?: 'MoveFunctionConnection';\n /** A list of edges. */\n edges: Array<MoveFunctionEdge>;\n /** A list of nodes. */\n nodes: Array<MoveFunction>;\n /** Information to aid in pagination. */\n pageInfo: PageInfo;\n};\n\n/** An edge in a connection. */\nexport type MoveFunctionEdge = {\n __typename?: 'MoveFunctionEdge';\n /** A cursor for use in pagination */\n cursor: Scalars['String']['output'];\n /** The item at the end of the edge */\n node: MoveFunction;\n};\n\nexport type MoveFunctionTypeParameter = {\n __typename?: 'MoveFunctionTypeParameter';\n constraints: Array<MoveAbility>;\n};\n\n/**\n * Represents a module in Move, a library that defines struct types\n * and functions that operate on these types.\n */\nexport type MoveModule = {\n __typename?: 'MoveModule';\n /** The Base64 encoded bcs serialization of the module. */\n bytes?: Maybe<Scalars['Base64']['output']>;\n /**\n * Look-up the definition of a datatype (struct or enum) defined in this\n * module, by its name.\n */\n datatype?: Maybe<MoveDatatype>;\n /**\n * Iterate through the datatypes (enmums and structs) defined in this\n * module.\n */\n datatypes?: Maybe<MoveDatatypeConnection>;\n /** Textual representation of the module's bytecode. */\n disassembly?: Maybe<Scalars['String']['output']>;\n /** Look-up the definition of a enum defined in this module, by its name. */\n enum?: Maybe<MoveEnum>;\n /** Iterate through the enums defined in this module. */\n enums?: Maybe<MoveEnumConnection>;\n /** Format version of this module's bytecode. */\n fileFormatVersion: Scalars['Int']['output'];\n /**\n * Modules that this module considers friends (these modules can access\n * `public(friend)` functions from this module).\n */\n friends: MoveModuleConnection;\n /** Look-up the signature of a function defined in this module, by its name. */\n function?: Maybe<MoveFunction>;\n /** Iterate through the signatures of functions defined in this module. */\n functions?: Maybe<MoveFunctionConnection>;\n /** The module's (unqualified) name. */\n name: Scalars['String']['output'];\n /** The package that this Move module was defined in */\n package: MovePackage;\n /** Look-up the definition of a struct defined in this module, by its name. */\n struct?: Maybe<MoveStruct>;\n /** Iterate through the structs defined in this module. */\n structs?: Maybe<MoveStructConnection>;\n};\n\n\n/**\n * Represents a module in Move, a library that defines struct types\n * and functions that operate on these types.\n */\nexport type MoveModuleDatatypeArgs = {\n name: Scalars['String']['input'];\n};\n\n\n/**\n * Represents a module in Move, a library that defines struct types\n * and functions that operate on these types.\n */\nexport type MoveModuleDatatypesArgs = {\n after?: InputMaybe<Scalars['String']['input']>;\n before?: InputMaybe<Scalars['String']['input']>;\n first?: InputMaybe<Scalars['Int']['input']>;\n last?: InputMaybe<Scalars['Int']['input']>;\n};\n\n\n/**\n * Represents a module in Move, a library that defines struct types\n * and functions that operate on these types.\n */\nexport type MoveModuleEnumArgs = {\n name: Scalars['String']['input'];\n};\n\n\n/**\n * Represents a module in Move, a library that defines struct types\n * and functions that operate on these types.\n */\nexport type MoveModuleEnumsArgs = {\n after?: InputMaybe<Scalars['String']['input']>;\n before?: InputMaybe<Scalars['String']['input']>;\n first?: InputMaybe<Scalars['Int']['input']>;\n last?: InputMaybe<Scalars['Int']['input']>;\n};\n\n\n/**\n * Represents a module in Move, a library that defines struct types\n * and functions that operate on these types.\n */\nexport type MoveModuleFriendsArgs = {\n after?: InputMaybe<Scalars['String']['input']>;\n before?: InputMaybe<Scalars['String']['input']>;\n first?: InputMaybe<Scalars['Int']['input']>;\n last?: InputMaybe<Scalars['Int']['input']>;\n};\n\n\n/**\n * Represents a module in Move, a library that defines struct types\n * and functions that operate on these types.\n */\nexport type MoveModuleFunctionArgs = {\n name: Scalars['String']['input'];\n};\n\n\n/**\n * Represents a module in Move, a library that defines struct types\n * and functions that operate on these types.\n */\nexport type MoveModuleFunctionsArgs = {\n after?: InputMaybe<Scalars['String']['input']>;\n before?: InputMaybe<Scalars['String']['input']>;\n first?: InputMaybe<Scalars['Int']['input']>;\n last?: InputMaybe<Scalars['Int']['input']>;\n};\n\n\n/**\n * Represents a module in Move, a library that defines struct types\n * and functions that operate on these types.\n */\nexport type MoveModuleStructArgs = {\n name: Scalars['String']['input'];\n};\n\n\n/**\n * Represents a module in Move, a library that defines struct types\n * and functions that operate on these types.\n */\nexport type MoveModuleStructsArgs = {\n after?: InputMaybe<Scalars['String']['input']>;\n before?: InputMaybe<Scalars['String']['input']>;\n first?: InputMaybe<Scalars['Int']['input']>;\n last?: InputMaybe<Scalars['Int']['input']>;\n};\n\nexport type MoveModuleConnection = {\n __typename?: 'MoveModuleConnection';\n /** A list of edges. */\n edges: Array<MoveModuleEdge>;\n /** A list of nodes. */\n nodes: Array<MoveModule>;\n /** Information to aid in pagination. */\n pageInfo: PageInfo;\n};\n\n/** An edge in a connection. */\nexport type MoveModuleEdge = {\n __typename?: 'MoveModuleEdge';\n /** A cursor for use in pagination */\n cursor: Scalars['String']['output'];\n /** The item at the end of the edge */\n node: MoveModule;\n};\n\n/**\n * The representation of an object as a Move Object, which exposes additional\n * information (content, module that governs it, version, is transferrable,\n * etc.) about this object.\n */\nexport type MoveObject = IMoveObject & IObject & IOwner & {\n __typename?: 'MoveObject';\n address: Scalars['IotaAddress']['output'];\n /** Attempts to convert the Move object into a `0x2::coin::Coin`. */\n asCoin?: Maybe<Coin>;\n /** Attempts to convert the Move object into a `0x2::coin::CoinMetadata`. */\n asCoinMetadata?: Maybe<CoinMetadata>;\n /**\n * Attempts to convert the Move object into a\n * `0x3::staking_pool::StakedIota`.\n */\n asStakedIota?: Maybe<StakedIota>;\n /**\n * Total balance of all coins with marker type owned by this object. If\n * type is not supplied, it defaults to `0x2::iota::IOTA`.\n */\n balance?: Maybe<Balance>;\n /** The balances of all coin types owned by this object. */\n balances: BalanceConnection;\n /** The Base64-encoded BCS serialization of the object's content. */\n bcs?: Maybe<Scalars['Base64']['output']>;\n /**\n * The coin objects for this object.\n *\n * `type` is a filter on the coin's type parameter, defaulting to\n * `0x2::iota::IOTA`.\n */\n coins: CoinConnection;\n /**\n * Displays the contents of the Move object in a JSON string and through\n * GraphQL types. Also provides the flat representation of the type\n * signature, and the BCS of the corresponding data.\n */\n contents?: Maybe<MoveValue>;\n /**\n * 32-byte hash that identifies the object's contents, encoded as a Base58\n * string.\n */\n digest?: Maybe<Scalars['String']['output']>;\n /**\n * The set of named templates defined on-chain for the type of this object,\n * to be handled off-chain. The server substitutes data from the object\n * into these templates to generate a display string per template.\n */\n display?: Maybe<Array<DisplayEntry>>;\n /**\n * Access a dynamic field on an object using its name. Names are arbitrary\n * Move values whose type have `copy`, `drop`, and `store`, and are\n * specified using their type, and their BCS contents, Base64 encoded.\n *\n * Dynamic fields on wrapped objects can be accessed by using the same API\n * under the Owner type.\n */\n dynamicField?: Maybe<DynamicField>;\n /**\n * The dynamic fields and dynamic object fields on an object.\n *\n * Dynamic fields on wrapped objects can be accessed by using the same API\n * under the Owner type.\n */\n dynamicFields: DynamicFieldConnection;\n /**\n * Access a dynamic object field on an object using its name. Names are\n * arbitrary Move values whose type have `copy`, `drop`, and `store`,\n * and are specified using their type, and their BCS contents, Base64\n * encoded. The value of a dynamic object field can also be accessed\n * off-chain directly via its address (e.g. using `Query.object`).\n *\n * Dynamic fields on wrapped objects can be accessed by using the same API\n * under the Owner type.\n */\n dynamicObjectField?: Maybe<DynamicField>;\n /** Objects owned by this object, optionally `filter`-ed. */\n objects: MoveObjectConnection;\n /** The owner type of this object: Immutable, Shared, Parent, Address */\n owner?: Maybe<ObjectOwner>;\n /** The transaction block that created this version of the object. */\n previousTransactionBlock?: Maybe<TransactionBlock>;\n /**\n * The transaction blocks that sent objects to this object.\n *\n * `scanLimit` restricts the number of candidate transactions scanned when\n * gathering a page of results. It is required for queries that apply\n * more than two complex filters (on function, kind, sender, recipient,\n * input object, changed object, or ids), and can be at most\n * `serviceConfig.maxScanLimit`.\n *\n * When the scan limit is reached the page will be returned even if it has\n * fewer than `first` results when paginating forward (`last` when\n * paginating backwards). If there are more transactions to scan,\n * `pageInfo.hasNextPage` (or `pageInfo.hasPreviousPage`) will be set to\n * `true`, and `PageInfo.endCursor` (or `PageInfo.startCursor`) will be set\n * to the last transaction that was scanned as opposed to the last (or\n * first) transaction in the page.\n *\n * Requesting the next (or previous) page after this cursor will resume the\n * search, scanning the next `scanLimit` many transactions in the\n * direction of pagination, and so on until all transactions in the\n * scanning range have been visited.\n *\n * By default, the scanning range includes all transactions known to\n * GraphQL, but it can be restricted by the `after` and `before`\n * cursors, and the `beforeCheckpoint`, `afterCheckpoint` and\n * `atCheckpoint` filters.\n */\n receivedTransactionBlocks: TransactionBlockConnection;\n /** The `0x3::staking_pool::StakedIota` objects owned by this object. */\n stakedIotas: StakedIotaConnection;\n /**\n * The current status of the object as read from the off-chain store. The\n * possible states are: NOT_INDEXED, the object is loaded from\n * serialized data, such as the contents of a genesis or system package\n * upgrade transaction. LIVE, the version returned is the most recent for\n * the object, and it is not deleted or wrapped at that version.\n * HISTORICAL, the object was referenced at a specific version or\n * checkpoint, so is fetched from historical tables and may not be the\n * latest version of the object. WRAPPED_OR_DELETED, the object is deleted\n * or wrapped and only partial information can be loaded.\"\n */\n status: ObjectKind;\n /**\n * The amount of IOTA we would rebate if this object gets deleted or\n * mutated. This number is recalculated based on the present storage\n * gas price.\n */\n storageRebate?: Maybe<Scalars['BigInt']['output']>;\n version: Scalars['UInt53']['output'];\n};\n\n\n/**\n * The representation of an object as a Move Object, which exposes additional\n * information (content, module that governs it, version, is transferrable,\n * etc.) about this object.\n */\nexport type MoveObjectBalanceArgs = {\n type?: InputMaybe<Scalars['String']['input']>;\n};\n\n\n/**\n * The representation of an object as a Move Object, which exposes additional\n * information (content, module that governs it, version, is transferrable,\n * etc.) about this object.\n */\nexport type MoveObjectBalancesArgs = {\n after?: InputMaybe<Scalars['String']['input']>;\n before?: InputMaybe<Scalars['String']['input']>;\n first?: InputMaybe<Scalars['Int']['input']>;\n last?: InputMaybe<Scalars['Int']['input']>;\n};\n\n\n/**\n * The representation of an object as a Move Object, which exposes additional\n * information (content, module that governs it, version, is transferrable,\n * etc.) about this object.\n */\nexport type MoveObjectCoinsArgs = {\n after?: InputMaybe<Scalars['String']['input']>;\n before?: InputMaybe<Scalars['String']['input']>;\n first?: InputMaybe<Scalars['Int']['input']>;\n last?: InputMaybe<Scalars['Int']['input']>;\n type?: InputMaybe<Scalars['String']['input']>;\n};\n\n\n/**\n * The representation of an object as a Move Object, which exposes additional\n * information (content, module that governs it, version, is transferrable,\n * etc.) about this object.\n */\nexport type MoveObjectDynamicFieldArgs = {\n name: DynamicFieldName;\n};\n\n\n/**\n * The representation of an object as a Move Object, which exposes additional\n * information (content, module that governs it, version, is transferrable,\n * etc.) about this object.\n */\nexport type MoveObjectDynamicFieldsArgs = {\n after?: InputMaybe<Scalars['String']['input']>;\n before?: InputMaybe<Scalars['String']['input']>;\n first?: InputMaybe<Scalars['Int']['input']>;\n last?: InputMaybe<Scalars['Int']['input']>;\n};\n\n\n/**\n * The representation of an object as a Move Object, which exposes additional\n * information (content, module that governs it, version, is transferrable,\n * etc.) about this object.\n */\nexport type MoveObjectDynamicObjectFieldArgs = {\n name: DynamicFieldName;\n};\n\n\n/**\n * The representation of an object as a Move Object, which exposes additional\n * information (content, module that governs it, version, is transferrable,\n * etc.) about this object.\n */\nexport type MoveObjectObjectsArgs = {\n after?: InputMaybe<Scalars['String']['input']>;\n before?: InputMaybe<Scalars['String']['input']>;\n filter?: InputMaybe<ObjectFilter>;\n first?: InputMaybe<Scalars['Int']['input']>;\n last?: InputMaybe<Scalars['Int']['input']>;\n};\n\n\n/**\n * The representation of an object as a Move Object, which exposes additional\n * information (content, module that governs it, version, is transferrable,\n * etc.) about this object.\n */\nexport type MoveObjectReceivedTransactionBlocksArgs = {\n after?: InputMaybe<Scalars['String']['input']>;\n before?: InputMaybe<Scalars['String']['input']>;\n filter?: InputMaybe<TransactionBlockFilter>;\n first?: InputMaybe<Scalars['Int']['input']>;\n last?: InputMaybe<Scalars['Int']['input']>;\n scanLimit?: InputMaybe<Scalars['Int']['input']>;\n};\n\n\n/**\n * The representation of an object as a Move Object, which exposes additional\n * information (content, module that governs it, version, is transferrable,\n * etc.) about this object.\n */\nexport type MoveObjectStakedIotasArgs = {\n after?: InputMaybe<Scalars['String']['input']>;\n before?: InputMaybe<Scalars['String']['input']>;\n first?: InputMaybe<Scalars['Int']['input']>;\n last?: InputMaybe<Scalars['Int']['input']>;\n};\n\nexport type MoveObjectConnection = {\n __typename?: 'MoveObjectConnection';\n /** A list of edges. */\n edges: Array<MoveObjectEdge>;\n /** A list of nodes. */\n nodes: Array<MoveObject>;\n /** Information to aid in pagination. */\n pageInfo: PageInfo;\n};\n\n/** An edge in a connection. */\nexport type MoveObjectEdge = {\n __typename?: 'MoveObjectEdge';\n /** A cursor for use in pagination */\n cursor: Scalars['String']['output'];\n /** The item at the end of the edge */\n node: MoveObject;\n};\n\n/**\n * A MovePackage is a kind of Move object that represents code that has been\n * published on chain. It exposes information about its modules, type\n * definitions, functions, and dependencies.\n */\nexport type MovePackage = IObject & IOwner & {\n __typename?: 'MovePackage';\n address: Scalars['IotaAddress']['output'];\n /**\n * Total balance of all coins with marker type owned by this package. If\n * type is not supplied, it defaults to `0x2::iota::IOTA`.\n *\n * Note that coins owned by a package are inaccessible, because packages\n * are immutable and cannot be owned by an address.\n */\n balance?: Maybe<Balance>;\n /**\n * The balances of all coin types owned by this package.\n *\n * Note that coins owned by a package are inaccessible, because packages\n * are immutable and cannot be owned by an address.\n */\n balances: BalanceConnection;\n /** The Base64-encoded BCS serialization of the package's content. */\n bcs?: Maybe<Scalars['Base64']['output']>;\n /**\n * The coin objects owned by this package.\n *\n * `type` is a filter on the coin's type parameter, defaulting to\n * `0x2::iota::IOTA`.\n *\n * Note that coins owned by a package are inaccessible, because packages\n * are immutable and cannot be owned by an address.\n */\n coins: CoinConnection;\n /**\n * 32-byte hash that identifies the package's contents, encoded as a Base58\n * string.\n */\n digest?: Maybe<Scalars['String']['output']>;\n /**\n * Fetch the latest version of this package (the package with the highest\n * `version` that shares this packages's original ID)\n */\n latestPackage: MovePackage;\n /** The transitive dependencies of this package. */\n linkage?: Maybe<Array<Linkage>>;\n /**\n * A representation of the module called `name` in this package, including\n * the structs and functions it defines.\n */\n module?: Maybe<MoveModule>;\n /**\n * BCS representation of the package's modules. Modules appear as a\n * sequence of pairs (module name, followed by module bytes), in\n * alphabetic order by module name.\n */\n moduleBcs?: Maybe<Scalars['Base64']['output']>;\n /** Paginate through the MoveModules defined in this package. */\n modules?: Maybe<MoveModuleConnection>;\n /**\n * Objects owned by this package, optionally `filter`-ed.\n *\n * Note that objects owned by a package are inaccessible, because packages\n * are immutable and cannot be owned by an address.\n */\n objects: MoveObjectConnection;\n /**\n * The owner type of this object: Immutable, Shared, Parent, Address\n * Packages are always Immutable.\n */\n owner?: Maybe<ObjectOwner>;\n /**\n * Fetch another version of this package (the package that shares this\n * package's original ID, but has the specified `version`).\n */\n packageAtVersion?: Maybe<MovePackage>;\n /**\n * Fetch all versions of this package (packages that share this package's\n * original ID), optionally bounding the versions exclusively from\n * below with `afterVersion`, or from above with `beforeVersion`.\n */\n packageVersions: MovePackageConnection;\n /** The transaction block that published or upgraded this package. */\n previousTransactionBlock?: Maybe<TransactionBlock>;\n /**\n * The transaction blocks that sent objects to this package.\n *\n * Note that objects that have been sent to a package become inaccessible.\n *\n * `scanLimit` restricts the number of candidate transactions scanned when\n * gathering a page of results. It is required for queries that apply\n * more than two complex filters (on function, kind, sender, recipient,\n * input object, changed object, or ids), and can be at most\n * `serviceConfig.maxScanLimit`.\n *\n * When the scan limit is reached the page will be returned even if it has\n * fewer than `first` results when paginating forward (`last` when\n * paginating backwards). If there are more transactions to scan,\n * `pageInfo.hasNextPage` (or `pageInfo.hasPreviousPage`) will be set to\n * `true`, and `PageInfo.endCursor` (or `PageInfo.startCursor`) will be set\n * to the last transaction that was scanned as opposed to the last (or\n * first) transaction in the page.\n *\n * Requesting the next (or previous) page after this cursor will resume the\n * search, scanning the next `scanLimit` many transactions in the\n * direction of pagination, and so on until all transactions in the\n * scanning range have been visited.\n *\n * By default, the scanning range includes all transactions known to\n * GraphQL, but it can be restricted by the `after` and `before`\n * cursors, and the `beforeCheckpoint`, `afterCheckpoint` and\n * `atCheckpoint` filters.\n */\n receivedTransactionBlocks: TransactionBlockConnection;\n /**\n * The `0x3::staking_pool::StakedIota` objects owned by this package.\n *\n * Note that objects owned by a package are inaccessible, because packages\n * are immutable and cannot be owned by an address.\n */\n stakedIotas: StakedIotaConnection;\n /**\n * The current status of the object as read from the off-chain store. The\n * possible states are: NOT_INDEXED, the object is loaded from\n * serialized data, such as the contents of a genesis or system package\n * upgrade transaction. LIVE, the version returned is the most recent for\n * the object, and it is not deleted or wrapped at that version.\n * HISTORICAL, the object was referenced at a specific version or\n * checkpoint, so is fetched from historical tables and may not be the\n * latest version of the object. WRAPPED_OR_DELETED, the object is deleted\n * or wrapped and only partial information can be loaded.\"\n */\n status: ObjectKind;\n /**\n * The amount of IOTA we would rebate if this object gets deleted or\n * mutated. This number is recalculated based on the present storage\n * gas price.\n *\n * Note that packages cannot be deleted or mutated, so this number is\n * provided purely for reference.\n */\n storageRebate?: Maybe<Scalars['BigInt']['output']>;\n /** The (previous) versions of this package that introduced its types. */\n typeOrigins?: Maybe<Array<TypeOrigin>>;\n version: Scalars['UInt53']['output'];\n};\n\n\n/**\n * A MovePackage is a kind of Move object that represents code that has been\n * published on chain. It exposes information about its modules, type\n * definitions, functions, and dependencies.\n */\nexport type MovePackageBalanceArgs = {\n type?: InputMaybe<Scalars['String']['input']>;\n};\n\n\n/**\n * A MovePackage is a kind of Move object that represents code that has been\n * published on chain. It exposes information about its modules, type\n * definitions, functions, and dependencies.\n */\nexport type MovePackageBalancesArgs = {\n after?: InputMaybe<Scalars['String']['input']>;\n before?: InputMaybe<Scalars['String']['input']>;\n first?: InputMaybe<Scalars['Int']['input']>;\n last?: InputMaybe<Scalars['Int']['input']>;\n};\n\n\n/**\n * A MovePackage is a kind of Move object that represents code that has been\n * published on chain. It exposes information about its modules, type\n * definitions, functions, and dependencies.\n */\nexport type MovePackageCoinsArgs = {\n after?: InputMaybe<Scalars['String']['input']>;\n before?: InputMaybe<Scalars['String']['input']>;\n first?: InputMaybe<Scalars['Int']['input']>;\n last?: InputMaybe<Scalars['Int']['input']>;\n type?: InputMaybe<Scalars['String']['input']>;\n};\n\n\n/**\n * A MovePackage is a kind of Move object that represents code that has been\n * published on chain. It exposes information about its modules, type\n * definitions, functions, and dependencies.\n */\nexport type MovePackageModuleArgs = {\n name: Scalars['String']['input'];\n};\n\n\n/**\n * A MovePackage is a kind of Move object that represents code that has been\n * published on chain. It exposes information about its modules, type\n * definitions, functions, and dependencies.\n */\nexport type MovePackageModulesArgs = {\n after?: InputMaybe<Scalars['String']['input']>;\n before?: InputMaybe<Scalars['String']['input']>;\n first?: InputMaybe<Scalars['Int']['input']>;\n last?: InputMaybe<Scalars['Int']['input']>;\n};\n\n\n/**\n * A MovePackage is a kind of Move object that represents code that has been\n * published on chain. It exposes information about its modules, type\n * definitions, functions, and dependencies.\n */\nexport type MovePackageObjectsArgs = {\n after?: InputMaybe<Scalars['String']['input']>;\n before?: InputMaybe<Scalars['String']['input']>;\n filter?: InputMaybe<ObjectFilter>;\n first?: InputMaybe<Scalars['Int']['input']>;\n last?: InputMaybe<Scalars['Int']['input']>;\n};\n\n\n/**\n * A MovePackage is a kind of Move object that represents code that has been\n * published on chain. It exposes information about its modules, type\n * definitions, functions, and dependencies.\n */\nexport type MovePackagePackageAtVersionArgs = {\n version: Scalars['Int']['input'];\n};\n\n\n/**\n * A MovePackage is a kind of Move object that represents code that has been\n * published on chain. It exposes information about its modules, type\n * definitions, functions, and dependencies.\n */\nexport type MovePackagePackageVersionsArgs = {\n after?: InputMaybe<Scalars['String']['input']>;\n before?: InputMaybe<Scalars['String']['input']>;\n filter?: InputMaybe<MovePackageVersionFilter>;\n first?: InputMaybe<Scalars['Int']['input']>;\n last?: InputMaybe<Scalars['Int']['input']>;\n};\n\n\n/**\n * A MovePackage is a kind of Move object that represents code that has been\n * published on chain. It exposes information about its modules, type\n * definitions, functions, and dependencies.\n */\nexport type MovePackageReceivedTransactionBlocksArgs = {\n after?: InputMaybe<Scalars['String']['input']>;\n before?: InputMaybe<Scalars['String']['input']>;\n filter?: InputMaybe<TransactionBlockFilter>;\n first?: InputMaybe<Scalars['Int']['input']>;\n last?: InputMaybe<Scalars['Int']['input']>;\n scanLimit?: InputMaybe<Scalars['Int']['input']>;\n};\n\n\n/**\n * A MovePackage is a kind of Move object that represents code that has been\n * published on chain. It exposes information about its modules, type\n * definitions, functions, and dependencies.\n */\nexport type MovePackageStakedIotasArgs = {\n after?: InputMaybe<Scalars['String']['input']>;\n before?: InputMaybe<Scalars['String']['input']>;\n first?: InputMaybe<Scalars['Int']['input']>;\n last?: InputMaybe<Scalars['Int']['input']>;\n};\n\n/**\n * Filter for paginating `MovePackage`s that were created within a range of\n * checkpoints.\n */\nexport type MovePackageCheckpointFilter = {\n /**\n * Fetch packages that were published strictly after this checkpoint.\n * Omitting this fetches packages published since genesis.\n */\n afterCheckpoint?: InputMaybe<Scalars['UInt53']['input']>;\n /**\n * Fetch packages that were published strictly before this checkpoint.\n * Omitting this fetches packages published up to the latest checkpoint\n * (inclusive).\n */\n beforeCheckpoint?: InputMaybe<Scalars['UInt53']['input']>;\n};\n\nexport type MovePackageConnection = {\n __typename?: 'MovePackageConnection';\n /** A list of edges. */\n edges: Array<MovePackageEdge>;\n /** A list of nodes. */\n nodes: Array<MovePackage>;\n /** Information to aid in pagination. */\n pageInfo: PageInfo;\n};\n\n/** An edge in a connection. */\nexport type MovePackageEdge = {\n __typename?: 'MovePackageEdge';\n /** A cursor for use in pagination */\n cursor: Scalars['String']['output'];\n /** The item at the end of the edge */\n node: MovePackage;\n};\n\n/** Filter for paginating versions of a given `MovePackage`. */\nexport type MovePackageVersionFilter = {\n /**\n * Fetch versions of this package that are strictly newer than this\n * version. Omitting this fetches versions since the original version.\n */\n afterVersion?: InputMaybe<Scalars['UInt53']['input']>;\n /**\n * Fetch versions of this package that are strictly older than this\n * version. Omitting this fetches versions up to the latest version\n * (inclusive).\n */\n beforeVersion?: InputMaybe<Scalars['UInt53']['input']>;\n};\n\n/** Description of a struct type, defined in a Move module. */\nexport type MoveStruct = IMoveDatatype & {\n __typename?: 'MoveStruct';\n /** Abilities this struct has. */\n abilities?: Maybe<Array<MoveAbility>>;\n /**\n * The names and types of the struct's fields. Field types reference type\n * parameters, by their index in the defining struct's `typeParameters`\n * list.\n */\n fields?: Maybe<Array<MoveField>>;\n /** The module this struct was originally defined in. */\n module: MoveModule;\n /** The struct's (unqualified) type name. */\n name: Scalars['String']['output'];\n /**\n * Constraints on the struct's formal type parameters. Move bytecode does\n * not name type parameters, so when they are referenced (e.g. in field\n * types) they are identified by their index in this list.\n */\n typeParameters?: Maybe<Array<MoveStructTypeParameter>>;\n};\n\nexport type MoveStructConnection = {\n __typename?: 'MoveStructConnection';\n /** A list of edges. */\n edges: Array<MoveStructEdge>;\n /** A list of nodes. */\n nodes: Array<MoveStruct>;\n /** Information to aid in pagination. */\n pageInfo: PageInfo;\n};\n\n/** An edge in a connection. */\nexport type MoveStructEdge = {\n __typename?: 'MoveStructEdge';\n /** A cursor for use in pagination */\n cursor: Scalars['String']['output'];\n /** The item at the end of the edge */\n node: MoveStruct;\n};\n\nexport type MoveStructTypeParameter = {\n __typename?: 'MoveStructTypeParameter';\n constraints: Array<MoveAbility>;\n isPhantom: Scalars['Boolean']['output'];\n};\n\n/** Represents concrete types (no type parameters, no references). */\nexport type MoveType = {\n __typename?: 'MoveType';\n /** The abilities this concrete type has. */\n abilities: Array<MoveAbility>;\n /** Structured representation of the \"shape\" of values that match this type. */\n layout: Scalars['MoveTypeLayout']['output'];\n /** Flat representation of the type signature, as a displayable string. */\n repr: Scalars['String']['output'];\n /** Structured representation of the type signature. */\n signature: Scalars['MoveTypeSignature']['output'];\n};\n\nexport type MoveValue = {\n __typename?: 'MoveValue';\n /** The BCS representation of this value, Base64 encoded. */\n bcs: Scalars['Base64']['output'];\n /** Structured contents of a Move value. */\n data: Scalars['MoveData']['output'];\n /**\n * Representation of a Move value in JSON, where:\n *\n * - Addresses, IDs, and UIDs are represented in canonical form, as JSON\n * strings.\n * - Bools are represented by JSON boolean literals.\n * - u8, u16, and u32 are represented as JSON numbers.\n * - u64, u128, and u256 are represented as JSON strings.\n * - Vectors are represented by JSON arrays.\n * - Structs are represented by JSON objects.\n * - Empty optional values are represented by `null`.\n *\n * This form is offered as a less verbose convenience in cases where the\n * layout of the type is known by the client.\n */\n json: Scalars['JSON']['output'];\n /** The value's Move type. */\n type: MoveType;\n};\n\n/**\n * The visibility modifier describes which modules can access this module\n * member. By default, a module member can be called only within the same\n * module.\n */\nexport enum MoveVisibility {\n /**\n * A friend member can be accessed in the module it is defined in and any\n * other module in its package that is explicitly specified in its\n * friend list.\n */\n Friend = 'FRIEND',\n /** A private member can be accessed in the module it is defined in. */\n Private = 'PRIVATE',\n /** A public member can be accessed by any module. */\n Public = 'PUBLIC'\n}\n\n/** Mutations are used to write to the Iota network. */\nexport type Mutation = {\n __typename?: 'Mutation';\n /**\n * Execute a transaction, committing its effects on chain.\n *\n * - `txBytes` is a `TransactionData` struct that has been BCS-encoded and\n * then Base64-encoded.\n * - `signatures` are a list of `flag || signature || pubkey` bytes,\n * Base64-encoded.\n *\n * Waits until the transaction has reached finality on chain to return its\n * transaction digest, or returns the error that prevented finality if\n * that was not possible. A transaction is final when its effects are\n * guaranteed on chain (it cannot be revoked).\n *\n * There may be a delay between transaction finality and when GraphQL\n * requests (including the request that issued the transaction) reflect\n * its effects. As a result, queries that depend on indexing the state\n * of the chain (e.g. contents of output objects, address-level balance\n * information at the time of the transaction), must wait for indexing to\n * catch up by polling for the transaction digest using\n * `Query.transactionBlock`.\n */\n executeTransactionBlock: ExecutionResult;\n};\n\n\n/** Mutations are used to write to the Iota network. */\nexport type MutationExecuteTransactionBlockArgs = {\n signatures: Array<Scalars['String']['input']>;\n txBytes: Scalars['String']['input'];\n};\n\n/**\n * An object in Iota is a package (set of Move bytecode modules) or object\n * (typed data structure with fields) with additional metadata detailing its\n * id, version, transaction digest, owner field indicating how this object can\n * be accessed.\n */\nexport type Object = IObject & IOwner & {\n __typename?: 'Object';\n address: Scalars['IotaAddress']['output'];\n /** Attempts to convert the object into a MoveObject */\n asMoveObject?: Maybe<MoveObject>;\n /** Attempts to convert the object into a MovePackage */\n asMovePackage?: Maybe<MovePackage>;\n /**\n * Total balance of all coins with marker type owned by this object. If\n * type is not supplied, it defaults to `0x2::iota::IOTA`.\n */\n balance?: Maybe<Balance>;\n /** The balances of all coin types owned by this object. */\n balances: BalanceConnection;\n /** The Base64-encoded BCS serialization of the object's content. */\n bcs?: Maybe<Scalars['Base64']['output']>;\n /**\n * The coin objects for this object.\n *\n * `type` is a filter on the coin's type parameter, defaulting to\n * `0x2::iota::IOTA`.\n */\n coins: CoinConnection;\n /**\n * 32-byte hash that identifies the object's current contents, encoded as a\n * Base58 string.\n */\n digest?: Maybe<Scalars['String']['output']>;\n /**\n * The set of named templates defined on-chain for the type of this object,\n * to be handled off-chain. The server substitutes data from the object\n * into these templates to generate a display string per template.\n */\n display?: Maybe<Array<DisplayEntry>>;\n /**\n * Access a dynamic field on an object using its name. Names are arbitrary\n * Move values whose type have `copy`, `drop`, and `store`, and are\n * specified using their type, and their BCS contents, Base64 encoded.\n *\n * Dynamic fields on wrapped objects can be accessed by using the same API\n * under the Owner type.\n */\n dynamicField?: Maybe<DynamicField>;\n /**\n * The dynamic fields and dynamic object fields on an object.\n *\n * Dynamic fields on wrapped objects can be accessed by using the same API\n * under the Owner type.\n */\n dynamicFields: DynamicFieldConnection;\n /**\n * Access a dynamic object field on an object using its name. Names are\n * arbitrary Move values whose type have `copy`, `drop`, and `store`,\n * and are specified using their type, and their BCS contents, Base64\n * encoded. The value of a dynamic object field can also be accessed\n * off-chain directly via its address (e.g. using `Query.object`).\n *\n * Dynamic fields on wrapped objects can be accessed by using the same API\n * under the Owner type.\n */\n dynamicObjectField?: Maybe<DynamicField>;\n /** Objects owned by this object, optionally `filter`-ed. */\n objects: MoveObjectConnection;\n /**\n * The owner type of this object: Immutable, Shared, Parent, Address\n * Immutable and Shared Objects do not have owners.\n */\n owner?: Maybe<ObjectOwner>;\n /** The transaction block that created this version of the object. */\n previousTransactionBlock?: Maybe<TransactionBlock>;\n /**\n * The transaction blocks that sent objects to this object.\n *\n * `scanLimit` restricts the number of candidate transactions scanned when\n * gathering a page of results. It is required for queries that apply\n * more than two complex filters (on function, kind, sender, recipient,\n * input object, changed object, or ids), and can be at most\n * `serviceConfig.maxScanLimit`.\n *\n * When the scan limit is reached the page will be returned even if it has\n * fewer than `first` results when paginating forward (`last` when\n * paginating backwards). If there are more transactions to scan,\n * `pageInfo.hasNextPage` (or `pageInfo.hasPreviousPage`) will be set to\n * `true`, and `PageInfo.endCursor` (or `PageInfo.startCursor`) will be set\n * to the last transaction that was scanned as opposed to the last (or\n * first) transaction in the page.\n *\n * Requesting the next (or previous) page after this cursor will resume the\n * search, scanning the next `scanLimit` many transactions in the\n * direction of pagination, and so on until all transactions in the\n * scanning range have been visited.\n *\n * By default, the scanning range includes all transactions known to\n * GraphQL, but it can be restricted by the `after` and `before`\n * cursors, and the `beforeCheckpoint`, `afterCheckpoint` and\n * `atCheckpoint` filters.\n */\n receivedTransactionBlocks: TransactionBlockConnection;\n /** The `0x3::staking_pool::StakedIota` objects owned by this object. */\n stakedIotas: StakedIotaConnection;\n /**\n * The current status of the object as read from the off-chain store. The\n * possible states are: NOT_INDEXED, the object is loaded from\n * serialized data, such as the contents of a genesis or system package\n * upgrade transaction. LIVE, the version returned is the most recent for\n * the object, and it is not deleted or wrapped at that version.\n * HISTORICAL, the object was referenced at a specific version or\n * checkpoint, so is fetched from historical tables and may not be the\n * latest version of the object. WRAPPED_OR_DELETED, the object is deleted\n * or wrapped and only partial information can be loaded.\"\n */\n status: ObjectKind;\n /**\n * The amount of IOTA we would rebate if this object gets deleted or\n * mutated. This number is recalculated based on the present storage\n * gas price.\n */\n storageRebate?: Maybe<Scalars['BigInt']['output']>;\n version: Scalars['UInt53']['output'];\n};\n\n\n/**\n * An object in Iota is a package (set of Move bytecode modules) or object\n * (typed data structure with fields) with additional metadata detailing its\n * id, version, transaction digest, owner field indicating how this object can\n * be accessed.\n */\nexport type ObjectBalanceArgs = {\n type?: InputMaybe<Scalars['String']['input']>;\n};\n\n\n/**\n * An object in Iota is a package (set of Move bytecode modules) or object\n * (typed data structure with fields) with additional metadata detailing its\n * id, version, transaction digest, owner field indicating how this object can\n * be accessed.\n */\nexport type ObjectBalancesArgs = {\n after?: InputMaybe<Scalars['String']['input']>;\n before?: InputMaybe<Scalars['String']['input']>;\n first?: InputMaybe<Scalars['Int']['input']>;\n last?: InputMaybe<Scalars['Int']['input']>;\n};\n\n\n/**\n * An object in Iota is a package (set of Move bytecode modules) or object\n * (typed data structure with fields) with additional metadata detailing its\n * id, version, transaction digest, owner field indicating how this object can\n * be accessed.\n */\nexport type ObjectCoinsArgs = {\n after?: InputMaybe<Scalars['String']['input']>;\n before?: InputMaybe<Scalars['String']['input']>;\n first?: InputMaybe<Scalars['Int']['input']>;\n last?: InputMaybe<Scalars['Int']['input']>;\n type?: InputMaybe<Scalars['String']['input']>;\n};\n\n\n/**\n * An object in Iota is a package (set of Move bytecode modules) or object\n * (typed data structure with fields) with additional metadata detailing its\n * id, version, transaction digest, owner field indicating how this object can\n * be accessed.\n */\nexport type ObjectDynamicFieldArgs = {\n name: DynamicFieldName;\n};\n\n\n/**\n * An object in Iota is a package (set of Move bytecode modules) or object\n * (typed data structure with fields) with additional metadata detailing its\n * id, version, transaction digest, owner field indicating how this object can\n * be accessed.\n */\nexport type ObjectDynamicFieldsArgs = {\n after?: InputMaybe<Scalars['String']['input']>;\n before?: InputMaybe<Scalars['String']['input']>;\n first?: InputMaybe<Scalars['Int']['input']>;\n last?: InputMaybe<Scalars['Int']['input']>;\n};\n\n\n/**\n * An object in Iota is a package (set of Move bytecode modules) or object\n * (typed data structure with fields) with additional metadata detailing its\n * id, version, transaction digest, owner field indicating how this object can\n * be accessed.\n */\nexport type ObjectDynamicObjectFieldArgs = {\n name: DynamicFieldName;\n};\n\n\n/**\n * An object in Iota is a package (set of Move bytecode modules) or object\n * (typed data structure with fields) with additional metadata detailing its\n * id, version, transaction digest, owner field indicating how this object can\n * be accessed.\n */\nexport type ObjectObjectsArgs = {\n after?: InputMaybe<Scalars['String']['input']>;\n before?: InputMaybe<Scalars['String']['input']>;\n filter?: InputMaybe<ObjectFilter>;\n first?: InputMaybe<Scalars['Int']['input']>;\n last?: InputMaybe<Scalars['Int']['input']>;\n};\n\n\n/**\n * An object in Iota is a package (set of Move bytecode modules) or object\n * (typed data structure with fields) with additional metadata detailing its\n * id, version, transaction digest, owner field indicating how this object can\n * be accessed.\n */\nexport type ObjectReceivedTransactionBlocksArgs = {\n after?: InputMaybe<Scalars['String']['input']>;\n before?: InputMaybe<Scalars['String']['input']>;\n filter?: InputMaybe<TransactionBlockFilter>;\n first?: InputMaybe<Scalars['Int']['input']>;\n last?: InputMaybe<Scalars['Int']['input']>;\n scanLimit?: InputMaybe<Scalars['Int']['input']>;\n};\n\n\n/**\n * An object in Iota is a package (set of Move bytecode modules) or object\n * (typed data structure with fields) with additional metadata detailing its\n * id, version, transaction digest, owner field indicating how this object can\n * be accessed.\n */\nexport type ObjectStakedIotasArgs = {\n after?: InputMaybe<Scalars['String']['input']>;\n before?: InputMaybe<Scalars['String']['input']>;\n first?: InputMaybe<Scalars['Int']['input']>;\n last?: InputMaybe<Scalars['Int']['input']>;\n};\n\n/** Effect on an individual Object (keyed by its ID). */\nexport type ObjectChange = {\n __typename?: 'ObjectChange';\n /** The address of the object that has changed. */\n address: Scalars['IotaAddress']['output'];\n /** Whether the ID was created in this transaction. */\n idCreated?: Maybe<Scalars['Boolean']['output']>;\n /** Whether the ID was deleted in this transaction. */\n idDeleted?: Maybe<Scalars['Boolean']['output']>;\n /** The contents of the object immediately before the transaction. */\n inputState?: Maybe<Object>;\n /** The contents of the object immediately after the transaction. */\n outputState?: Maybe<Object>;\n};\n\nexport type ObjectChangeConnection = {\n __typename?: 'ObjectChangeConnection';\n /** A list of edges. */\n edges: Array<ObjectChangeEdge>;\n /** A list of nodes. */\n nodes: Array<ObjectChange>;\n /** Information to aid in pagination. */\n pageInfo: PageInfo;\n};\n\n/** An edge in a connection. */\nexport type ObjectChangeEdge = {\n __typename?: 'ObjectChangeEdge';\n /** A cursor for use in pagination */\n cursor: Scalars['String']['output'];\n /** The item at the end of the edge */\n node: ObjectChange;\n};\n\nexport type ObjectConnection = {\n __typename?: 'ObjectConnection';\n /** A list of edges. */\n edges: Array<ObjectEdge>;\n /** A list of nodes. */\n nodes: Array<Object>;\n /** Information to aid in pagination. */\n pageInfo: PageInfo;\n};\n\n/** An edge in a connection. */\nexport type ObjectEdge = {\n __typename?: 'ObjectEdge';\n /** A cursor for use in pagination */\n cursor: Scalars['String']['output'];\n /** The item at the end of the edge */\n node: Object;\n};\n\n/**\n * Constrains the set of objects returned. All filters are optional, and the\n * resulting set of objects are ones whose\n *\n * - Type matches the `type` filter,\n * - AND, whose owner matches the `owner` filter,\n * - AND, whose ID is in `objectIds` OR whose ID and version is in\n * `objectKeys`.\n */\nexport type ObjectFilter = {\n /** Filter for live objects by their IDs. */\n objectIds?: InputMaybe<Array<Scalars['IotaAddress']['input']>>;\n /**\n * Filter for live or potentially historical objects by their ID and\n * version.\n */\n objectKeys?: InputMaybe<Array<ObjectKey>>;\n /** Filter for live objects by their current owners. */\n owner?: InputMaybe<Scalars['IotaAddress']['input']>;\n /**\n * This field is used to specify the type of objects that should be\n * included in the query results.\n *\n * Objects can be filtered by their type's package, package::module, or\n * their fully qualified type name.\n *\n * Generic types can be queried by either the generic type name, e.g.\n * `0x2::coin::Coin`, or by the full type name, such as\n * `0x2::coin::Coin<0x2::iota::IOTA>`.\n */\n type?: InputMaybe<Scalars['String']['input']>;\n};\n\nexport type ObjectKey = {\n objectId: Scalars['IotaAddress']['input'];\n version: Scalars['UInt53']['input'];\n};\n\nexport enum ObjectKind {\n /** The object is fetched from the index. */\n Indexed = 'INDEXED',\n /**\n * The object is loaded from serialized data, such as the contents of a\n * transaction that hasn't been indexed yet.\n */\n NotIndexed = 'NOT_INDEXED',\n /**\n * The object is deleted or wrapped and only partial information can be\n * loaded from the indexer.\n */\n WrappedOrDeleted = 'WRAPPED_OR_DELETED'\n}\n\n/** The object's owner type: Immutable, Shared, Parent, or Address. */\nexport type ObjectOwner = AddressOwner | Immutable | Parent | Shared;\n\nexport type ObjectRef = {\n /** ID of the object. */\n address: Scalars['IotaAddress']['input'];\n /** Digest of the object. */\n digest: Scalars['String']['input'];\n /** Version or sequence number of the object. */\n version: Scalars['UInt53']['input'];\n};\n\n/**\n * Represents types that could contain references or free type parameters.\n * Such types can appear as function parameters, in fields of structs, or as\n * actual type parameter.\n */\nexport type OpenMoveType = {\n __typename?: 'OpenMoveType';\n /** Flat representation of the type signature, as a displayable string. */\n repr: Scalars['String']['output'];\n /** Structured representation of the type signature. */\n signature: Scalars['OpenMoveTypeSignature']['output'];\n};\n\n/** A Move object, either immutable, or owned mutable. */\nexport type OwnedOrImmutable = {\n __typename?: 'OwnedOrImmutable';\n /** ID of the object being read. */\n address: Scalars['IotaAddress']['output'];\n /**\n * 32-byte hash that identifies the object's contents at this version,\n * encoded as a Base58 string.\n */\n digest: Scalars['String']['output'];\n /** The object at this version. May not be available due to pruning. */\n object?: Maybe<Object>;\n /** Version of the object being read. */\n version: Scalars['UInt53']['output'];\n};\n\n/**\n * An Owner is an entity that can own an object. Each Owner is identified by a\n * IotaAddress which represents either an Address (corresponding to a public\n * key of an account) or an Object, but never both (it is not known up-front\n * whether a given Owner is an Address or an Object).\n */\nexport type Owner = IOwner & {\n __typename?: 'Owner';\n address: Scalars['IotaAddress']['output'];\n asAddress?: Maybe<Address>;\n asObject?: Maybe<Object>;\n /**\n * Total balance of all coins with marker type owned by this object or\n * address. If type is not supplied, it defaults to `0x2::iota::IOTA`.\n */\n balance?: Maybe<Balance>;\n /** The balances of all coin types owned by this object or address. */\n balances: BalanceConnection;\n /**\n * The coin objects for this object or address.\n *\n * `type` is a filter on the coin's type parameter, defaulting to\n * `0x2::iota::IOTA`.\n */\n coins: CoinConnection;\n /**\n * Access a dynamic field on an object using its name. Names are arbitrary\n * Move values whose type have `copy`, `drop`, and `store`, and are\n * specified using their type, and their BCS contents, Base64 encoded.\n *\n * This field exists as a convenience when accessing a dynamic field on a\n * wrapped object.\n */\n dynamicField?: Maybe<DynamicField>;\n /**\n * The dynamic fields and dynamic object fields on an object.\n *\n * This field exists as a convenience when accessing a dynamic field on a\n * wrapped object.\n */\n dynamicFields: DynamicFieldConnection;\n /**\n * Access a dynamic object field on an object using its name. Names are\n * arbitrary Move values whose type have `copy`, `drop`, and `store`,\n * and are specified using their type, and their BCS contents, Base64\n * encoded. The value of a dynamic object field can also be accessed\n * off-chain directly via its address (e.g. using `Query.object`).\n *\n * This field exists as a convenience when accessing a dynamic field on a\n * wrapped object.\n */\n dynamicObjectField?: Maybe<DynamicField>;\n /** Objects owned by this object or address, optionally `filter`-ed. */\n objects: MoveObjectConnection;\n /**\n * The `0x3::staking_pool::StakedIota` objects owned by this object or\n * address.\n */\n stakedIotas: StakedIotaConnection;\n};\n\n\n/**\n * An Owner is an entity that can own an object. Each Owner is identified by a\n * IotaAddress which represents either an Address (corresponding to a public\n * key of an account) or an Object, but never both (it is not known up-front\n * whether a given Owner is an Address or an Object).\n */\nexport type OwnerBalanceArgs = {\n type?: InputMaybe<Scalars['String']['input']>;\n};\n\n\n/**\n * An Owner is an entity that can own an object. Each Owner is identified by a\n * IotaAddress which represents either an Address (corresponding to a public\n * key of an account) or an Object, but never both (it is not known up-front\n * whether a given Owner is an Address or an Object).\n */\nexport type OwnerBalancesArgs = {\n after?: InputMaybe<Scalars['String']['input']>;\n before?: InputMaybe<Scalars['String']['input']>;\n first?: InputMaybe<Scalars['Int']['input']>;\n last?: InputMaybe<Scalars['Int']['input']>;\n};\n\n\n/**\n * An Owner is an entity that can own an object. Each Owner is identified by a\n * IotaAddress which represents either an Address (corresponding to a public\n * key of an account) or an Object, but never both (it is not known up-front\n * whether a given Owner is an Address or an Object).\n */\nexport type OwnerCoinsArgs = {\n after?: InputMaybe<Scalars['String']['input']>;\n before?: InputMaybe<Scalars['String']['input']>;\n first?: InputMaybe<Scalars['Int']['input']>;\n last?: InputMaybe<Scalars['Int']['input']>;\n type?: InputMaybe<Scalars['String']['input']>;\n};\n\n\n/**\n * An Owner is an entity that can own an object. Each Owner is identified by a\n * IotaAddress which represents either an Address (corresponding to a public\n * key of an account) or an Object, but never both (it is not known up-front\n * whether a given Owner is an Address or an Object).\n */\nexport type OwnerDynamicFieldArgs = {\n name: DynamicFieldName;\n};\n\n\n/**\n * An Owner is an entity that can own an object. Each Owner is identified by a\n * IotaAddress which represents either an Address (corresponding to a public\n * key of an account) or an Object, but never both (it is not known up-front\n * whether a given Owner is an Address or an Object).\n */\nexport type OwnerDynamicFieldsArgs = {\n after?: InputMaybe<Scalars['String']['input']>;\n before?: InputMaybe<Scalars['String']['input']>;\n first?: InputMaybe<Scalars['Int']['input']>;\n last?: InputMaybe<Scalars['Int']['input']>;\n};\n\n\n/**\n * An Owner is an entity that can own an object. Each Owner is identified by a\n * IotaAddress which represents either an Address (corresponding to a public\n * key of an account) or an Object, but never both (it is not known up-front\n * whether a given Owner is an Address or an Object).\n */\nexport type OwnerDynamicObjectFieldArgs = {\n name: DynamicFieldName;\n};\n\n\n/**\n * An Owner is an entity that can own an object. Each Owner is identified by a\n * IotaAddress which represents either an Address (corresponding to a public\n * key of an account) or an Object, but never both (it is not known up-front\n * whether a given Owner is an Address or an Object).\n */\nexport type OwnerObjectsArgs = {\n after?: InputMaybe<Scalars['String']['input']>;\n before?: InputMaybe<Scalars['String']['input']>;\n filter?: InputMaybe<ObjectFilter>;\n first?: InputMaybe<Scalars['Int']['input']>;\n last?: InputMaybe<Scalars['Int']['input']>;\n};\n\n\n/**\n * An Owner is an entity that can own an object. Each Owner is identified by a\n * IotaAddress which represents either an Address (corresponding to a public\n * key of an account) or an Object, but never both (it is not known up-front\n * whether a given Owner is an Address or an Object).\n */\nexport type OwnerStakedIotasArgs = {\n after?: InputMaybe<Scalars['String']['input']>;\n before?: InputMaybe<Scalars['String']['input']>;\n first?: InputMaybe<Scalars['Int']['input']>;\n last?: InputMaybe<Scalars['Int']['input']>;\n};\n\n/** Information about pagination in a connection */\nexport type PageInfo = {\n __typename?: 'PageInfo';\n /** When paginating forwards, the cursor to continue. */\n endCursor?: Maybe<Scalars['String']['output']>;\n /** When paginating forwards, are there more items? */\n hasNextPage: Scalars['Boolean']['output'];\n /** When paginating backwards, are there more items? */\n hasPreviousPage: Scalars['Boolean']['output'];\n /** When paginating backwards, the cursor to continue. */\n startCursor?: Maybe<Scalars['String']['output']>;\n};\n\n/**\n * If the object's owner is a Parent, this object is part of a dynamic field\n * (it is the value of the dynamic field, or the intermediate Field object\n * itself). Also note that if the owner is a parent, then it's guaranteed to be\n * an object.\n */\nexport type Parent = {\n __typename?: 'Parent';\n parent?: Maybe<Object>;\n};\n\n/** A single transaction, or command, in the programmable transaction block. */\nexport type ProgrammableTransaction = MakeMoveVecTransaction | MergeCoinsTransaction | MoveCallTransaction | PublishTransaction | SplitCoinsTransaction | TransferObjectsTransaction | UpgradeTransaction;\n\n/**\n * A user transaction that allows the interleaving of native commands (like\n * transfer, split coins, merge coins, etc) and move calls, executed\n * atomically.\n */\nexport type ProgrammableTransactionBlock = {\n __typename?: 'ProgrammableTransactionBlock';\n /** Input objects or primitive values. */\n inputs: TransactionInputConnection;\n /** The transaction commands, executed sequentially. */\n transactions: ProgrammableTransactionConnection;\n};\n\n\n/**\n * A user transaction that allows the interleaving of native commands (like\n * transfer, split coins, merge coins, etc) and move calls, executed\n * atomically.\n */\nexport type ProgrammableTransactionBlockInputsArgs = {\n after?: InputMaybe<Scalars['String']['input']>;\n before?: InputMaybe<Scalars['String']['input']>;\n first?: InputMaybe<Scalars['Int']['input']>;\n last?: InputMaybe<Scalars['Int']['input']>;\n};\n\n\n/**\n * A user transaction that allows the interleaving of native commands (like\n * transfer, split coins, merge coins, etc) and move calls, executed\n * atomically.\n */\nexport type ProgrammableTransactionBlockTransactionsArgs = {\n after?: InputMaybe<Scalars['String']['input']>;\n before?: InputMaybe<Scalars['String']['input']>;\n first?: InputMaybe<Scalars['Int']['input']>;\n last?: InputMaybe<Scalars['Int']['input']>;\n};\n\nexport type ProgrammableTransactionConnection = {\n __typename?: 'ProgrammableTransactionConnection';\n /** A list of edges. */\n edges: Array<ProgrammableTransactionEdge>;\n /** A list of nodes. */\n nodes: Array<ProgrammableTransaction>;\n /** Information to aid in pagination. */\n pageInfo: PageInfo;\n};\n\n/** An edge in a connection. */\nexport type ProgrammableTransactionEdge = {\n __typename?: 'ProgrammableTransactionEdge';\n /** A cursor for use in pagination */\n cursor: Scalars['String']['output'];\n /** The item at the end of the edge */\n node: ProgrammableTransaction;\n};\n\n/** A single protocol configuration value. */\nexport type ProtocolConfigAttr = {\n __typename?: 'ProtocolConfigAttr';\n key: Scalars['String']['output'];\n value?: Maybe<Scalars['String']['output']>;\n};\n\n/** Whether or not a single feature is enabled in the protocol config. */\nexport type ProtocolConfigFeatureFlag = {\n __typename?: 'ProtocolConfigFeatureFlag';\n key: Scalars['String']['output'];\n value: Scalars['Boolean']['output'];\n};\n\n/**\n * Constants that control how the chain operates.\n *\n * These can only change during protocol upgrades which happen on epoch\n * boundaries.\n */\nexport type ProtocolConfigs = {\n __typename?: 'ProtocolConfigs';\n /** Query for the value of the configuration with name `key`. */\n config?: Maybe<ProtocolConfigAttr>;\n /**\n * List all available configurations and their values. These\n * configurations can take any value (but they will all be represented\n * in string form), and do not include feature flags.\n */\n configs: Array<ProtocolConfigAttr>;\n /** Query for the state of the feature flag with name `key`. */\n featureFlag?: Maybe<ProtocolConfigFeatureFlag>;\n /**\n * List all available feature flags and their values. Feature flags are a\n * form of boolean configuration that are usually used to gate features\n * while they are in development. Once a flag has been enabled, it is\n * rare for it to be disabled.\n */\n featureFlags: Array<ProtocolConfigFeatureFlag>;\n /**\n * The protocol is not required to change on every epoch boundary, so the\n * protocol version tracks which change to the protocol these configs\n * are from.\n */\n protocolVersion: Scalars['UInt53']['output'];\n};\n\n\n/**\n * Constants that control how the chain operates.\n *\n * These can only change during protocol upgrades which happen on epoch\n * boundaries.\n */\nexport type ProtocolConfigsConfigArgs = {\n key: Scalars['String']['input'];\n};\n\n\n/**\n * Constants that control how the chain operates.\n *\n * These can only change during protocol upgrades which happen on epoch\n * boundaries.\n */\nexport type ProtocolConfigsFeatureFlagArgs = {\n key: Scalars['String']['input'];\n};\n\n/** Publishes a Move Package. */\nexport type PublishTransaction = {\n __typename?: 'PublishTransaction';\n /** IDs of the transitive dependencies of the package to be published. */\n dependencies: Array<Scalars['IotaAddress']['output']>;\n /**\n * Bytecode for the modules to be published, BCS serialized and Base64\n * encoded.\n */\n modules: Array<Scalars['Base64']['output']>;\n};\n\n/** BCS encoded primitive value (not an object or Move struct). */\nexport type Pure = {\n __typename?: 'Pure';\n /** BCS serialized and Base64 encoded primitive value. */\n bytes: Scalars['Base64']['output'];\n};\n\nexport type Query = {\n __typename?: 'Query';\n /** Look-up an Account by its IotaAddress. */\n address?: Maybe<Address>;\n /**\n * Range of checkpoints that the RPC has data available for (for data\n * that can be tied to a particular checkpoint).\n */\n availableRange: AvailableRange;\n /**\n * First four bytes of the network's genesis checkpoint digest (uniquely\n * identifies the network).\n */\n chainIdentifier: Scalars['String']['output'];\n /**\n * Fetch checkpoint information by sequence number or digest (defaults to\n * the latest available checkpoint).\n */\n checkpoint?: Maybe<Checkpoint>;\n /** The checkpoints that exist in the network. */\n checkpoints: CheckpointConnection;\n /** The coin metadata associated with the given coin type. */\n coinMetadata?: Maybe<CoinMetadata>;\n /**\n * The coin objects that exist in the network.\n *\n * The type field is a string of the inner type of the coin by which to\n * filter (e.g. `0x2::iota::IOTA`). If no type is provided, it will\n * default to `0x2::iota::IOTA`.\n */\n coins: CoinConnection;\n /**\n * Simulate running a transaction to inspect its effects without\n * committing to them on-chain.\n *\n * `txBytes` either a `TransactionData` struct or a `TransactionKind`\n * struct, BCS-encoded and then Base64-encoded. The expected\n * type is controlled by the presence or absence of `txMeta`: If\n * present, `txBytes` is assumed to be a `TransactionKind`, if\n * absent, then `TransactionData`.\n *\n * `txMeta` the data that is missing from a `TransactionKind` to make\n * a `TransactionData` (sender address and gas information). All\n * its fields are nullable.\n *\n * `skipChecks` optional flag to disable the usual verification\n * checks that prevent access to objects that are owned by\n * addresses other than the sender, and calling non-public,\n * non-entry functions, and some other checks. Defaults to false.\n */\n dryRunTransactionBlock: DryRunResult;\n /** Fetch epoch information by ID (defaults to the latest epoch). */\n epoch?: Maybe<Epoch>;\n /**\n * Query events that are emitted in the network.\n * We currently do not support filtering by emitting module and event type\n * at the same time so if both are provided in one filter, the query will\n * error.\n */\n events: EventConnection;\n /**\n * The latest version of the package at `address`.\n *\n * This corresponds to the package with the highest `version` that shares\n * its original ID with the package at `address`.\n */\n latestPackage?: Maybe<MovePackage>;\n /**\n * The object corresponding to the given address at the (optionally) given\n * version. When no version is given, the latest version is returned.\n */\n object?: Maybe<Object>;\n /** The objects that exist in the network. */\n objects: ObjectConnection;\n /**\n * Look up an Owner by its IotaAddress.\n *\n * `rootVersion` represents the version of the root object in some nested\n * chain of dynamic fields. It allows consistent historical queries for\n * the case of wrapped objects, which don't have a version. For\n * example, if querying the dynamic field of a table wrapped in a parent\n * object, passing the parent object's version here will ensure we get the\n * dynamic field's state at the moment that parent's version was\n * created.\n *\n * Also, if this Owner is an object itself, `rootVersion` will be used to\n * bound its version from above when querying `Owner.asObject`. This\n * can be used, for example, to get the contents of a dynamic object\n * field when its parent was at `rootVersion`.\n *\n * If `rootVersion` is omitted, dynamic fields will be from a consistent\n * snapshot of the Iota state at the latest checkpoint known to the\n * GraphQL RPC. Similarly, `Owner.asObject` will return the object's\n * version at the latest checkpoint.\n */\n owner?: Maybe<Owner>;\n /**\n * The package corresponding to the given address (at the optionally given\n * version).\n *\n * When no version is given, the package is loaded directly from the\n * address given. Otherwise, the address is translated before loading\n * to point to the package whose original ID matches the package at\n * `address`, but whose version is `version`. For non-system packages, this\n * might result in a different address than `address` because different\n * versions of a package, introduced by upgrades, exist at distinct\n * addresses.\n *\n * Note that this interpretation of `version` is different from a\n * historical object read (the interpretation of `version` for the\n * `object` query).\n */\n package?: Maybe<MovePackage>;\n /**\n * Fetch all versions of package at `address` (packages that share this\n * package's original ID), optionally bounding the versions exclusively\n * from below with `afterVersion`, or from above with `beforeVersion`.\n */\n packageVersions: MovePackageConnection;\n /**\n * The Move packages that exist in the network, optionally filtered to be\n * strictly before `beforeCheckpoint` and/or strictly after\n * `afterCheckpoint`.\n *\n * This query returns all versions of a given user package that appear\n * between the specified checkpoints, but only records the latest\n * versions of system packages.\n */\n packages: MovePackageConnection;\n /**\n * Fetch the protocol config by protocol version (defaults to the latest\n * protocol version known to the GraphQL service).\n */\n protocolConfig: ProtocolConfigs;\n /** Configuration for this RPC service */\n serviceConfig: ServiceConfig;\n /** Fetch a transaction block by its transaction digest. */\n transactionBlock?: Maybe<TransactionBlock>;\n /**\n * The transaction blocks that exist in the network.\n *\n * `scanLimit` restricts the number of candidate transactions scanned when\n * gathering a page of results. It is required for queries that apply\n * more than two complex filters (on function, kind, sender, recipient,\n * input object, changed object, or ids), and can be at most\n * `serviceConfig.maxScanLimit`.\n *\n * When the scan limit is reached the page will be returned even if it has\n * fewer than `first` results when paginating forward (`last` when\n * paginating backwards). If there are more transactions to scan,\n * `pageInfo.hasNextPage` (or `pageInfo.hasPreviousPage`) will be set to\n * `true`, and `PageInfo.endCursor` (or `PageInfo.startCursor`) will be set\n * to the last transaction that was scanned as opposed to the last (or\n * first) transaction in the page.\n *\n * Requesting the next (or previous) page after this cursor will resume the\n * search, scanning the next `scanLimit` many transactions in the\n * direction of pagination, and so on until all transactions in the\n * scanning range have been visited.\n *\n * By default, the scanning range includes all transactions known to\n * GraphQL, but it can be restricted by the `after` and `before`\n * cursors, and the `beforeCheckpoint`, `afterCheckpoint` and\n * `atCheckpoint` filters.\n */\n transactionBlocks: TransactionBlockConnection;\n /**\n * Fetch a structured representation of a concrete type, including its\n * layout information. Fails if the type is malformed.\n */\n type: MoveType;\n /**\n * Verify a zkLogin signature based on the provided transaction or personal\n * message based on current epoch, chain id, and latest JWKs fetched\n * on-chain. If the signature is valid, the function returns a\n * `ZkLoginVerifyResult` with success as true and an empty list of\n * errors. If the signature is invalid, the function returns\n * a `ZkLoginVerifyResult` with success as false with a list of errors.\n *\n * - `bytes` is either the personal message in raw bytes or transaction\n * data bytes in BCS-encoded and then Base64-encoded.\n * - `signature` is a serialized zkLogin signature that is Base64-encoded.\n * - `intentScope` is an enum that specifies the intent scope to be used to\n * parse bytes.\n * - `author` is the address of the signer of the transaction or personal\n * msg.\n */\n verifyZkloginSignature: ZkLoginVerifyResult;\n};\n\n\nexport type QueryAddressArgs = {\n address: Scalars['IotaAddress']['input'];\n};\n\n\nexport type QueryCheckpointArgs = {\n id?: InputMaybe<CheckpointId>;\n};\n\n\nexport type QueryCheckpointsArgs = {\n after?: InputMaybe<Scalars['String']['input']>;\n before?: InputMaybe<Scalars['String']['input']>;\n first?: InputMaybe<Scalars['Int']['input']>;\n last?: InputMaybe<Scalars['Int']['input']>;\n};\n\n\nexport type QueryCoinMetadataArgs = {\n coinType: Scalars['String']['input'];\n};\n\n\nexport type QueryCoinsArgs = {\n after?: InputMaybe<Scalars['String']['input']>;\n before?: InputMaybe<Scalars['String']['input']>;\n first?: InputMaybe<Scalars['Int']['input']>;\n last?: InputMaybe<Scalars['Int']['input']>;\n type?: InputMaybe<Scalars['String']['input']>;\n};\n\n\nexport type QueryDryRunTransactionBlockArgs = {\n skipChecks?: InputMaybe<Scalars['Boolean']['input']>;\n txBytes: Scalars['String']['input'];\n txMeta?: InputMaybe<TransactionMetadata>;\n};\n\n\nexport type QueryEpochArgs = {\n id?: InputMaybe<Scalars['UInt53']['input']>;\n};\n\n\nexport type QueryEventsArgs = {\n after?: InputMaybe<Scalars['String']['input']>;\n before?: InputMaybe<Scalars['String']['input']>;\n filter?: InputMaybe<EventFilter>;\n first?: InputMaybe<Scalars['Int']['input']>;\n last?: InputMaybe<Scalars['Int']['input']>;\n};\n\n\nexport type QueryLatestPackageArgs = {\n address: Scalars['IotaAddress']['input'];\n};\n\n\nexport type QueryObjectArgs = {\n address: Scalars['IotaAddress']['input'];\n version?: InputMaybe<Scalars['UInt53']['input']>;\n};\n\n\nexport type QueryObjectsArgs = {\n after?: InputMaybe<Scalars['String']['input']>;\n before?: InputMaybe<Scalars['String']['input']>;\n filter?: InputMaybe<ObjectFilter>;\n first?: InputMaybe<Scalars['Int']['input']>;\n last?: InputMaybe<Scalars['Int']['input']>;\n};\n\n\nexport type QueryOwnerArgs = {\n address: Scalars['IotaAddress']['input'];\n rootVersion?: InputMaybe<Scalars['UInt53']['input']>;\n};\n\n\nexport type QueryPackageArgs = {\n address: Scalars['IotaAddress']['input'];\n version?: InputMaybe<Scalars['UInt53']['input']>;\n};\n\n\nexport type QueryPackageVersionsArgs = {\n address: Scalars['IotaAddress']['input'];\n after?: InputMaybe<Scalars['String']['input']>;\n before?: InputMaybe<Scalars['String']['input']>;\n filter?: InputMaybe<MovePackageVersionFilter>;\n first?: InputMaybe<Scalars['Int']['input']>;\n last?: InputMaybe<Scalars['Int']['input']>;\n};\n\n\nexport type QueryPackagesArgs = {\n after?: InputMaybe<Scalars['String']['input']>;\n before?: InputMaybe<Scalars['String']['input']>;\n filter?: InputMaybe<MovePackageCheckpointFilter>;\n first?: InputMaybe<Scalars['Int']['input']>;\n last?: InputMaybe<Scalars['Int']['input']>;\n};\n\n\nexport type QueryProtocolConfigArgs = {\n protocolVersion?: InputMaybe<Scalars['UInt53']['input']>;\n};\n\n\nexport type QueryTransactionBlockArgs = {\n digest: Scalars['String']['input'];\n};\n\n\nexport type QueryTransactionBlocksArgs = {\n after?: InputMaybe<Scalars['String']['input']>;\n before?: InputMaybe<Scalars['String']['input']>;\n filter?: InputMaybe<TransactionBlockFilter>;\n first?: InputMaybe<Scalars['Int']['input']>;\n last?: InputMaybe<Scalars['Int']['input']>;\n scanLimit?: InputMaybe<Scalars['Int']['input']>;\n};\n\n\nexport type QueryTypeArgs = {\n type: Scalars['String']['input'];\n};\n\n\nexport type QueryVerifyZkloginSignatureArgs = {\n author: Scalars['IotaAddress']['input'];\n bytes: Scalars['Base64']['input'];\n intentScope: ZkLoginIntentScope;\n signature: Scalars['Base64']['input'];\n};\n\n/** System transaction to update the source of on-chain randomness. */\nexport type RandomnessStateUpdateTransaction = {\n __typename?: 'RandomnessStateUpdateTransaction';\n /** Epoch of the randomness state update transaction. */\n epoch?: Maybe<Epoch>;\n /** Updated random bytes, encoded as Base64. */\n randomBytes: Scalars['Base64']['output'];\n /** The initial version the randomness object was shared at. */\n randomnessObjInitialSharedVersion: Scalars['UInt53']['output'];\n /** Randomness round of the update. */\n randomnessRound: Scalars['UInt53']['output'];\n};\n\n/** A Move object that can be received in this transaction. */\nexport type Receiving = {\n __typename?: 'Receiving';\n /** ID of the object being read. */\n address: Scalars['IotaAddress']['output'];\n /**\n * 32-byte hash that identifies the object's contents at this version,\n * encoded as a Base58 string.\n */\n digest: Scalars['String']['output'];\n /** The object at this version. May not be available due to pruning. */\n object?: Maybe<Object>;\n /** Version of the object being read. */\n version: Scalars['UInt53']['output'];\n};\n\n/** The result of another transaction command. */\nexport type Result = {\n __typename?: 'Result';\n /** The index of the previous command (0-indexed) that returned this result. */\n cmd: Scalars['Int']['output'];\n /**\n * If the previous command returns multiple values, this is the index of\n * the individual result among the multiple results from that command\n * (also 0-indexed).\n */\n ix?: Maybe<Scalars['Int']['output']>;\n};\n\n/** Information about whether epoch changes are using safe mode. */\nexport type SafeMode = {\n __typename?: 'SafeMode';\n /**\n * Whether safe mode was used for the last epoch change. The system will\n * retry a full epoch change on every epoch boundary and automatically\n * reset this flag if so.\n */\n enabled?: Maybe<Scalars['Boolean']['output']>;\n /**\n * Accumulated fees for computation and cost that have not been added to\n * the various reward pools, because the full epoch change did not\n * happen.\n */\n gasSummary?: Maybe<GasCostSummary>;\n};\n\n/** The enabled features and service limits configured by the server. */\nexport type ServiceConfig = {\n __typename?: 'ServiceConfig';\n /** List the available versions for this GraphQL service. */\n availableVersions: Array<Scalars['String']['output']>;\n /** Default number of elements allowed on a single page of a connection. */\n defaultPageSize: Scalars['Int']['output'];\n /** List of all features that are enabled on this GraphQL service. */\n enabledFeatures: Array<Feature>;\n /** Check whether `feature` is enabled on this GraphQL service. */\n isEnabled: Scalars['Boolean']['output'];\n /**\n * Maximum estimated cost of a database query used to serve a GraphQL\n * request. This is measured in the same units that the database uses\n * in EXPLAIN queries.\n */\n maxDbQueryCost: Scalars['Int']['output'];\n /**\n * Maximum nesting allowed in struct fields when calculating the layout of\n * a single Move Type.\n */\n maxMoveValueDepth: Scalars['Int']['output'];\n /**\n * The maximum number of output nodes in a GraphQL response.\n *\n * Non-connection nodes have a count of 1, while connection nodes are\n * counted as the specified 'first' or 'last' number of items, or the\n * default_page_size as set by the server if those arguments are not\n * set.\n *\n * Counts accumulate multiplicatively down the query tree. For example, if\n * a query starts with a connection of first: 10 and has a field to a\n * connection with last: 20, the count at the second level would be 200\n * nodes. This is then summed to the count of 10 nodes at the first\n * level, for a total of 210 nodes.\n */\n maxOutputNodes: Scalars['Int']['output'];\n /** Maximum number of elements allowed on a single page of a connection. */\n maxPageSize: Scalars['Int']['output'];\n /** The maximum depth a GraphQL query can be to be accepted by this service. */\n maxQueryDepth: Scalars['Int']['output'];\n /**\n * The maximum number of nodes (field names) the service will accept in a\n * single query.\n */\n maxQueryNodes: Scalars['Int']['output'];\n /** Maximum length of a query payload string. */\n maxQueryPayloadSize: Scalars['Int']['output'];\n /** Maximum number of candidates to scan when gathering a page of results. */\n maxScanLimit: Scalars['Int']['output'];\n /**\n * Maximum number of transaction ids that can be passed to a\n * `TransactionBlockFilter`.\n */\n maxTransactionIds: Scalars['Int']['output'];\n /**\n * Maximum nesting allowed in type arguments in Move Types resolved by this\n * service.\n */\n maxTypeArgumentDepth: Scalars['Int']['output'];\n /**\n * Maximum number of type arguments passed into a generic instantiation of\n * a Move Type resolved by this service.\n */\n maxTypeArgumentWidth: Scalars['Int']['output'];\n /**\n * Maximum number of structs that need to be processed when calculating the\n * layout of a single Move Type.\n */\n maxTypeNodes: Scalars['Int']['output'];\n /**\n * Maximum time in milliseconds spent waiting for a response from fullnode\n * after issuing a a transaction to execute. Note that the transaction\n * may still succeed even in the case of a timeout. Transactions are\n * idempotent, so a transaction that times out should be resubmitted\n * until the network returns a definite response (success or failure, not\n * timeout).\n */\n mutationTimeoutMs: Scalars['Int']['output'];\n /**\n * Maximum time in milliseconds that will be spent to serve one query\n * request.\n */\n requestTimeoutMs: Scalars['Int']['output'];\n};\n\n\n/** The enabled features and service limits configured by the server. */\nexport type ServiceConfigIsEnabledArgs = {\n feature: Feature;\n};\n\n/**\n * A shared object is an object that is shared using the\n * 0x2::transfer::share_object function. Unlike owned objects, once an object\n * is shared, it stays mutable and is accessible by anyone.\n */\nexport type Shared = {\n __typename?: 'Shared';\n initialSharedVersion: Scalars['UInt53']['output'];\n};\n\n/** A Move object that's shared. */\nexport type SharedInput = {\n __typename?: 'SharedInput';\n address: Scalars['IotaAddress']['output'];\n /** The version that this this object was shared at. */\n initialSharedVersion: Scalars['UInt53']['output'];\n /**\n * Controls whether the transaction block can reference the shared object\n * as a mutable reference or by value. This has implications for\n * scheduling: Transactions that just read shared objects at a certain\n * version (mutable = false) can be executed concurrently, while\n * transactions that write shared objects (mutable = true) must be executed\n * serially with respect to each other.\n */\n mutable: Scalars['Boolean']['output'];\n};\n\n/**\n * The transaction accepted a shared object as input, but its execution was\n * cancelled.\n */\nexport type SharedObjectCancelled = {\n __typename?: 'SharedObjectCancelled';\n /** ID of the shared object. */\n address: Scalars['IotaAddress']['output'];\n /**\n * The assigned shared object version. It is a special version indicating\n * transaction cancellation reason.\n */\n version: Scalars['UInt53']['output'];\n};\n\n/**\n * The transaction accepted a shared object as input, but it was deleted before\n * the transaction executed.\n */\nexport type SharedObjectDelete = {\n __typename?: 'SharedObjectDelete';\n /** ID of the shared object. */\n address: Scalars['IotaAddress']['output'];\n /**\n * Whether this transaction intended to use this shared object mutably or\n * not. See `SharedInput.mutable` for further details.\n */\n mutable: Scalars['Boolean']['output'];\n /**\n * The version of the shared object that was assigned to this transaction\n * during by consensus, during sequencing.\n */\n version: Scalars['UInt53']['output'];\n};\n\n/** The transaction accepted a shared object as input, but only to read it. */\nexport type SharedObjectRead = {\n __typename?: 'SharedObjectRead';\n /** ID of the object being read. */\n address: Scalars['IotaAddress']['output'];\n /**\n * 32-byte hash that identifies the object's contents at this version,\n * encoded as a Base58 string.\n */\n digest: Scalars['String']['output'];\n /** The object at this version. May not be available due to pruning. */\n object?: Maybe<Object>;\n /** Version of the object being read. */\n version: Scalars['UInt53']['output'];\n};\n\n/**\n * Splits off coins with denominations in `amounts` from `coin`, returning\n * multiple results (as many as there are amounts.)\n */\nexport type SplitCoinsTransaction = {\n __typename?: 'SplitCoinsTransaction';\n /** The denominations to split off from the coin. */\n amounts: Array<TransactionArgument>;\n /** The coin to split. */\n coin: TransactionArgument;\n};\n\n/** The stake's possible status: active, pending, or unstaked. */\nexport enum StakeStatus {\n /**\n * The stake object is active in a staking pool and it is generating\n * rewards.\n */\n Active = 'ACTIVE',\n /** The stake awaits to join a staking pool in the next epoch. */\n Pending = 'PENDING',\n /** The stake is no longer active in any staking pool. */\n Unstaked = 'UNSTAKED'\n}\n\n/** Represents a `0x3::staking_pool::StakedIota` Move object on-chain. */\nexport type StakedIota = IMoveObject & IObject & IOwner & {\n __typename?: 'StakedIota';\n /** The epoch at which this stake became active. */\n activatedEpoch?: Maybe<Epoch>;\n address: Scalars['IotaAddress']['output'];\n /**\n * Total balance of all coins with marker type owned by this object. If\n * type is not supplied, it defaults to `0x2::iota::IOTA`.\n */\n balance?: Maybe<Balance>;\n /** The balances of all coin types owned by this object. */\n balances: BalanceConnection;\n /** The Base64-encoded BCS serialization of the object's content. */\n bcs?: Maybe<Scalars['Base64']['output']>;\n /**\n * The coin objects for this object.\n *\n * `type` is a filter on the coin's type parameter, defaulting to\n * `0x2::iota::IOTA`.\n */\n coins: CoinConnection;\n /**\n * Displays the contents of the Move object in a JSON string and through\n * GraphQL types. Also provides the flat representation of the type\n * signature, and the BCS of the corresponding data.\n */\n contents?: Maybe<MoveValue>;\n /**\n * 32-byte hash that identifies the object's contents, encoded as a Base58\n * string.\n */\n digest?: Maybe<Scalars['String']['output']>;\n /**\n * The set of named templates defined on-chain for the type of this object,\n * to be handled off-chain. The server substitutes data from the object\n * into these templates to generate a display string per template.\n */\n display?: Maybe<Array<DisplayEntry>>;\n /**\n * Access a dynamic field on an object using its name. Names are arbitrary\n * Move values whose type have `copy`, `drop`, and `store`, and are\n * specified using their type, and their BCS contents, Base64 encoded.\n *\n * Dynamic fields on wrapped objects can be accessed by using the same API\n * under the Owner type.\n */\n dynamicField?: Maybe<DynamicField>;\n /**\n * The dynamic fields and dynamic object fields on an object.\n *\n * Dynamic fields on wrapped objects can be accessed by using the same API\n * under the Owner type.\n */\n dynamicFields: DynamicFieldConnection;\n /**\n * Access a dynamic object field on an object using its name. Names are\n * arbitrary Move values whose type have `copy`, `drop`, and `store`,\n * and are specified using their type, and their BCS contents, Base64\n * encoded. The value of a dynamic object field can also be accessed\n * off-chain directly via its address (e.g. using `Query.object`).\n *\n * Dynamic fields on wrapped objects can be accessed by using the same API\n * under the Owner type.\n */\n dynamicObjectField?: Maybe<DynamicField>;\n /**\n * The estimated reward for this stake object, calculated as:\n *\n * principal * (initial_stake_rate / current_stake_rate - 1.0)\n *\n * Or 0, if this value is negative, where:\n *\n * - `initial_stake_rate` is the stake rate at the epoch this stake was\n * activated at.\n * - `current_stake_rate` is the stake rate in the current epoch.\n *\n * This value is only available if the stake is active.\n */\n estimatedReward?: Maybe<Scalars['BigInt']['output']>;\n /** Objects owned by this object, optionally `filter`-ed. */\n objects: MoveObjectConnection;\n /** The owner type of this object: Immutable, Shared, Parent, Address */\n owner?: Maybe<ObjectOwner>;\n /** The object id of the validator staking pool this stake belongs to. */\n poolId?: Maybe<Scalars['IotaAddress']['output']>;\n /** The transaction block that created this version of the object. */\n previousTransactionBlock?: Maybe<TransactionBlock>;\n /** The IOTA that was initially staked. */\n principal?: Maybe<Scalars['BigInt']['output']>;\n /**\n * The transaction blocks that sent objects to this object.\n *\n * `scanLimit` restricts the number of candidate transactions scanned when\n * gathering a page of results. It is required for queries that apply\n * more than two complex filters (on function, kind, sender, recipient,\n * input object, changed object, or ids), and can be at most\n * `serviceConfig.maxScanLimit`.\n *\n * When the scan limit is reached the page will be returned even if it has\n * fewer than `first` results when paginating forward (`last` when\n * paginating backwards). If there are more transactions to scan,\n * `pageInfo.hasNextPage` (or `pageInfo.hasPreviousPage`) will be set to\n * `true`, and `PageInfo.endCursor` (or `PageInfo.startCursor`) will be set\n * to the last transaction that was scanned as opposed to the last (or\n * first) transaction in the page.\n *\n * Requesting the next (or previous) page after this cursor will resume the\n * search, scanning the next `scanLimit` many transactions in the\n * direction of pagination, and so on until all transactions in the\n * scanning range have been visited.\n *\n * By default, the scanning range includes all transactions known to\n * GraphQL, but it can be restricted by the `after` and `before`\n * cursors, and the `beforeCheckpoint`, `afterCheckpoint` and\n * `atCheckpoint` filters.\n */\n receivedTransactionBlocks: TransactionBlockConnection;\n /** The epoch at which this object was requested to join a stake pool. */\n requestedEpoch?: Maybe<Epoch>;\n /** A stake can be pending, active, or unstaked */\n stakeStatus: StakeStatus;\n /** The `0x3::staking_pool::StakedIota` objects owned by this object. */\n stakedIotas: StakedIotaConnection;\n /**\n * The current status of the object as read from the off-chain store. The\n * possible states are: NOT_INDEXED, the object is loaded from\n * serialized data, such as the contents of a genesis or system package\n * upgrade transaction. LIVE, the version returned is the most recent for\n * the object, and it is not deleted or wrapped at that version.\n * HISTORICAL, the object was referenced at a specific version or\n * checkpoint, so is fetched from historical tables and may not be the\n * latest version of the object. WRAPPED_OR_DELETED, the object is deleted\n * or wrapped and only partial information can be loaded.\"\n */\n status: ObjectKind;\n /**\n * The amount of IOTA we would rebate if this object gets deleted or\n * mutated. This number is recalculated based on the present storage\n * gas price.\n */\n storageRebate?: Maybe<Scalars['BigInt']['output']>;\n version: Scalars['UInt53']['output'];\n};\n\n\n/** Represents a `0x3::staking_pool::StakedIota` Move object on-chain. */\nexport type StakedIotaBalanceArgs = {\n type?: InputMaybe<Scalars['String']['input']>;\n};\n\n\n/** Represents a `0x3::staking_pool::StakedIota` Move object on-chain. */\nexport type StakedIotaBalancesArgs = {\n after?: InputMaybe<Scalars['String']['input']>;\n before?: InputMaybe<Scalars['String']['input']>;\n first?: InputMaybe<Scalars['Int']['input']>;\n last?: InputMaybe<Scalars['Int']['input']>;\n};\n\n\n/** Represents a `0x3::staking_pool::StakedIota` Move object on-chain. */\nexport type StakedIotaCoinsArgs = {\n after?: InputMaybe<Scalars['String']['input']>;\n before?: InputMaybe<Scalars['String']['input']>;\n first?: InputMaybe<Scalars['Int']['input']>;\n last?: InputMaybe<Scalars['Int']['input']>;\n type?: InputMaybe<Scalars['String']['input']>;\n};\n\n\n/** Represents a `0x3::staking_pool::StakedIota` Move object on-chain. */\nexport type StakedIotaDynamicFieldArgs = {\n name: DynamicFieldName;\n};\n\n\n/** Represents a `0x3::staking_pool::StakedIota` Move object on-chain. */\nexport type StakedIotaDynamicFieldsArgs = {\n after?: InputMaybe<Scalars['String']['input']>;\n before?: InputMaybe<Scalars['String']['input']>;\n first?: InputMaybe<Scalars['Int']['input']>;\n last?: InputMaybe<Scalars['Int']['input']>;\n};\n\n\n/** Represents a `0x3::staking_pool::StakedIota` Move object on-chain. */\nexport type StakedIotaDynamicObjectFieldArgs = {\n name: DynamicFieldName;\n};\n\n\n/** Represents a `0x3::staking_pool::StakedIota` Move object on-chain. */\nexport type StakedIotaObjectsArgs = {\n after?: InputMaybe<Scalars['String']['input']>;\n before?: InputMaybe<Scalars['String']['input']>;\n filter?: InputMaybe<ObjectFilter>;\n first?: InputMaybe<Scalars['Int']['input']>;\n last?: InputMaybe<Scalars['Int']['input']>;\n};\n\n\n/** Represents a `0x3::staking_pool::StakedIota` Move object on-chain. */\nexport type StakedIotaReceivedTransactionBlocksArgs = {\n after?: InputMaybe<Scalars['String']['input']>;\n before?: InputMaybe<Scalars['String']['input']>;\n filter?: InputMaybe<TransactionBlockFilter>;\n first?: InputMaybe<Scalars['Int']['input']>;\n last?: InputMaybe<Scalars['Int']['input']>;\n scanLimit?: InputMaybe<Scalars['Int']['input']>;\n};\n\n\n/** Represents a `0x3::staking_pool::StakedIota` Move object on-chain. */\nexport type StakedIotaStakedIotasArgs = {\n after?: InputMaybe<Scalars['String']['input']>;\n before?: InputMaybe<Scalars['String']['input']>;\n first?: InputMaybe<Scalars['Int']['input']>;\n last?: InputMaybe<Scalars['Int']['input']>;\n};\n\nexport type StakedIotaConnection = {\n __typename?: 'StakedIotaConnection';\n /** A list of edges. */\n edges: Array<StakedIotaEdge>;\n /** A list of nodes. */\n nodes: Array<StakedIota>;\n /** Information to aid in pagination. */\n pageInfo: PageInfo;\n};\n\n/** An edge in a connection. */\nexport type StakedIotaEdge = {\n __typename?: 'StakedIotaEdge';\n /** A cursor for use in pagination */\n cursor: Scalars['String']['output'];\n /** The item at the end of the edge */\n node: StakedIota;\n};\n\n/** IOTA set aside to account for objects stored on-chain. */\nexport type StorageFund = {\n __typename?: 'StorageFund';\n /**\n * The portion of the storage fund that will never be refunded through\n * storage rebates.\n *\n * The system maintains an invariant that the sum of all storage fees into\n * the storage fund is equal to the sum of of all storage rebates out,\n * the total storage rebates remaining, and the non-refundable balance.\n */\n nonRefundableBalance?: Maybe<Scalars['BigInt']['output']>;\n /** Sum of storage rebates of live objects on chain. */\n totalObjectStorageRebates?: Maybe<Scalars['BigInt']['output']>;\n};\n\n/** Details of the system that are decided during genesis. */\nexport type SystemParameters = {\n __typename?: 'SystemParameters';\n /** Target duration of an epoch, in milliseconds. */\n durationMs?: Maybe<Scalars['BigInt']['output']>;\n /** The maximum number of active validators that the system supports. */\n maxValidatorCount?: Maybe<Scalars['Int']['output']>;\n /** The minimum number of active validators that the system supports. */\n minValidatorCount?: Maybe<Scalars['Int']['output']>;\n /** Minimum stake needed to become a new validator. */\n minValidatorJoiningStake?: Maybe<Scalars['BigInt']['output']>;\n /**\n * The number of epochs that a validator has to recover from having less\n * than `validatorLowStakeThreshold` stake.\n */\n validatorLowStakeGracePeriod?: Maybe<Scalars['BigInt']['output']>;\n /**\n * Validators with stake below this threshold will enter the grace period\n * (see `validatorLowStakeGracePeriod`), after which they are removed\n * from the active validator set.\n */\n validatorLowStakeThreshold?: Maybe<Scalars['BigInt']['output']>;\n /**\n * Validators with stake below this threshold will be removed from the\n * active validator set at the next epoch boundary, without a grace\n * period.\n */\n validatorVeryLowStakeThreshold?: Maybe<Scalars['BigInt']['output']>;\n};\n\n/** An argument to a programmable transaction command. */\nexport type TransactionArgument = GasCoin | Input | Result;\n\nexport type TransactionBlock = {\n __typename?: 'TransactionBlock';\n /**\n * Serialized form of this transaction's `SenderSignedData`, BCS serialized\n * and Base64 encoded.\n */\n bcs?: Maybe<Scalars['Base64']['output']>;\n /**\n * A 32-byte hash that uniquely identifies the transaction block contents,\n * encoded in Base58. This serves as a unique id for the block on\n * chain.\n */\n digest?: Maybe<Scalars['String']['output']>;\n /**\n * The effects field captures the results to the chain of executing this\n * transaction.\n */\n effects?: Maybe<TransactionBlockEffects>;\n /**\n * This field is set by senders of a transaction block. It is an epoch\n * reference that sets a deadline after which validators will no longer\n * consider the transaction valid. By default, there is no deadline for\n * when a transaction must execute.\n */\n expiration?: Maybe<Epoch>;\n /**\n * The gas input field provides information on what objects were used as\n * gas as well as the owner of the gas object(s) and information on the\n * gas price and budget.\n *\n * If the owner of the gas object(s) is not the same as the sender, the\n * transaction block is a sponsored transaction block.\n */\n gasInput?: Maybe<GasInput>;\n /**\n * The type of this transaction as well as the commands and/or parameters\n * comprising the transaction of this kind.\n */\n kind?: Maybe<TransactionBlockKind>;\n /**\n * The address corresponding to the public key that signed this\n * transaction. System transactions do not have senders.\n */\n sender?: Maybe<Address>;\n /**\n * A list of all signatures, Base64-encoded, from senders, and potentially\n * the gas owner if this is a sponsored transaction.\n */\n signatures?: Maybe<Array<Scalars['Base64']['output']>>;\n};\n\nexport type TransactionBlockConnection = {\n __typename?: 'TransactionBlockConnection';\n /** A list of edges. */\n edges: Array<TransactionBlockEdge>;\n /** A list of nodes. */\n nodes: Array<TransactionBlock>;\n /** Information to aid in pagination. */\n pageInfo: PageInfo;\n};\n\n/** An edge in a connection. */\nexport type TransactionBlockEdge = {\n __typename?: 'TransactionBlockEdge';\n /** A cursor for use in pagination */\n cursor: Scalars['String']['output'];\n /** The item at the end of the edge */\n node: TransactionBlock;\n};\n\n/** The effects representing the result of executing a transaction block. */\nexport type TransactionBlockEffects = {\n __typename?: 'TransactionBlockEffects';\n /**\n * The effect this transaction had on the balances (sum of coin values per\n * coin type) of addresses and objects.\n */\n balanceChanges: BalanceChangeConnection;\n /** Base64 encoded bcs serialization of the on-chain transaction effects. */\n bcs: Scalars['Base64']['output'];\n /** The checkpoint this transaction was finalized in. */\n checkpoint?: Maybe<Checkpoint>;\n /** Transactions whose outputs this transaction depends upon. */\n dependencies: DependencyConnection;\n /** The epoch this transaction was finalized in. */\n epoch?: Maybe<Epoch>;\n /**\n * The reason for a transaction failure, if it did fail.\n * If the error is a Move abort, the error message will be resolved to a\n * human-readable form if possible, otherwise it will fall back to\n * displaying the abort code and location.\n */\n errors?: Maybe<Scalars['String']['output']>;\n /** Events emitted by this transaction block. */\n events: EventConnection;\n /** Effects to the gas object. */\n gasEffects?: Maybe<GasEffects>;\n /**\n * The latest version of all objects (apart from packages) that have been\n * created or modified by this transaction, immediately following this\n * transaction.\n */\n lamportVersion: Scalars['UInt53']['output'];\n /** The effect this transaction had on objects on-chain. */\n objectChanges: ObjectChangeConnection;\n /** Whether the transaction executed successfully or not. */\n status?: Maybe<ExecutionStatus>;\n /**\n * Timestamp corresponding to the checkpoint this transaction was finalized\n * in.\n */\n timestamp?: Maybe<Scalars['DateTime']['output']>;\n /** The transaction that ran to produce these effects. */\n transactionBlock?: Maybe<TransactionBlock>;\n /**\n * Shared objects that are referenced by but not changed by this\n * transaction.\n */\n unchangedSharedObjects: UnchangedSharedObjectConnection;\n};\n\n\n/** The effects representing the result of executing a transaction block. */\nexport type TransactionBlockEffectsBalanceChangesArgs = {\n after?: InputMaybe<Scalars['String']['input']>;\n before?: InputMaybe<Scalars['String']['input']>;\n first?: InputMaybe<Scalars['Int']['input']>;\n last?: InputMaybe<Scalars['Int']['input']>;\n};\n\n\n/** The effects representing the result of executing a transaction block. */\nexport type TransactionBlockEffectsDependenciesArgs = {\n after?: InputMaybe<Scalars['String']['input']>;\n before?: InputMaybe<Scalars['String']['input']>;\n first?: InputMaybe<Scalars['Int']['input']>;\n last?: InputMaybe<Scalars['Int']['input']>;\n};\n\n\n/** The effects representing the result of executing a transaction block. */\nexport type TransactionBlockEffectsEventsArgs = {\n after?: InputMaybe<Scalars['String']['input']>;\n before?: InputMaybe<Scalars['String']['input']>;\n first?: InputMaybe<Scalars['Int']['input']>;\n last?: InputMaybe<Scalars['Int']['input']>;\n};\n\n\n/** The effects representing the result of executing a transaction block. */\nexport type TransactionBlockEffectsObjectChangesArgs = {\n after?: InputMaybe<Scalars['String']['input']>;\n before?: InputMaybe<Scalars['String']['input']>;\n first?: InputMaybe<Scalars['Int']['input']>;\n last?: InputMaybe<Scalars['Int']['input']>;\n};\n\n\n/** The effects representing the result of executing a transaction block. */\nexport type TransactionBlockEffectsUnchangedSharedObjectsArgs = {\n after?: InputMaybe<Scalars['String']['input']>;\n before?: InputMaybe<Scalars['String']['input']>;\n first?: InputMaybe<Scalars['Int']['input']>;\n last?: InputMaybe<Scalars['Int']['input']>;\n};\n\nexport type TransactionBlockFilter = {\n afterCheckpoint?: InputMaybe<Scalars['UInt53']['input']>;\n atCheckpoint?: InputMaybe<Scalars['UInt53']['input']>;\n beforeCheckpoint?: InputMaybe<Scalars['UInt53']['input']>;\n changedObject?: InputMaybe<Scalars['IotaAddress']['input']>;\n function?: InputMaybe<Scalars['String']['input']>;\n inputObject?: InputMaybe<Scalars['IotaAddress']['input']>;\n /**\n * An input filter selecting for either system or programmable\n * transactions.\n */\n kind?: InputMaybe<TransactionBlockKindInput>;\n recvAddress?: InputMaybe<Scalars['IotaAddress']['input']>;\n signAddress?: InputMaybe<Scalars['IotaAddress']['input']>;\n transactionIds?: InputMaybe<Array<Scalars['String']['input']>>;\n};\n\n/**\n * The kind of transaction block, either a programmable transaction or a system\n * transaction.\n */\nexport type TransactionBlockKind = AuthenticatorStateUpdateTransaction | ConsensusCommitPrologueTransaction | EndOfEpochTransaction | GenesisTransaction | ProgrammableTransactionBlock | RandomnessStateUpdateTransaction;\n\n/** An input filter selecting for either system or programmable transactions. */\nexport enum TransactionBlockKindInput {\n /** A user submitted transaction block. */\n ProgrammableTx = 'PROGRAMMABLE_TX',\n /**\n * A system transaction can be one of several types of transactions.\n * See [unions/transaction-block-kind] for more details.\n */\n SystemTx = 'SYSTEM_TX'\n}\n\nexport type TransactionInput = OwnedOrImmutable | Pure | Receiving | SharedInput;\n\nexport type TransactionInputConnection = {\n __typename?: 'TransactionInputConnection';\n /** A list of edges. */\n edges: Array<TransactionInputEdge>;\n /** A list of nodes. */\n nodes: Array<TransactionInput>;\n /** Information to aid in pagination. */\n pageInfo: PageInfo;\n};\n\n/** An edge in a connection. */\nexport type TransactionInputEdge = {\n __typename?: 'TransactionInputEdge';\n /** A cursor for use in pagination */\n cursor: Scalars['String']['output'];\n /** The item at the end of the edge */\n node: TransactionInput;\n};\n\n/**\n * The optional extra data a user can provide to a transaction dry run.\n * `sender` defaults to `0x0`. If gasObjects` is not present, or is an empty\n * list, it is substituted with a mock Coin object, `gasPrice` defaults to the\n * reference gas price, `gasBudget` defaults to the max gas budget and\n * `gasSponsor` defaults to the sender.\n */\nexport type TransactionMetadata = {\n gasBudget?: InputMaybe<Scalars['UInt53']['input']>;\n gasObjects?: InputMaybe<Array<ObjectRef>>;\n gasPrice?: InputMaybe<Scalars['UInt53']['input']>;\n gasSponsor?: InputMaybe<Scalars['IotaAddress']['input']>;\n sender?: InputMaybe<Scalars['IotaAddress']['input']>;\n};\n\n/**\n * Transfers `inputs` to `address`. All inputs must have the `store` ability\n * (allows public transfer) and must not be previously immutable or shared.\n */\nexport type TransferObjectsTransaction = {\n __typename?: 'TransferObjectsTransaction';\n /** The address to transfer to. */\n address: TransactionArgument;\n /** The objects to transfer. */\n inputs: Array<TransactionArgument>;\n};\n\n/** Information about which previous versions of a package introduced its types. */\nexport type TypeOrigin = {\n __typename?: 'TypeOrigin';\n /** The storage ID of the package that first defined this type. */\n definingId: Scalars['IotaAddress']['output'];\n /** Module defining the type. */\n module: Scalars['String']['output'];\n /** Name of the struct. */\n struct: Scalars['String']['output'];\n};\n\n/**\n * Details pertaining to shared objects that are referenced by but not changed\n * by a transaction. This information is considered part of the effects,\n * because although the transaction specifies the shared object as input,\n * consensus must schedule it and pick the version that is actually used.\n */\nexport type UnchangedSharedObject = SharedObjectCancelled | SharedObjectDelete | SharedObjectRead;\n\nexport type UnchangedSharedObjectConnection = {\n __typename?: 'UnchangedSharedObjectConnection';\n /** A list of edges. */\n edges: Array<UnchangedSharedObjectEdge>;\n /** A list of nodes. */\n nodes: Array<UnchangedSharedObject>;\n /** Information to aid in pagination. */\n pageInfo: PageInfo;\n};\n\n/** An edge in a connection. */\nexport type UnchangedSharedObjectEdge = {\n __typename?: 'UnchangedSharedObjectEdge';\n /** A cursor for use in pagination */\n cursor: Scalars['String']['output'];\n /** The item at the end of the edge */\n node: UnchangedSharedObject;\n};\n\n/** Upgrades a Move Package. */\nexport type UpgradeTransaction = {\n __typename?: 'UpgradeTransaction';\n /** ID of the package being upgraded. */\n currentPackage: Scalars['IotaAddress']['output'];\n /** IDs of the transitive dependencies of the package to be published. */\n dependencies: Array<Scalars['IotaAddress']['output']>;\n /**\n * Bytecode for the modules to be published, BCS serialized and Base64\n * encoded.\n */\n modules: Array<Scalars['Base64']['output']>;\n /** The `UpgradeTicket` authorizing the upgrade. */\n upgradeTicket: TransactionArgument;\n};\n\nexport type Validator = {\n __typename?: 'Validator';\n /** The validator's address. */\n address: Address;\n /**\n * The APY of this validator in basis points. To get the APY in\n * percentage, divide by 100.\n */\n apy?: Maybe<Scalars['Int']['output']>;\n /**\n * The number of epochs for which this validator has been below the\n * low stake threshold.\n */\n atRisk?: Maybe<Scalars['UInt53']['output']>;\n /** The fee charged by the validator for staking services. */\n commissionRate?: Maybe<Scalars['Int']['output']>;\n /**\n * Validator's set of credentials such as public keys, network addresses\n * and others.\n */\n credentials?: Maybe<ValidatorCredentials>;\n /** Validator's description. */\n description?: Maybe<Scalars['String']['output']>;\n /**\n * The validator's current exchange object. The exchange rate is used to\n * determine the amount of IOTA tokens that each past IOTA staker can\n * withdraw in the future.\n * @deprecated The exchange object is a wrapped object. Access its dynamic fields through the `exchangeRatesTable` query.\n */\n exchangeRates?: Maybe<MoveObject>;\n /** Number of exchange rates in the table. */\n exchangeRatesSize?: Maybe<Scalars['UInt53']['output']>;\n /**\n * A wrapped object containing the validator's exchange rates. This is a\n * table from epoch number to `PoolTokenExchangeRate` value. The\n * exchange rate is used to determine the amount of IOTA tokens that\n * each past IOTA staker can withdraw in the future.\n */\n exchangeRatesTable?: Maybe<Owner>;\n /** The reference gas price for this epoch. */\n gasPrice?: Maybe<Scalars['BigInt']['output']>;\n /** Validator's url containing their custom image. */\n imageUrl?: Maybe<Scalars['String']['output']>;\n /** Validator's name. */\n name?: Maybe<Scalars['String']['output']>;\n /** The proposed next epoch fee for the validator's staking services. */\n nextEpochCommissionRate?: Maybe<Scalars['Int']['output']>;\n /** Validator's set of credentials for the next epoch. */\n nextEpochCredentials?: Maybe<ValidatorCredentials>;\n /** The validator's gas price quote for the next epoch. */\n nextEpochGasPrice?: Maybe<Scalars['BigInt']['output']>;\n /**\n * The total number of IOTA tokens in this pool plus\n * the pending stake amount for this epoch.\n */\n nextEpochStake?: Maybe<Scalars['BigInt']['output']>;\n /**\n * The validator's current valid `Cap` object. Validators can delegate\n * the operation ability to another address. The address holding this `Cap`\n * object can then update the reference gas price and tallying rule on\n * behalf of the validator.\n */\n operationCap?: Maybe<MoveObject>;\n /**\n * Pending pool token withdrawn during the current epoch, emptied at epoch\n * boundaries.\n */\n pendingPoolTokenWithdraw?: Maybe<Scalars['BigInt']['output']>;\n /** Pending stake amount for this epoch. */\n pendingStake?: Maybe<Scalars['BigInt']['output']>;\n /**\n * Pending stake withdrawn during the current epoch, emptied at epoch\n * boundaries.\n */\n pendingTotalIotaWithdraw?: Maybe<Scalars['BigInt']['output']>;\n /** Total number of pool tokens issued by the pool. */\n poolTokenBalance?: Maybe<Scalars['BigInt']['output']>;\n /** Validator's homepage URL. */\n projectUrl?: Maybe<Scalars['String']['output']>;\n /** The addresses of other validators this validator has reported. */\n reportRecords: AddressConnection;\n /** The epoch stake rewards will be added here at the end of each epoch. */\n rewardsPool?: Maybe<Scalars['BigInt']['output']>;\n /**\n * The validator's current staking pool object, used to track the amount of\n * stake and to compound staking rewards.\n * @deprecated The staking pool is a wrapped object. Access its fields directly on the `Validator` type.\n */\n stakingPool?: Maybe<MoveObject>;\n /** The epoch at which this pool became active. */\n stakingPoolActivationEpoch?: Maybe<Scalars['UInt53']['output']>;\n /** The ID of this validator's `0x3::staking_pool::StakingPoolV1`. */\n stakingPoolId: Scalars['IotaAddress']['output'];\n /** The total number of IOTA tokens in this pool. */\n stakingPoolIotaBalance?: Maybe<Scalars['BigInt']['output']>;\n /**\n * The voting power of this validator in basis points (e.g., 100 = 1%\n * voting power).\n */\n votingPower?: Maybe<Scalars['Int']['output']>;\n};\n\n\nexport type ValidatorReportRecordsArgs = {\n after?: InputMaybe<Scalars['String']['input']>;\n before?: InputMaybe<Scalars['String']['input']>;\n first?: InputMaybe<Scalars['Int']['input']>;\n last?: InputMaybe<Scalars['Int']['input']>;\n};\n\nexport type ValidatorConnection = {\n __typename?: 'ValidatorConnection';\n /** A list of edges. */\n edges: Array<ValidatorEdge>;\n /** A list of nodes. */\n nodes: Array<Validator>;\n /** Information to aid in pagination. */\n pageInfo: PageInfo;\n};\n\n/** The credentials related fields associated with a validator. */\nexport type ValidatorCredentials = {\n __typename?: 'ValidatorCredentials';\n authorityPubKey?: Maybe<Scalars['Base64']['output']>;\n netAddress?: Maybe<Scalars['String']['output']>;\n networkPubKey?: Maybe<Scalars['Base64']['output']>;\n p2PAddress?: Maybe<Scalars['String']['output']>;\n primaryAddress?: Maybe<Scalars['String']['output']>;\n proofOfPossession?: Maybe<Scalars['Base64']['output']>;\n protocolPubKey?: Maybe<Scalars['Base64']['output']>;\n};\n\n/** An edge in a connection. */\nexport type ValidatorEdge = {\n __typename?: 'ValidatorEdge';\n /** A cursor for use in pagination */\n cursor: Scalars['String']['output'];\n /** The item at the end of the edge */\n node: Validator;\n};\n\n/** Representation of `0x3::validator_set::ValidatorSet`. */\nexport type ValidatorSet = {\n __typename?: 'ValidatorSet';\n /** The current set of active validators. */\n activeValidators: ValidatorConnection;\n /** Object ID of the `Table` storing the inactive staking pools. */\n inactivePoolsId?: Maybe<Scalars['IotaAddress']['output']>;\n /** Size of the inactive pools `Table`. */\n inactivePoolsSize?: Maybe<Scalars['Int']['output']>;\n /**\n * Object ID of the wrapped object `TableVec` storing the pending active\n * validators.\n */\n pendingActiveValidatorsId?: Maybe<Scalars['IotaAddress']['output']>;\n /** Size of the pending active validators table. */\n pendingActiveValidatorsSize?: Maybe<Scalars['Int']['output']>;\n /**\n * Validators that are pending removal from the active validator set,\n * expressed as indices in to `activeValidators`.\n */\n pendingRemovals?: Maybe<Array<Scalars['Int']['output']>>;\n /**\n * Object ID of the `Table` storing the mapping from staking pool ids to\n * the addresses of the corresponding validators. This is needed\n * because a validator's address can potentially change but the object\n * ID of its pool will not.\n */\n stakingPoolMappingsId?: Maybe<Scalars['IotaAddress']['output']>;\n /** Size of the stake pool mappings `Table`. */\n stakingPoolMappingsSize?: Maybe<Scalars['Int']['output']>;\n /**\n * Total amount of stake for all active validators at the beginning of the\n * epoch.\n */\n totalStake?: Maybe<Scalars['BigInt']['output']>;\n /** Object ID of the `Table` storing the validator candidates. */\n validatorCandidatesId?: Maybe<Scalars['IotaAddress']['output']>;\n /** Size of the validator candidates `Table`. */\n validatorCandidatesSize?: Maybe<Scalars['Int']['output']>;\n};\n\n\n/** Representation of `0x3::validator_set::ValidatorSet`. */\nexport type ValidatorSetActiveValidatorsArgs = {\n after?: InputMaybe<Scalars['String']['input']>;\n before?: InputMaybe<Scalars['String']['input']>;\n first?: InputMaybe<Scalars['Int']['input']>;\n last?: InputMaybe<Scalars['Int']['input']>;\n};\n\n/**\n * An enum that specifies the intent scope to be used to parse the bytes for\n * signature verification.\n */\nexport enum ZkLoginIntentScope {\n /** Indicates that the bytes are to be parsed as a personal message. */\n PersonalMessage = 'PERSONAL_MESSAGE',\n /** Indicates that the bytes are to be parsed as transaction data bytes. */\n TransactionData = 'TRANSACTION_DATA'\n}\n\n/** The result of the zkLogin signature verification. */\nexport type ZkLoginVerifyResult = {\n __typename?: 'ZkLoginVerifyResult';\n /** The errors field captures any verification error */\n errors: Array<Scalars['String']['output']>;\n /** The boolean result of the verification. If true, errors should be empty. */\n success: Scalars['Boolean']['output'];\n};\n\nexport type GetCheckpointQueryVariables = Exact<{\n id?: InputMaybe<CheckpointId>;\n}>;\n\n\nexport type GetCheckpointQuery = { __typename?: 'Query', checkpoint?: { __typename?: 'Checkpoint', digest: string, networkTotalTransactions?: any | null, previousCheckpointDigest?: string | null, sequenceNumber: any, timestamp: any, validatorSignatures: any, epoch?: { __typename?: 'Epoch', epochId: any } | null, rollingGasSummary?: { __typename?: 'GasCostSummary', computationCost?: any | null, computationCostBurned?: any | null, storageCost?: any | null, storageRebate?: any | null, nonRefundableStorageFee?: any | null } | null, transactionBlocks: { __typename?: 'TransactionBlockConnection', pageInfo: { __typename?: 'PageInfo', hasNextPage: boolean, endCursor?: string | null }, nodes: Array<{ __typename?: 'TransactionBlock', digest?: string | null }> }, endOfEpoch: { __typename?: 'TransactionBlockConnection', nodes: Array<{ __typename?: 'TransactionBlock', kind?: { __typename: 'AuthenticatorStateUpdateTransaction' } | { __typename: 'ConsensusCommitPrologueTransaction' } | { __typename: 'EndOfEpochTransaction', transactions: { __typename?: 'EndOfEpochTransactionKindConnection', nodes: Array<{ __typename: 'AuthenticatorStateCreateTransaction' } | { __typename: 'AuthenticatorStateExpireTransaction' } | { __typename: 'BridgeCommitteeInitTransaction' } | { __typename: 'BridgeStateCreateTransaction' } | { __typename: 'ChangeEpochTransaction', epoch?: { __typename?: 'Epoch', epochId: any, validatorSet?: { __typename?: 'ValidatorSet', activeValidators: { __typename?: 'ValidatorConnection', pageInfo: { __typename?: 'PageInfo', hasNextPage: boolean, endCursor?: string | null }, nodes: Array<{ __typename?: 'Validator', votingPower?: number | null, credentials?: { __typename?: 'ValidatorCredentials', protocolPubKey?: any | null } | null }> } } | null, protocolConfigs: { __typename?: 'ProtocolConfigs', protocolVersion: any } } | null }> } } | { __typename: 'GenesisTransaction' } | { __typename: 'ProgrammableTransactionBlock' } | { __typename: 'RandomnessStateUpdateTransaction' } | null }> } } | null };\n\nexport type GetCheckpointsQueryVariables = Exact<{\n first?: InputMaybe<Scalars['Int']['input']>;\n before?: InputMaybe<Scalars['String']['input']>;\n last?: InputMaybe<Scalars['Int']['input']>;\n after?: InputMaybe<Scalars['String']['input']>;\n}>;\n\n\nexport type GetCheckpointsQuery = { __typename?: 'Query', checkpoints: { __typename?: 'CheckpointConnection', pageInfo: { __typename?: 'PageInfo', startCursor?: string | null, endCursor?: string | null, hasNextPage: boolean, hasPreviousPage: boolean }, nodes: Array<{ __typename?: 'Checkpoint', digest: string, networkTotalTransactions?: any | null, previousCheckpointDigest?: string | null, sequenceNumber: any, timestamp: any, validatorSignatures: any, epoch?: { __typename?: 'Epoch', epochId: any } | null, rollingGasSummary?: { __typename?: 'GasCostSummary', computationCost?: any | null, computationCostBurned?: any | null, storageCost?: any | null, storageRebate?: any | null, nonRefundableStorageFee?: any | null } | null, transactionBlocks: { __typename?: 'TransactionBlockConnection', pageInfo: { __typename?: 'PageInfo', hasNextPage: boolean, endCursor?: string | null }, nodes: Array<{ __typename?: 'TransactionBlock', digest?: string | null }> }, endOfEpoch: { __typename?: 'TransactionBlockConnection', nodes: Array<{ __typename?: 'TransactionBlock', kind?: { __typename: 'AuthenticatorStateUpdateTransaction' } | { __typename: 'ConsensusCommitPrologueTransaction' } | { __typename: 'EndOfEpochTransaction', transactions: { __typename?: 'EndOfEpochTransactionKindConnection', nodes: Array<{ __typename: 'AuthenticatorStateCreateTransaction' } | { __typename: 'AuthenticatorStateExpireTransaction' } | { __typename: 'BridgeCommitteeInitTransaction' } | { __typename: 'BridgeStateCreateTransaction' } | { __typename: 'ChangeEpochTransaction', epoch?: { __typename?: 'Epoch', epochId: any, validatorSet?: { __typename?: 'ValidatorSet', activeValidators: { __typename?: 'ValidatorConnection', pageInfo: { __typename?: 'PageInfo', hasNextPage: boolean, endCursor?: string | null }, nodes: Array<{ __typename?: 'Validator', votingPower?: number | null, credentials?: { __typename?: 'ValidatorCredentials', protocolPubKey?: any | null } | null }> } } | null, protocolConfigs: { __typename?: 'ProtocolConfigs', protocolVersion: any } } | null }> } } | { __typename: 'GenesisTransaction' } | { __typename: 'ProgrammableTransactionBlock' } | { __typename: 'RandomnessStateUpdateTransaction' } | null }> } }> } };\n\nexport type PaginateCheckpointTransactionBlocksQueryVariables = Exact<{\n id?: InputMaybe<CheckpointId>;\n after?: InputMaybe<Scalars['String']['input']>;\n}>;\n\n\nexport type PaginateCheckpointTransactionBlocksQuery = { __typename?: 'Query', checkpoint?: { __typename?: 'Checkpoint', transactionBlocks: { __typename?: 'TransactionBlockConnection', pageInfo: { __typename?: 'PageInfo', hasNextPage: boolean, endCursor?: string | null }, nodes: Array<{ __typename?: 'TransactionBlock', digest?: string | null }> } } | null };\n\nexport type Rpc_Checkpoint_FieldsFragment = { __typename?: 'Checkpoint', digest: string, networkTotalTransactions?: any | null, previousCheckpointDigest?: string | null, sequenceNumber: any, timestamp: any, validatorSignatures: any, epoch?: { __typename?: 'Epoch', epochId: any } | null, rollingGasSummary?: { __typename?: 'GasCostSummary', computationCost?: any | null, computationCostBurned?: any | null, storageCost?: any | null, storageRebate?: any | null, nonRefundableStorageFee?: any | null } | null, transactionBlocks: { __typename?: 'TransactionBlockConnection', pageInfo: { __typename?: 'PageInfo', hasNextPage: boolean, endCursor?: string | null }, nodes: Array<{ __typename?: 'TransactionBlock', digest?: string | null }> }, endOfEpoch: { __typename?: 'TransactionBlockConnection', nodes: Array<{ __typename?: 'TransactionBlock', kind?: { __typename: 'AuthenticatorStateUpdateTransaction' } | { __typename: 'ConsensusCommitPrologueTransaction' } | { __typename: 'EndOfEpochTransaction', transactions: { __typename?: 'EndOfEpochTransactionKindConnection', nodes: Array<{ __typename: 'AuthenticatorStateCreateTransaction' } | { __typename: 'AuthenticatorStateExpireTransaction' } | { __typename: 'BridgeCommitteeInitTransaction' } | { __typename: 'BridgeStateCreateTransaction' } | { __typename: 'ChangeEpochTransaction', epoch?: { __typename?: 'Epoch', epochId: any, validatorSet?: { __typename?: 'ValidatorSet', activeValidators: { __typename?: 'ValidatorConnection', pageInfo: { __typename?: 'PageInfo', hasNextPage: boolean, endCursor?: string | null }, nodes: Array<{ __typename?: 'Validator', votingPower?: number | null, credentials?: { __typename?: 'ValidatorCredentials', protocolPubKey?: any | null } | null }> } } | null, protocolConfigs: { __typename?: 'ProtocolConfigs', protocolVersion: any } } | null }> } } | { __typename: 'GenesisTransaction' } | { __typename: 'ProgrammableTransactionBlock' } | { __typename: 'RandomnessStateUpdateTransaction' } | null }> } };\n\nexport type DevInspectTransactionBlockQueryVariables = Exact<{\n txBytes: Scalars['String']['input'];\n txMeta: TransactionMetadata;\n showBalanceChanges?: InputMaybe<Scalars['Boolean']['input']>;\n showEffects?: InputMaybe<Scalars['Boolean']['input']>;\n showRawEffects?: InputMaybe<Scalars['Boolean']['input']>;\n showEvents?: InputMaybe<Scalars['Boolean']['input']>;\n showInput?: InputMaybe<Scalars['Boolean']['input']>;\n showObjectChanges?: InputMaybe<Scalars['Boolean']['input']>;\n showRawInput?: InputMaybe<Scalars['Boolean']['input']>;\n}>;\n\n\nexport type DevInspectTransactionBlockQuery = { __typename?: 'Query', dryRunTransactionBlock: { __typename?: 'DryRunResult', error?: string | null, results?: Array<{ __typename?: 'DryRunEffect', mutatedReferences?: Array<{ __typename?: 'DryRunMutation', bcs: any, input: { __typename: 'GasCoin' } | { __typename: 'Input', inputIndex: number } | { __typename: 'Result', cmd: number, resultIndex?: number | null }, type: { __typename?: 'MoveType', repr: string } }> | null, returnValues?: Array<{ __typename?: 'DryRunReturn', bcs: any, type: { __typename?: 'MoveType', repr: string } }> | null }> | null, transaction?: { __typename?: 'TransactionBlock', digest?: string | null, signatures?: Array<any> | null, rawTransaction?: any | null, sender?: { __typename?: 'Address', address: any } | null, effects?: { __typename?: 'TransactionBlockEffects', bcs?: any, timestamp?: any | null, events?: { __typename?: 'EventConnection', pageInfo: { __typename?: 'PageInfo', hasNextPage: boolean, endCursor?: string | null }, nodes: Array<{ __typename?: 'Event', json: any, bcs: any, timestamp?: any | null, sendingModule?: { __typename?: 'MoveModule', name: string, package: { __typename?: 'MovePackage', address: any } } | null, sender?: { __typename?: 'Address', address: any } | null, type: { __typename?: 'MoveType', repr: string } }> }, checkpoint?: { __typename?: 'Checkpoint', sequenceNumber: any } | null, balanceChanges?: { __typename?: 'BalanceChangeConnection', pageInfo: { __typename?: 'PageInfo', hasNextPage: boolean, endCursor?: string | null }, nodes: Array<{ __typename?: 'BalanceChange', amount?: any | null, coinType?: { __typename?: 'MoveType', repr: string } | null, owner?: { __typename?: 'Owner', asObject?: { __typename?: 'Object', address: any } | null, asAddress?: { __typename?: 'Address', address: any } | null } | null }> }, objectChanges?: { __typename?: 'ObjectChangeConnection', pageInfo: { __typename?: 'PageInfo', hasNextPage: boolean, endCursor?: string | null }, nodes: Array<{ __typename?: 'ObjectChange', address: any, inputState?: { __typename?: 'Object', version: any, asMoveObject?: { __typename?: 'MoveObject', contents?: { __typename?: 'MoveValue', type: { __typename?: 'MoveType', repr: string } } | null } | null } | null, outputState?: { __typename?: 'Object', asMoveObject?: { __typename?: 'MoveObject', contents?: { __typename?: 'MoveValue', type: { __typename?: 'MoveType', repr: string } } | null } | null, asMovePackage?: { __typename?: 'MovePackage', modules?: { __typename?: 'MoveModuleConnection', nodes: Array<{ __typename?: 'MoveModule', name: string }> } | null } | null } | null }> } } | null } | null } };\n\nexport type DryRunTransactionBlockQueryVariables = Exact<{\n txBytes: Scalars['String']['input'];\n showBalanceChanges?: InputMaybe<Scalars['Boolean']['input']>;\n showEffects?: InputMaybe<Scalars['Boolean']['input']>;\n showRawEffects?: InputMaybe<Scalars['Boolean']['input']>;\n showEvents?: InputMaybe<Scalars['Boolean']['input']>;\n showInput?: InputMaybe<Scalars['Boolean']['input']>;\n showObjectChanges?: InputMaybe<Scalars['Boolean']['input']>;\n showRawInput?: InputMaybe<Scalars['Boolean']['input']>;\n}>;\n\n\nexport type DryRunTransactionBlockQuery = { __typename?: 'Query', dryRunTransactionBlock: { __typename?: 'DryRunResult', error?: string | null, transaction?: { __typename?: 'TransactionBlock', digest?: string | null, signatures?: Array<any> | null, rawTransaction?: any | null, sender?: { __typename?: 'Address', address: any } | null, effects?: { __typename?: 'TransactionBlockEffects', bcs?: any, timestamp?: any | null, events?: { __typename?: 'EventConnection', pageInfo: { __typename?: 'PageInfo', hasNextPage: boolean, endCursor?: string | null }, nodes: Array<{ __typename?: 'Event', json: any, bcs: any, timestamp?: any | null, sendingModule?: { __typename?: 'MoveModule', name: string, package: { __typename?: 'MovePackage', address: any } } | null, sender?: { __typename?: 'Address', address: any } | null, type: { __typename?: 'MoveType', repr: string } }> }, checkpoint?: { __typename?: 'Checkpoint', sequenceNumber: any } | null, balanceChanges?: { __typename?: 'BalanceChangeConnection', pageInfo: { __typename?: 'PageInfo', hasNextPage: boolean, endCursor?: string | null }, nodes: Array<{ __typename?: 'BalanceChange', amount?: any | null, coinType?: { __typename?: 'MoveType', repr: string } | null, owner?: { __typename?: 'Owner', asObject?: { __typename?: 'Object', address: any } | null, asAddress?: { __typename?: 'Address', address: any } | null } | null }> }, objectChanges?: { __typename?: 'ObjectChangeConnection', pageInfo: { __typename?: 'PageInfo', hasNextPage: boolean, endCursor?: string | null }, nodes: Array<{ __typename?: 'ObjectChange', address: any, inputState?: { __typename?: 'Object', version: any, asMoveObject?: { __typename?: 'MoveObject', contents?: { __typename?: 'MoveValue', type: { __typename?: 'MoveType', repr: string } } | null } | null } | null, outputState?: { __typename?: 'Object', asMoveObject?: { __typename?: 'MoveObject', contents?: { __typename?: 'MoveValue', type: { __typename?: 'MoveType', repr: string } } | null } | null, asMovePackage?: { __typename?: 'MovePackage', modules?: { __typename?: 'MoveModuleConnection', nodes: Array<{ __typename?: 'MoveModule', name: string }> } | null } | null } | null }> } } | null } | null } };\n\nexport type ExecuteTransactionBlockMutationVariables = Exact<{\n txBytes: Scalars['String']['input'];\n signatures: Array<Scalars['String']['input']> | Scalars['String']['input'];\n showBalanceChanges?: InputMaybe<Scalars['Boolean']['input']>;\n showEffects?: InputMaybe<Scalars['Boolean']['input']>;\n showRawEffects?: InputMaybe<Scalars['Boolean']['input']>;\n showEvents?: InputMaybe<Scalars['Boolean']['input']>;\n showInput?: InputMaybe<Scalars['Boolean']['input']>;\n showObjectChanges?: InputMaybe<Scalars['Boolean']['input']>;\n showRawInput?: InputMaybe<Scalars['Boolean']['input']>;\n}>;\n\n\nexport type ExecuteTransactionBlockMutation = { __typename?: 'Mutation', executeTransactionBlock: { __typename?: 'ExecutionResult', errors?: Array<string> | null, effects: { __typename?: 'TransactionBlockEffects', transactionBlock?: { __typename?: 'TransactionBlock', digest?: string | null, signatures?: Array<any> | null, rawTransaction?: any | null, sender?: { __typename?: 'Address', address: any } | null, effects?: { __typename?: 'TransactionBlockEffects', bcs?: any, timestamp?: any | null, events?: { __typename?: 'EventConnection', pageInfo: { __typename?: 'PageInfo', hasNextPage: boolean, endCursor?: string | null }, nodes: Array<{ __typename?: 'Event', json: any, bcs: any, timestamp?: any | null, sendingModule?: { __typename?: 'MoveModule', name: string, package: { __typename?: 'MovePackage', address: any } } | null, sender?: { __typename?: 'Address', address: any } | null, type: { __typename?: 'MoveType', repr: string } }> }, checkpoint?: { __typename?: 'Checkpoint', sequenceNumber: any } | null, balanceChanges?: { __typename?: 'BalanceChangeConnection', pageInfo: { __typename?: 'PageInfo', hasNextPage: boolean, endCursor?: string | null }, nodes: Array<{ __typename?: 'BalanceChange', amount?: any | null, coinType?: { __typename?: 'MoveType', repr: string } | null, owner?: { __typename?: 'Owner', asObject?: { __typename?: 'Object', address: any } | null, asAddress?: { __typename?: 'Address', address: any } | null } | null }> }, objectChanges?: { __typename?: 'ObjectChangeConnection', pageInfo: { __typename?: 'PageInfo', hasNextPage: boolean, endCursor?: string | null }, nodes: Array<{ __typename?: 'ObjectChange', address: any, inputState?: { __typename?: 'Object', version: any, asMoveObject?: { __typename?: 'MoveObject', contents?: { __typename?: 'MoveValue', type: { __typename?: 'MoveType', repr: string } } | null } | null } | null, outputState?: { __typename?: 'Object', asMoveObject?: { __typename?: 'MoveObject', contents?: { __typename?: 'MoveValue', type: { __typename?: 'MoveType', repr: string } } | null } | null, asMovePackage?: { __typename?: 'MovePackage', modules?: { __typename?: 'MoveModuleConnection', nodes: Array<{ __typename?: 'MoveModule', name: string }> } | null } | null } | null }> } } | null } | null } } };\n\nexport type GetAllBalancesQueryVariables = Exact<{\n owner: Scalars['IotaAddress']['input'];\n limit?: InputMaybe<Scalars['Int']['input']>;\n cursor?: InputMaybe<Scalars['String']['input']>;\n}>;\n\n\nexport type GetAllBalancesQuery = { __typename?: 'Query', address?: { __typename?: 'Address', balances: { __typename?: 'BalanceConnection', pageInfo: { __typename?: 'PageInfo', hasNextPage: boolean, endCursor?: string | null }, nodes: Array<{ __typename?: 'Balance', coinObjectCount?: any | null, totalBalance?: any | null, coinType: { __typename?: 'MoveType', repr: string } }> } } | null };\n\nexport type GetBalanceQueryVariables = Exact<{\n owner: Scalars['IotaAddress']['input'];\n type?: InputMaybe<Scalars['String']['input']>;\n}>;\n\n\nexport type GetBalanceQuery = { __typename?: 'Query', address?: { __typename?: 'Address', balance?: { __typename?: 'Balance', coinObjectCount?: any | null, totalBalance?: any | null, coinType: { __typename?: 'MoveType', repr: string } } | null } | null };\n\nexport type GetChainIdentifierQueryVariables = Exact<{ [key: string]: never; }>;\n\n\nexport type GetChainIdentifierQuery = { __typename?: 'Query', chainIdentifier: string };\n\nexport type GetCoinMetadataQueryVariables = Exact<{\n coinType: Scalars['String']['input'];\n}>;\n\n\nexport type GetCoinMetadataQuery = { __typename?: 'Query', coinMetadata?: { __typename?: 'CoinMetadata', decimals?: number | null, name?: string | null, symbol?: string | null, description?: string | null, iconUrl?: string | null, address: any } | null };\n\nexport type GetCoinsQueryVariables = Exact<{\n owner: Scalars['IotaAddress']['input'];\n first?: InputMaybe<Scalars['Int']['input']>;\n cursor?: InputMaybe<Scalars['String']['input']>;\n type?: InputMaybe<Scalars['String']['input']>;\n}>;\n\n\nexport type GetCoinsQuery = { __typename?: 'Query', address?: { __typename?: 'Address', address: any, coins: { __typename?: 'CoinConnection', pageInfo: { __typename?: 'PageInfo', hasNextPage: boolean, endCursor?: string | null }, nodes: Array<{ __typename?: 'Coin', coinBalance?: any | null, address: any, version: any, digest?: string | null, contents?: { __typename?: 'MoveValue', type: { __typename?: 'MoveType', repr: string } } | null, previousTransactionBlock?: { __typename?: 'TransactionBlock', digest?: string | null } | null }> } } | null };\n\nexport type GetCommitteeInfoQueryVariables = Exact<{\n epochId?: InputMaybe<Scalars['UInt53']['input']>;\n after?: InputMaybe<Scalars['String']['input']>;\n}>;\n\n\nexport type GetCommitteeInfoQuery = { __typename?: 'Query', epoch?: { __typename?: 'Epoch', epochId: any, validatorSet?: { __typename?: 'ValidatorSet', activeValidators: { __typename?: 'ValidatorConnection', pageInfo: { __typename?: 'PageInfo', hasNextPage: boolean, endCursor?: string | null }, nodes: Array<{ __typename?: 'Validator', votingPower?: number | null, credentials?: { __typename?: 'ValidatorCredentials', authorityPubKey?: any | null } | null }> } } | null } | null };\n\nexport type GetCurrentEpochQueryVariables = Exact<{ [key: string]: never; }>;\n\n\nexport type GetCurrentEpochQuery = { __typename?: 'Query', epoch?: { __typename?: 'Epoch', epochId: any, totalTransactions?: any | null, startTimestamp: any, endTimestamp?: any | null, referenceGasPrice?: any | null, validatorSet?: { __typename?: 'ValidatorSet', activeValidators: { __typename?: 'ValidatorConnection', pageInfo: { __typename?: 'PageInfo', hasNextPage: boolean, endCursor?: string | null }, nodes: Array<{ __typename?: 'Validator', atRisk?: any | null, commissionRate?: number | null, exchangeRatesSize?: any | null, description?: string | null, gasPrice?: any | null, imageUrl?: string | null, name?: string | null, nextEpochCommissionRate?: number | null, nextEpochGasPrice?: any | null, nextEpochStake?: any | null, pendingPoolTokenWithdraw?: any | null, pendingStake?: any | null, pendingTotalIotaWithdraw?: any | null, poolTokenBalance?: any | null, projectUrl?: string | null, rewardsPool?: any | null, stakingPoolActivationEpoch?: any | null, stakingPoolIotaBalance?: any | null, votingPower?: number | null, exchangeRates?: { __typename?: 'MoveObject', address: any, contents?: { __typename?: 'MoveValue', json: any } | null } | null, credentials?: { __typename?: 'ValidatorCredentials', netAddress?: string | null, networkPubKey?: any | null, p2PAddress?: string | null, primaryAddress?: string | null, authorityPubKey?: any | null, proofOfPossession?: any | null, protocolPubKey?: any | null } | null, nextEpochCredentials?: { __typename?: 'ValidatorCredentials', netAddress?: string | null, networkPubKey?: any | null, p2PAddress?: string | null, primaryAddress?: string | null, authorityPubKey?: any | null, proofOfPossession?: any | null, protocolPubKey?: any | null } | null, operationCap?: { __typename?: 'MoveObject', address: any } | null, stakingPool?: { __typename?: 'MoveObject', address: any } | null, address: { __typename?: 'Address', address: any } }> } } | null, firstCheckpoint: { __typename?: 'CheckpointConnection', nodes: Array<{ __typename?: 'Checkpoint', sequenceNumber: any }> } } | null };\n\nexport type PaginateEpochValidatorsQueryVariables = Exact<{\n id: Scalars['UInt53']['input'];\n after?: InputMaybe<Scalars['String']['input']>;\n}>;\n\n\nexport type PaginateEpochValidatorsQuery = { __typename?: 'Query', epoch?: { __typename?: 'Epoch', validatorSet?: { __typename?: 'ValidatorSet', activeValidators: { __typename?: 'ValidatorConnection', pageInfo: { __typename?: 'PageInfo', hasNextPage: boolean, endCursor?: string | null }, nodes: Array<{ __typename?: 'Validator', atRisk?: any | null, commissionRate?: number | null, exchangeRatesSize?: any | null, description?: string | null, gasPrice?: any | null, imageUrl?: string | null, name?: string | null, nextEpochCommissionRate?: number | null, nextEpochGasPrice?: any | null, nextEpochStake?: any | null, pendingPoolTokenWithdraw?: any | null, pendingStake?: any | null, pendingTotalIotaWithdraw?: any | null, poolTokenBalance?: any | null, projectUrl?: string | null, rewardsPool?: any | null, stakingPoolActivationEpoch?: any | null, stakingPoolIotaBalance?: any | null, votingPower?: number | null, exchangeRates?: { __typename?: 'MoveObject', address: any, contents?: { __typename?: 'MoveValue', json: any } | null } | null, credentials?: { __typename?: 'ValidatorCredentials', netAddress?: string | null, networkPubKey?: any | null, p2PAddress?: string | null, primaryAddress?: string | null, authorityPubKey?: any | null, proofOfPossession?: any | null, protocolPubKey?: any | null } | null, nextEpochCredentials?: { __typename?: 'ValidatorCredentials', netAddress?: string | null, networkPubKey?: any | null, p2PAddress?: string | null, primaryAddress?: string | null, authorityPubKey?: any | null, proofOfPossession?: any | null, protocolPubKey?: any | null } | null, operationCap?: { __typename?: 'MoveObject', address: any } | null, stakingPool?: { __typename?: 'MoveObject', address: any } | null, address: { __typename?: 'Address', address: any } }> } } | null } | null };\n\nexport type Rpc_Validator_FieldsFragment = { __typename?: 'Validator', atRisk?: any | null, commissionRate?: number | null, exchangeRatesSize?: any | null, description?: string | null, gasPrice?: any | null, imageUrl?: string | null, name?: string | null, nextEpochCommissionRate?: number | null, nextEpochGasPrice?: any | null, nextEpochStake?: any | null, pendingPoolTokenWithdraw?: any | null, pendingStake?: any | null, pendingTotalIotaWithdraw?: any | null, poolTokenBalance?: any | null, projectUrl?: string | null, rewardsPool?: any | null, stakingPoolActivationEpoch?: any | null, stakingPoolIotaBalance?: any | null, votingPower?: number | null, exchangeRates?: { __typename?: 'MoveObject', address: any, contents?: { __typename?: 'MoveValue', json: any } | null } | null, credentials?: { __typename?: 'ValidatorCredentials', netAddress?: string | null, networkPubKey?: any | null, p2PAddress?: string | null, primaryAddress?: string | null, authorityPubKey?: any | null, proofOfPossession?: any | null, protocolPubKey?: any | null } | null, nextEpochCredentials?: { __typename?: 'ValidatorCredentials', netAddress?: string | null, networkPubKey?: any | null, p2PAddress?: string | null, primaryAddress?: string | null, authorityPubKey?: any | null, proofOfPossession?: any | null, protocolPubKey?: any | null } | null, operationCap?: { __typename?: 'MoveObject', address: any } | null, stakingPool?: { __typename?: 'MoveObject', address: any } | null, address: { __typename?: 'Address', address: any } };\n\nexport type Rpc_Credential_FieldsFragment = { __typename?: 'ValidatorCredentials', netAddress?: string | null, networkPubKey?: any | null, p2PAddress?: string | null, primaryAddress?: string | null, authorityPubKey?: any | null, proofOfPossession?: any | null, protocolPubKey?: any | null };\n\nexport type GetTypeLayoutQueryVariables = Exact<{\n type: Scalars['String']['input'];\n}>;\n\n\nexport type GetTypeLayoutQuery = { __typename?: 'Query', type: { __typename?: 'MoveType', layout: any } };\n\nexport type GetDynamicFieldObjectQueryVariables = Exact<{\n parentId: Scalars['IotaAddress']['input'];\n name: DynamicFieldName;\n}>;\n\n\nexport type GetDynamicFieldObjectQuery = { __typename?: 'Query', owner?: { __typename?: 'Owner', dynamicObjectField?: { __typename?: 'DynamicField', value?: { __typename: 'MoveObject', owner?: { __typename: 'AddressOwner' } | { __typename: 'Immutable' } | { __typename: 'Parent', parent?: { __typename?: 'Object', address: any, digest?: string | null, version: any, storageRebate?: any | null, owner?: { __typename: 'AddressOwner' } | { __typename: 'Immutable' } | { __typename: 'Parent', parent?: { __typename?: 'Object', address: any } | null } | { __typename: 'Shared' } | null, previousTransactionBlock?: { __typename?: 'TransactionBlock', digest?: string | null } | null, asMoveObject?: { __typename?: 'MoveObject', contents?: { __typename?: 'MoveValue', data: any, type: { __typename?: 'MoveType', repr: string, layout: any } } | null } | null } | null } | { __typename: 'Shared' } | null } | { __typename: 'MoveValue' } | null } | null } | null };\n\nexport type GetDynamicFieldsQueryVariables = Exact<{\n parentId: Scalars['IotaAddress']['input'];\n first?: InputMaybe<Scalars['Int']['input']>;\n cursor?: InputMaybe<Scalars['String']['input']>;\n}>;\n\n\nexport type GetDynamicFieldsQuery = { __typename?: 'Query', owner?: { __typename?: 'Owner', dynamicFields: { __typename?: 'DynamicFieldConnection', pageInfo: { __typename?: 'PageInfo', hasNextPage: boolean, endCursor?: string | null }, nodes: Array<{ __typename?: 'DynamicField', name?: { __typename?: 'MoveValue', bcs: any, json: any, type: { __typename?: 'MoveType', layout: any, repr: string } } | null, value?: { __typename: 'MoveObject', address: any, digest?: string | null, version: any, contents?: { __typename?: 'MoveValue', json: any, type: { __typename?: 'MoveType', repr: string } } | null } | { __typename: 'MoveValue', json: any, type: { __typename?: 'MoveType', repr: string } } | null }> } } | null };\n\nexport type GetLatestCheckpointSequenceNumberQueryVariables = Exact<{ [key: string]: never; }>;\n\n\nexport type GetLatestCheckpointSequenceNumberQuery = { __typename?: 'Query', checkpoint?: { __typename?: 'Checkpoint', sequenceNumber: any } | null };\n\nexport type GetLatestIotaSystemStateQueryVariables = Exact<{ [key: string]: never; }>;\n\n\nexport type GetLatestIotaSystemStateQuery = { __typename?: 'Query', epoch?: { __typename?: 'Epoch', epochId: any, startTimestamp: any, endTimestamp?: any | null, referenceGasPrice?: any | null, systemStateVersion?: any | null, iotaTotalSupply?: number | null, iotaTreasuryCapId?: any | null, safeMode?: { __typename?: 'SafeMode', enabled?: boolean | null, gasSummary?: { __typename?: 'GasCostSummary', computationCost?: any | null, computationCostBurned?: any | null, nonRefundableStorageFee?: any | null, storageCost?: any | null, storageRebate?: any | null } | null } | null, storageFund?: { __typename?: 'StorageFund', nonRefundableBalance?: any | null, totalObjectStorageRebates?: any | null } | null, systemParameters?: { __typename?: 'SystemParameters', minValidatorCount?: number | null, maxValidatorCount?: number | null, minValidatorJoiningStake?: any | null, durationMs?: any | null, validatorLowStakeThreshold?: any | null, validatorLowStakeGracePeriod?: any | null, validatorVeryLowStakeThreshold?: any | null } | null, protocolConfigs: { __typename?: 'ProtocolConfigs', protocolVersion: any }, validatorSet?: { __typename?: 'ValidatorSet', inactivePoolsSize?: number | null, pendingActiveValidatorsSize?: number | null, stakingPoolMappingsSize?: number | null, validatorCandidatesSize?: number | null, pendingRemovals?: Array<number> | null, totalStake?: any | null, stakingPoolMappingsId?: any | null, pendingActiveValidatorsId?: any | null, validatorCandidatesId?: any | null, inactivePoolsId?: any | null, activeValidators: { __typename?: 'ValidatorConnection', pageInfo: { __typename?: 'PageInfo', hasNextPage: boolean, endCursor?: string | null }, nodes: Array<{ __typename?: 'Validator', atRisk?: any | null, commissionRate?: number | null, exchangeRatesSize?: any | null, description?: string | null, gasPrice?: any | null, imageUrl?: string | null, name?: string | null, nextEpochCommissionRate?: number | null, nextEpochGasPrice?: any | null, nextEpochStake?: any | null, pendingPoolTokenWithdraw?: any | null, pendingStake?: any | null, pendingTotalIotaWithdraw?: any | null, poolTokenBalance?: any | null, projectUrl?: string | null, rewardsPool?: any | null, stakingPoolActivationEpoch?: any | null, stakingPoolIotaBalance?: any | null, votingPower?: number | null, exchangeRates?: { __typename?: 'MoveObject', address: any, contents?: { __typename?: 'MoveValue', json: any } | null } | null, credentials?: { __typename?: 'ValidatorCredentials', netAddress?: string | null, networkPubKey?: any | null, p2PAddress?: string | null, primaryAddress?: string | null, authorityPubKey?: any | null, proofOfPossession?: any | null, protocolPubKey?: any | null } | null, nextEpochCredentials?: { __typename?: 'ValidatorCredentials', netAddress?: string | null, networkPubKey?: any | null, p2PAddress?: string | null, primaryAddress?: string | null, authorityPubKey?: any | null, proofOfPossession?: any | null, protocolPubKey?: any | null } | null, operationCap?: { __typename?: 'MoveObject', address: any } | null, stakingPool?: { __typename?: 'MoveObject', address: any } | null, address: { __typename?: 'Address', address: any } }> } } | null } | null };\n\nexport type GetMoveFunctionArgTypesQueryVariables = Exact<{\n packageId: Scalars['IotaAddress']['input'];\n module: Scalars['String']['input'];\n function: Scalars['String']['input'];\n}>;\n\n\nexport type GetMoveFunctionArgTypesQuery = { __typename?: 'Query', object?: { __typename?: 'Object', asMovePackage?: { __typename?: 'MovePackage', module?: { __typename?: 'MoveModule', fileFormatVersion: number, function?: { __typename?: 'MoveFunction', parameters?: Array<{ __typename?: 'OpenMoveType', signature: any }> | null } | null } | null } | null } | null };\n\nexport type GetNormalizedMoveFunctionQueryVariables = Exact<{\n packageId: Scalars['IotaAddress']['input'];\n module: Scalars['String']['input'];\n function: Scalars['String']['input'];\n}>;\n\n\nexport type GetNormalizedMoveFunctionQuery = { __typename?: 'Query', object?: { __typename?: 'Object', address: any, asMovePackage?: { __typename?: 'MovePackage', module?: { __typename?: 'MoveModule', fileFormatVersion: number, function?: { __typename?: 'MoveFunction', name: string, visibility?: MoveVisibility | null, isEntry?: boolean | null, parameters?: Array<{ __typename?: 'OpenMoveType', signature: any }> | null, typeParameters?: Array<{ __typename?: 'MoveFunctionTypeParameter', constraints: Array<MoveAbility> }> | null, return?: Array<{ __typename?: 'OpenMoveType', repr: string, signature: any }> | null } | null } | null } | null } | null };\n\nexport type Rpc_Move_Function_FieldsFragment = { __typename?: 'MoveFunction', name: string, visibility?: MoveVisibility | null, isEntry?: boolean | null, parameters?: Array<{ __typename?: 'OpenMoveType', signature: any }> | null, typeParameters?: Array<{ __typename?: 'MoveFunctionTypeParameter', constraints: Array<MoveAbility> }> | null, return?: Array<{ __typename?: 'OpenMoveType', repr: string, signature: any }> | null };\n\nexport type GetNormalizedMoveModuleQueryVariables = Exact<{\n packageId: Scalars['IotaAddress']['input'];\n module: Scalars['String']['input'];\n}>;\n\n\nexport type GetNormalizedMoveModuleQuery = { __typename?: 'Query', object?: { __typename?: 'Object', asMovePackage?: { __typename?: 'MovePackage', module?: { __typename?: 'MoveModule', name: string, fileFormatVersion: number, friends: { __typename?: 'MoveModuleConnection', pageInfo: { __typename?: 'PageInfo', hasNextPage: boolean, endCursor?: string | null }, nodes: Array<{ __typename?: 'MoveModule', name: string, package: { __typename?: 'MovePackage', address: any } }> }, structs?: { __typename?: 'MoveStructConnection', pageInfo: { __typename?: 'PageInfo', hasNextPage: boolean, endCursor?: string | null }, nodes: Array<{ __typename?: 'MoveStruct', name: string, abilities?: Array<MoveAbility> | null, fields?: Array<{ __typename?: 'MoveField', name: string, type?: { __typename?: 'OpenMoveType', signature: any } | null }> | null, typeParameters?: Array<{ __typename?: 'MoveStructTypeParameter', isPhantom: boolean, constraints: Array<MoveAbility> }> | null }> } | null, functions?: { __typename?: 'MoveFunctionConnection', pageInfo: { __typename?: 'PageInfo', hasNextPage: boolean, endCursor?: string | null }, nodes: Array<{ __typename?: 'MoveFunction', name: string, visibility?: MoveVisibility | null, isEntry?: boolean | null, parameters?: Array<{ __typename?: 'OpenMoveType', signature: any }> | null, typeParameters?: Array<{ __typename?: 'MoveFunctionTypeParameter', constraints: Array<MoveAbility> }> | null, return?: Array<{ __typename?: 'OpenMoveType', repr: string, signature: any }> | null }> } | null } | null } | null } | null };\n\nexport type PaginateMoveModuleListsQueryVariables = Exact<{\n packageId: Scalars['IotaAddress']['input'];\n module: Scalars['String']['input'];\n hasMoreFriends: Scalars['Boolean']['input'];\n hasMoreStructs: Scalars['Boolean']['input'];\n hasMoreFunctions: Scalars['Boolean']['input'];\n afterFriends?: InputMaybe<Scalars['String']['input']>;\n afterStructs?: InputMaybe<Scalars['String']['input']>;\n afterFunctions?: InputMaybe<Scalars['String']['input']>;\n}>;\n\n\nexport type PaginateMoveModuleListsQuery = { __typename?: 'Query', object?: { __typename?: 'Object', asMovePackage?: { __typename?: 'MovePackage', module?: { __typename?: 'MoveModule', friends?: { __typename?: 'MoveModuleConnection', pageInfo: { __typename?: 'PageInfo', hasNextPage: boolean, endCursor?: string | null }, nodes: Array<{ __typename?: 'MoveModule', name: string, package: { __typename?: 'MovePackage', address: any } }> }, structs?: { __typename?: 'MoveStructConnection', pageInfo: { __typename?: 'PageInfo', hasNextPage: boolean, endCursor?: string | null }, nodes: Array<{ __typename?: 'MoveStruct', name: string, abilities?: Array<MoveAbility> | null, fields?: Array<{ __typename?: 'MoveField', name: string, type?: { __typename?: 'OpenMoveType', signature: any } | null }> | null, typeParameters?: Array<{ __typename?: 'MoveStructTypeParameter', isPhantom: boolean, constraints: Array<MoveAbility> }> | null }> } | null, functions?: { __typename?: 'MoveFunctionConnection', pageInfo: { __typename?: 'PageInfo', hasNextPage: boolean, endCursor?: string | null }, nodes: Array<{ __typename?: 'MoveFunction', name: string, visibility?: MoveVisibility | null, isEntry?: boolean | null, parameters?: Array<{ __typename?: 'OpenMoveType', signature: any }> | null, typeParameters?: Array<{ __typename?: 'MoveFunctionTypeParameter', constraints: Array<MoveAbility> }> | null, return?: Array<{ __typename?: 'OpenMoveType', repr: string, signature: any }> | null }> } | null } | null } | null } | null };\n\nexport type Rpc_Move_Module_FieldsFragment = { __typename?: 'MoveModule', name: string, fileFormatVersion: number, friends: { __typename?: 'MoveModuleConnection', pageInfo: { __typename?: 'PageInfo', hasNextPage: boolean, endCursor?: string | null }, nodes: Array<{ __typename?: 'MoveModule', name: string, package: { __typename?: 'MovePackage', address: any } }> }, structs?: { __typename?: 'MoveStructConnection', pageInfo: { __typename?: 'PageInfo', hasNextPage: boolean, endCursor?: string | null }, nodes: Array<{ __typename?: 'MoveStruct', name: string, abilities?: Array<MoveAbility> | null, fields?: Array<{ __typename?: 'MoveField', name: string, type?: { __typename?: 'OpenMoveType', signature: any } | null }> | null, typeParameters?: Array<{ __typename?: 'MoveStructTypeParameter', isPhantom: boolean, constraints: Array<MoveAbility> }> | null }> } | null, functions?: { __typename?: 'MoveFunctionConnection', pageInfo: { __typename?: 'PageInfo', hasNextPage: boolean, endCursor?: string | null }, nodes: Array<{ __typename?: 'MoveFunction', name: string, visibility?: MoveVisibility | null, isEntry?: boolean | null, parameters?: Array<{ __typename?: 'OpenMoveType', signature: any }> | null, typeParameters?: Array<{ __typename?: 'MoveFunctionTypeParameter', constraints: Array<MoveAbility> }> | null, return?: Array<{ __typename?: 'OpenMoveType', repr: string, signature: any }> | null }> } | null };\n\nexport type GetNormalizedMoveModulesByPackageQueryVariables = Exact<{\n packageId: Scalars['IotaAddress']['input'];\n cursor?: InputMaybe<Scalars['String']['input']>;\n}>;\n\n\nexport type GetNormalizedMoveModulesByPackageQuery = { __typename?: 'Query', object?: { __typename?: 'Object', asMovePackage?: { __typename?: 'MovePackage', address: any, modules?: { __typename?: 'MoveModuleConnection', pageInfo: { __typename?: 'PageInfo', hasNextPage: boolean, endCursor?: string | null }, nodes: Array<{ __typename?: 'MoveModule', name: string, fileFormatVersion: number, friends: { __typename?: 'MoveModuleConnection', pageInfo: { __typename?: 'PageInfo', hasNextPage: boolean, endCursor?: string | null }, nodes: Array<{ __typename?: 'MoveModule', name: string, package: { __typename?: 'MovePackage', address: any } }> }, structs?: { __typename?: 'MoveStructConnection', pageInfo: { __typename?: 'PageInfo', hasNextPage: boolean, endCursor?: string | null }, nodes: Array<{ __typename?: 'MoveStruct', name: string, abilities?: Array<MoveAbility> | null, fields?: Array<{ __typename?: 'MoveField', name: string, type?: { __typename?: 'OpenMoveType', signature: any } | null }> | null, typeParameters?: Array<{ __typename?: 'MoveStructTypeParameter', isPhantom: boolean, constraints: Array<MoveAbility> }> | null }> } | null, functions?: { __typename?: 'MoveFunctionConnection', pageInfo: { __typename?: 'PageInfo', hasNextPage: boolean, endCursor?: string | null }, nodes: Array<{ __typename?: 'MoveFunction', name: string, visibility?: MoveVisibility | null, isEntry?: boolean | null, parameters?: Array<{ __typename?: 'OpenMoveType', signature: any }> | null, typeParameters?: Array<{ __typename?: 'MoveFunctionTypeParameter', constraints: Array<MoveAbility> }> | null, return?: Array<{ __typename?: 'OpenMoveType', repr: string, signature: any }> | null }> } | null }> } | null } | null } | null };\n\nexport type GetNormalizedMoveStructQueryVariables = Exact<{\n packageId: Scalars['IotaAddress']['input'];\n module: Scalars['String']['input'];\n struct: Scalars['String']['input'];\n}>;\n\n\nexport type GetNormalizedMoveStructQuery = { __typename?: 'Query', object?: { __typename?: 'Object', asMovePackage?: { __typename?: 'MovePackage', address: any, module?: { __typename?: 'MoveModule', fileFormatVersion: number, struct?: { __typename?: 'MoveStruct', name: string, abilities?: Array<MoveAbility> | null, fields?: Array<{ __typename?: 'MoveField', name: string, type?: { __typename?: 'OpenMoveType', signature: any } | null }> | null, typeParameters?: Array<{ __typename?: 'MoveStructTypeParameter', isPhantom: boolean, constraints: Array<MoveAbility> }> | null } | null } | null } | null } | null };\n\nexport type Rpc_Move_Struct_FieldsFragment = { __typename?: 'MoveStruct', name: string, abilities?: Array<MoveAbility> | null, fields?: Array<{ __typename?: 'MoveField', name: string, type?: { __typename?: 'OpenMoveType', signature: any } | null }> | null, typeParameters?: Array<{ __typename?: 'MoveStructTypeParameter', isPhantom: boolean, constraints: Array<MoveAbility> }> | null };\n\nexport type GetProtocolConfigQueryVariables = Exact<{\n protocolVersion?: InputMaybe<Scalars['UInt53']['input']>;\n}>;\n\n\nexport type GetProtocolConfigQuery = { __typename?: 'Query', protocolConfig: { __typename?: 'ProtocolConfigs', protocolVersion: any, configs: Array<{ __typename?: 'ProtocolConfigAttr', key: string, value?: string | null }>, featureFlags: Array<{ __typename?: 'ProtocolConfigFeatureFlag', key: string, value: boolean }> } };\n\nexport type GetReferenceGasPriceQueryVariables = Exact<{ [key: string]: never; }>;\n\n\nexport type GetReferenceGasPriceQuery = { __typename?: 'Query', epoch?: { __typename?: 'Epoch', referenceGasPrice?: any | null } | null };\n\nexport type GetTotalSupplyQueryVariables = Exact<{\n coinType: Scalars['String']['input'];\n}>;\n\n\nexport type GetTotalSupplyQuery = { __typename?: 'Query', coinMetadata?: { __typename?: 'CoinMetadata', supply?: any | null, decimals?: number | null } | null };\n\nexport type GetTotalTransactionBlocksQueryVariables = Exact<{ [key: string]: never; }>;\n\n\nexport type GetTotalTransactionBlocksQuery = { __typename?: 'Query', checkpoint?: { __typename?: 'Checkpoint', networkTotalTransactions?: any | null } | null };\n\nexport type GetValidatorsApyQueryVariables = Exact<{ [key: string]: never; }>;\n\n\nexport type GetValidatorsApyQuery = { __typename?: 'Query', epoch?: { __typename?: 'Epoch', epochId: any, validatorSet?: { __typename?: 'ValidatorSet', activeValidators: { __typename?: 'ValidatorConnection', pageInfo: { __typename?: 'PageInfo', hasNextPage: boolean, endCursor?: string | null }, nodes: Array<{ __typename?: 'Validator', apy?: number | null, address: { __typename?: 'Address', address: any } }> } } | null } | null };\n\nexport type GetOwnedObjectsQueryVariables = Exact<{\n owner: Scalars['IotaAddress']['input'];\n limit?: InputMaybe<Scalars['Int']['input']>;\n cursor?: InputMaybe<Scalars['String']['input']>;\n showBcs?: InputMaybe<Scalars['Boolean']['input']>;\n showContent?: InputMaybe<Scalars['Boolean']['input']>;\n showDisplay?: InputMaybe<Scalars['Boolean']['input']>;\n showType?: InputMaybe<Scalars['Boolean']['input']>;\n showOwner?: InputMaybe<Scalars['Boolean']['input']>;\n showPreviousTransaction?: InputMaybe<Scalars['Boolean']['input']>;\n showStorageRebate?: InputMaybe<Scalars['Boolean']['input']>;\n filter?: InputMaybe<ObjectFilter>;\n}>;\n\n\nexport type GetOwnedObjectsQuery = { __typename?: 'Query', address?: { __typename?: 'Address', objects: { __typename?: 'MoveObjectConnection', pageInfo: { __typename?: 'PageInfo', hasNextPage: boolean, endCursor?: string | null }, nodes: Array<{ __typename?: 'MoveObject', bcs?: any | null, storageRebate?: any | null, digest?: string | null, version: any, objectId: any, contents?: { __typename?: 'MoveValue', data: any, bcs: any, type: { __typename?: 'MoveType', repr: string, layout: any, signature: any } } | null, owner?: { __typename: 'AddressOwner', owner?: { __typename?: 'Owner', asObject?: { __typename?: 'Object', address: any } | null, asAddress?: { __typename?: 'Address', address: any } | null } | null } | { __typename: 'Immutable' } | { __typename: 'Parent', parent?: { __typename?: 'Object', address: any } | null } | { __typename: 'Shared', initialSharedVersion: any } | null, previousTransactionBlock?: { __typename?: 'TransactionBlock', digest?: string | null } | null, display?: Array<{ __typename?: 'DisplayEntry', key: string, value?: string | null, error?: string | null }> | null }> } } | null };\n\nexport type GetObjectQueryVariables = Exact<{\n id: Scalars['IotaAddress']['input'];\n showBcs?: InputMaybe<Scalars['Boolean']['input']>;\n showOwner?: InputMaybe<Scalars['Boolean']['input']>;\n showPreviousTransaction?: InputMaybe<Scalars['Boolean']['input']>;\n showContent?: InputMaybe<Scalars['Boolean']['input']>;\n showDisplay?: InputMaybe<Scalars['Boolean']['input']>;\n showType?: InputMaybe<Scalars['Boolean']['input']>;\n showStorageRebate?: InputMaybe<Scalars['Boolean']['input']>;\n}>;\n\n\nexport type GetObjectQuery = { __typename?: 'Query', object?: { __typename?: 'Object', version: any, storageRebate?: any | null, digest?: string | null, objectId: any, asMoveObject?: { __typename?: 'MoveObject', contents?: { __typename?: 'MoveValue', data: any, bcs: any, type: { __typename?: 'MoveType', repr: string, layout: any, signature: any } } | null } | null, owner?: { __typename: 'AddressOwner', owner?: { __typename?: 'Owner', asObject?: { __typename?: 'Object', address: any } | null, asAddress?: { __typename?: 'Address', address: any } | null } | null } | { __typename: 'Immutable' } | { __typename: 'Parent', parent?: { __typename?: 'Object', address: any } | null } | { __typename: 'Shared', initialSharedVersion: any } | null, previousTransactionBlock?: { __typename?: 'TransactionBlock', digest?: string | null } | null, display?: Array<{ __typename?: 'DisplayEntry', key: string, value?: string | null, error?: string | null }> | null } | null };\n\nexport type TryGetPastObjectQueryVariables = Exact<{\n id: Scalars['IotaAddress']['input'];\n version?: InputMaybe<Scalars['UInt53']['input']>;\n showBcs?: InputMaybe<Scalars['Boolean']['input']>;\n showOwner?: InputMaybe<Scalars['Boolean']['input']>;\n showPreviousTransaction?: InputMaybe<Scalars['Boolean']['input']>;\n showContent?: InputMaybe<Scalars['Boolean']['input']>;\n showDisplay?: InputMaybe<Scalars['Boolean']['input']>;\n showType?: InputMaybe<Scalars['Boolean']['input']>;\n showStorageRebate?: InputMaybe<Scalars['Boolean']['input']>;\n}>;\n\n\nexport type TryGetPastObjectQuery = { __typename?: 'Query', current?: { __typename?: 'Object', address: any, version: any } | null, object?: { __typename?: 'Object', version: any, storageRebate?: any | null, digest?: string | null, objectId: any, asMoveObject?: { __typename?: 'MoveObject', contents?: { __typename?: 'MoveValue', data: any, bcs: any, type: { __typename?: 'MoveType', repr: string, layout: any, signature: any } } | null } | null, owner?: { __typename: 'AddressOwner', owner?: { __typename?: 'Owner', asObject?: { __typename?: 'Object', address: any } | null, asAddress?: { __typename?: 'Address', address: any } | null } | null } | { __typename: 'Immutable' } | { __typename: 'Parent', parent?: { __typename?: 'Object', address: any } | null } | { __typename: 'Shared', initialSharedVersion: any } | null, previousTransactionBlock?: { __typename?: 'TransactionBlock', digest?: string | null } | null, display?: Array<{ __typename?: 'DisplayEntry', key: string, value?: string | null, error?: string | null }> | null } | null };\n\nexport type MultiGetObjectsQueryVariables = Exact<{\n ids: Array<Scalars['IotaAddress']['input']> | Scalars['IotaAddress']['input'];\n limit?: InputMaybe<Scalars['Int']['input']>;\n cursor?: InputMaybe<Scalars['String']['input']>;\n showBcs?: InputMaybe<Scalars['Boolean']['input']>;\n showContent?: InputMaybe<Scalars['Boolean']['input']>;\n showDisplay?: InputMaybe<Scalars['Boolean']['input']>;\n showType?: InputMaybe<Scalars['Boolean']['input']>;\n showOwner?: InputMaybe<Scalars['Boolean']['input']>;\n showPreviousTransaction?: InputMaybe<Scalars['Boolean']['input']>;\n showStorageRebate?: InputMaybe<Scalars['Boolean']['input']>;\n}>;\n\n\nexport type MultiGetObjectsQuery = { __typename?: 'Query', objects: { __typename?: 'ObjectConnection', pageInfo: { __typename?: 'PageInfo', hasNextPage: boolean, endCursor?: string | null }, nodes: Array<{ __typename?: 'Object', version: any, storageRebate?: any | null, digest?: string | null, objectId: any, asMoveObject?: { __typename?: 'MoveObject', contents?: { __typename?: 'MoveValue', data: any, bcs: any, type: { __typename?: 'MoveType', repr: string, layout: any, signature: any } } | null } | null, owner?: { __typename: 'AddressOwner', owner?: { __typename?: 'Owner', asObject?: { __typename?: 'Object', address: any } | null, asAddress?: { __typename?: 'Address', address: any } | null } | null } | { __typename: 'Immutable' } | { __typename: 'Parent', parent?: { __typename?: 'Object', address: any } | null } | { __typename: 'Shared', initialSharedVersion: any } | null, previousTransactionBlock?: { __typename?: 'TransactionBlock', digest?: string | null } | null, display?: Array<{ __typename?: 'DisplayEntry', key: string, value?: string | null, error?: string | null }> | null }> } };\n\nexport type Rpc_Object_FieldsFragment = { __typename?: 'Object', version: any, storageRebate?: any | null, digest?: string | null, objectId: any, asMoveObject?: { __typename?: 'MoveObject', contents?: { __typename?: 'MoveValue', data: any, bcs: any, type: { __typename?: 'MoveType', repr: string, layout: any, signature: any } } | null } | null, owner?: { __typename: 'AddressOwner', owner?: { __typename?: 'Owner', asObject?: { __typename?: 'Object', address: any } | null, asAddress?: { __typename?: 'Address', address: any } | null } | null } | { __typename: 'Immutable' } | { __typename: 'Parent', parent?: { __typename?: 'Object', address: any } | null } | { __typename: 'Shared', initialSharedVersion: any } | null, previousTransactionBlock?: { __typename?: 'TransactionBlock', digest?: string | null } | null, display?: Array<{ __typename?: 'DisplayEntry', key: string, value?: string | null, error?: string | null }> | null };\n\nexport type Rpc_Move_Object_FieldsFragment = { __typename?: 'MoveObject', bcs?: any | null, storageRebate?: any | null, digest?: string | null, version: any, objectId: any, contents?: { __typename?: 'MoveValue', data: any, bcs: any, type: { __typename?: 'MoveType', repr: string, layout: any, signature: any } } | null, owner?: { __typename: 'AddressOwner', owner?: { __typename?: 'Owner', asObject?: { __typename?: 'Object', address: any } | null, asAddress?: { __typename?: 'Address', address: any } | null } | null } | { __typename: 'Immutable' } | { __typename: 'Parent', parent?: { __typename?: 'Object', address: any } | null } | { __typename: 'Shared', initialSharedVersion: any } | null, previousTransactionBlock?: { __typename?: 'TransactionBlock', digest?: string | null } | null, display?: Array<{ __typename?: 'DisplayEntry', key: string, value?: string | null, error?: string | null }> | null };\n\ntype Rpc_Object_Owner_Fields_AddressOwner_Fragment = { __typename: 'AddressOwner', owner?: { __typename?: 'Owner', asObject?: { __typename?: 'Object', address: any } | null, asAddress?: { __typename?: 'Address', address: any } | null } | null };\n\ntype Rpc_Object_Owner_Fields_Immutable_Fragment = { __typename: 'Immutable' };\n\ntype Rpc_Object_Owner_Fields_Parent_Fragment = { __typename: 'Parent', parent?: { __typename?: 'Object', address: any } | null };\n\ntype Rpc_Object_Owner_Fields_Shared_Fragment = { __typename: 'Shared', initialSharedVersion: any };\n\nexport type Rpc_Object_Owner_FieldsFragment = Rpc_Object_Owner_Fields_AddressOwner_Fragment | Rpc_Object_Owner_Fields_Immutable_Fragment | Rpc_Object_Owner_Fields_Parent_Fragment | Rpc_Object_Owner_Fields_Shared_Fragment;\n\nexport type QueryEventsQueryVariables = Exact<{\n filter: EventFilter;\n before?: InputMaybe<Scalars['String']['input']>;\n after?: InputMaybe<Scalars['String']['input']>;\n first?: InputMaybe<Scalars['Int']['input']>;\n last?: InputMaybe<Scalars['Int']['input']>;\n}>;\n\n\nexport type QueryEventsQuery = { __typename?: 'Query', events: { __typename?: 'EventConnection', pageInfo: { __typename?: 'PageInfo', hasNextPage: boolean, hasPreviousPage: boolean, endCursor?: string | null, startCursor?: string | null }, nodes: Array<{ __typename?: 'Event', json: any, bcs: any, timestamp?: any | null, sendingModule?: { __typename?: 'MoveModule', name: string, package: { __typename?: 'MovePackage', address: any } } | null, sender?: { __typename?: 'Address', address: any } | null, type: { __typename?: 'MoveType', repr: string } }> } };\n\nexport type Rpc_Events_FieldsFragment = { __typename?: 'Event', json: any, bcs: any, timestamp?: any | null, sendingModule?: { __typename?: 'MoveModule', name: string, package: { __typename?: 'MovePackage', address: any } } | null, sender?: { __typename?: 'Address', address: any } | null, type: { __typename?: 'MoveType', repr: string } };\n\nexport type GetStakesQueryVariables = Exact<{\n owner: Scalars['IotaAddress']['input'];\n limit?: InputMaybe<Scalars['Int']['input']>;\n cursor?: InputMaybe<Scalars['String']['input']>;\n}>;\n\n\nexport type GetStakesQuery = { __typename?: 'Query', address?: { __typename?: 'Address', stakedIotas: { __typename?: 'StakedIotaConnection', pageInfo: { __typename?: 'PageInfo', hasNextPage: boolean, endCursor?: string | null }, nodes: Array<{ __typename?: 'StakedIota', principal?: any | null, stakeStatus: StakeStatus, address: any, estimatedReward?: any | null, activatedEpoch?: { __typename?: 'Epoch', epochId: any, referenceGasPrice?: any | null } | null, requestedEpoch?: { __typename?: 'Epoch', epochId: any } | null, contents?: { __typename?: 'MoveValue', json: any } | null }> } } | null };\n\nexport type GetStakesByIdsQueryVariables = Exact<{\n ids: Array<Scalars['IotaAddress']['input']> | Scalars['IotaAddress']['input'];\n limit?: InputMaybe<Scalars['Int']['input']>;\n cursor?: InputMaybe<Scalars['String']['input']>;\n}>;\n\n\nexport type GetStakesByIdsQuery = { __typename?: 'Query', objects: { __typename?: 'ObjectConnection', pageInfo: { __typename?: 'PageInfo', hasNextPage: boolean, endCursor?: string | null }, nodes: Array<{ __typename?: 'Object', asMoveObject?: { __typename?: 'MoveObject', asStakedIota?: { __typename?: 'StakedIota', principal?: any | null, stakeStatus: StakeStatus, address: any, estimatedReward?: any | null, activatedEpoch?: { __typename?: 'Epoch', epochId: any, referenceGasPrice?: any | null } | null, requestedEpoch?: { __typename?: 'Epoch', epochId: any } | null, contents?: { __typename?: 'MoveValue', json: any } | null } | null } | null }> } };\n\nexport type Rpc_Stake_FieldsFragment = { __typename?: 'StakedIota', principal?: any | null, stakeStatus: StakeStatus, address: any, estimatedReward?: any | null, activatedEpoch?: { __typename?: 'Epoch', epochId: any, referenceGasPrice?: any | null } | null, requestedEpoch?: { __typename?: 'Epoch', epochId: any } | null, contents?: { __typename?: 'MoveValue', json: any } | null };\n\nexport type QueryTransactionBlocksQueryVariables = Exact<{\n first?: InputMaybe<Scalars['Int']['input']>;\n last?: InputMaybe<Scalars['Int']['input']>;\n before?: InputMaybe<Scalars['String']['input']>;\n after?: InputMaybe<Scalars['String']['input']>;\n showBalanceChanges?: InputMaybe<Scalars['Boolean']['input']>;\n showEffects?: InputMaybe<Scalars['Boolean']['input']>;\n showRawEffects?: InputMaybe<Scalars['Boolean']['input']>;\n showEvents?: InputMaybe<Scalars['Boolean']['input']>;\n showInput?: InputMaybe<Scalars['Boolean']['input']>;\n showObjectChanges?: InputMaybe<Scalars['Boolean']['input']>;\n showRawInput?: InputMaybe<Scalars['Boolean']['input']>;\n filter?: InputMaybe<TransactionBlockFilter>;\n}>;\n\n\nexport type QueryTransactionBlocksQuery = { __typename?: 'Query', transactionBlocks: { __typename?: 'TransactionBlockConnection', pageInfo: { __typename?: 'PageInfo', hasNextPage: boolean, hasPreviousPage: boolean, startCursor?: string | null, endCursor?: string | null }, nodes: Array<{ __typename?: 'TransactionBlock', digest?: string | null, signatures?: Array<any> | null, rawTransaction?: any | null, sender?: { __typename?: 'Address', address: any } | null, effects?: { __typename?: 'TransactionBlockEffects', bcs?: any, timestamp?: any | null, events?: { __typename?: 'EventConnection', pageInfo: { __typename?: 'PageInfo', hasNextPage: boolean, endCursor?: string | null }, nodes: Array<{ __typename?: 'Event', json: any, bcs: any, timestamp?: any | null, sendingModule?: { __typename?: 'MoveModule', name: string, package: { __typename?: 'MovePackage', address: any } } | null, sender?: { __typename?: 'Address', address: any } | null, type: { __typename?: 'MoveType', repr: string } }> }, checkpoint?: { __typename?: 'Checkpoint', sequenceNumber: any } | null, balanceChanges?: { __typename?: 'BalanceChangeConnection', pageInfo: { __typename?: 'PageInfo', hasNextPage: boolean, endCursor?: string | null }, nodes: Array<{ __typename?: 'BalanceChange', amount?: any | null, coinType?: { __typename?: 'MoveType', repr: string } | null, owner?: { __typename?: 'Owner', asObject?: { __typename?: 'Object', address: any } | null, asAddress?: { __typename?: 'Address', address: any } | null } | null }> }, objectChanges?: { __typename?: 'ObjectChangeConnection', pageInfo: { __typename?: 'PageInfo', hasNextPage: boolean, endCursor?: string | null }, nodes: Array<{ __typename?: 'ObjectChange', address: any, inputState?: { __typename?: 'Object', version: any, asMoveObject?: { __typename?: 'MoveObject', contents?: { __typename?: 'MoveValue', type: { __typename?: 'MoveType', repr: string } } | null } | null } | null, outputState?: { __typename?: 'Object', asMoveObject?: { __typename?: 'MoveObject', contents?: { __typename?: 'MoveValue', type: { __typename?: 'MoveType', repr: string } } | null } | null, asMovePackage?: { __typename?: 'MovePackage', modules?: { __typename?: 'MoveModuleConnection', nodes: Array<{ __typename?: 'MoveModule', name: string }> } | null } | null } | null }> } } | null }> } };\n\nexport type GetTransactionBlockQueryVariables = Exact<{\n digest: Scalars['String']['input'];\n showBalanceChanges?: InputMaybe<Scalars['Boolean']['input']>;\n showEffects?: InputMaybe<Scalars['Boolean']['input']>;\n showRawEffects?: InputMaybe<Scalars['Boolean']['input']>;\n showEvents?: InputMaybe<Scalars['Boolean']['input']>;\n showInput?: InputMaybe<Scalars['Boolean']['input']>;\n showObjectChanges?: InputMaybe<Scalars['Boolean']['input']>;\n showRawInput?: InputMaybe<Scalars['Boolean']['input']>;\n}>;\n\n\nexport type GetTransactionBlockQuery = { __typename?: 'Query', transactionBlock?: { __typename?: 'TransactionBlock', digest?: string | null, signatures?: Array<any> | null, rawTransaction?: any | null, sender?: { __typename?: 'Address', address: any } | null, effects?: { __typename?: 'TransactionBlockEffects', bcs?: any, timestamp?: any | null, events?: { __typename?: 'EventConnection', pageInfo: { __typename?: 'PageInfo', hasNextPage: boolean, endCursor?: string | null }, nodes: Array<{ __typename?: 'Event', json: any, bcs: any, timestamp?: any | null, sendingModule?: { __typename?: 'MoveModule', name: string, package: { __typename?: 'MovePackage', address: any } } | null, sender?: { __typename?: 'Address', address: any } | null, type: { __typename?: 'MoveType', repr: string } }> }, checkpoint?: { __typename?: 'Checkpoint', sequenceNumber: any } | null, balanceChanges?: { __typename?: 'BalanceChangeConnection', pageInfo: { __typename?: 'PageInfo', hasNextPage: boolean, endCursor?: string | null }, nodes: Array<{ __typename?: 'BalanceChange', amount?: any | null, coinType?: { __typename?: 'MoveType', repr: string } | null, owner?: { __typename?: 'Owner', asObject?: { __typename?: 'Object', address: any } | null, asAddress?: { __typename?: 'Address', address: any } | null } | null }> }, objectChanges?: { __typename?: 'ObjectChangeConnection', pageInfo: { __typename?: 'PageInfo', hasNextPage: boolean, endCursor?: string | null }, nodes: Array<{ __typename?: 'ObjectChange', address: any, inputState?: { __typename?: 'Object', version: any, asMoveObject?: { __typename?: 'MoveObject', contents?: { __typename?: 'MoveValue', type: { __typename?: 'MoveType', repr: string } } | null } | null } | null, outputState?: { __typename?: 'Object', asMoveObject?: { __typename?: 'MoveObject', contents?: { __typename?: 'MoveValue', type: { __typename?: 'MoveType', repr: string } } | null } | null, asMovePackage?: { __typename?: 'MovePackage', modules?: { __typename?: 'MoveModuleConnection', nodes: Array<{ __typename?: 'MoveModule', name: string }> } | null } | null } | null }> } } | null } | null };\n\nexport type MultiGetTransactionBlocksQueryVariables = Exact<{\n digests: Array<Scalars['String']['input']> | Scalars['String']['input'];\n limit?: InputMaybe<Scalars['Int']['input']>;\n cursor?: InputMaybe<Scalars['String']['input']>;\n showBalanceChanges?: InputMaybe<Scalars['Boolean']['input']>;\n showEffects?: InputMaybe<Scalars['Boolean']['input']>;\n showRawEffects?: InputMaybe<Scalars['Boolean']['input']>;\n showEvents?: InputMaybe<Scalars['Boolean']['input']>;\n showInput?: InputMaybe<Scalars['Boolean']['input']>;\n showObjectChanges?: InputMaybe<Scalars['Boolean']['input']>;\n showRawInput?: InputMaybe<Scalars['Boolean']['input']>;\n}>;\n\n\nexport type MultiGetTransactionBlocksQuery = { __typename?: 'Query', transactionBlocks: { __typename?: 'TransactionBlockConnection', pageInfo: { __typename?: 'PageInfo', hasNextPage: boolean, hasPreviousPage: boolean, startCursor?: string | null, endCursor?: string | null }, nodes: Array<{ __typename?: 'TransactionBlock', digest?: string | null, signatures?: Array<any> | null, rawTransaction?: any | null, sender?: { __typename?: 'Address', address: any } | null, effects?: { __typename?: 'TransactionBlockEffects', bcs?: any, timestamp?: any | null, events?: { __typename?: 'EventConnection', pageInfo: { __typename?: 'PageInfo', hasNextPage: boolean, endCursor?: string | null }, nodes: Array<{ __typename?: 'Event', json: any, bcs: any, timestamp?: any | null, sendingModule?: { __typename?: 'MoveModule', name: string, package: { __typename?: 'MovePackage', address: any } } | null, sender?: { __typename?: 'Address', address: any } | null, type: { __typename?: 'MoveType', repr: string } }> }, checkpoint?: { __typename?: 'Checkpoint', sequenceNumber: any } | null, balanceChanges?: { __typename?: 'BalanceChangeConnection', pageInfo: { __typename?: 'PageInfo', hasNextPage: boolean, endCursor?: string | null }, nodes: Array<{ __typename?: 'BalanceChange', amount?: any | null, coinType?: { __typename?: 'MoveType', repr: string } | null, owner?: { __typename?: 'Owner', asObject?: { __typename?: 'Object', address: any } | null, asAddress?: { __typename?: 'Address', address: any } | null } | null }> }, objectChanges?: { __typename?: 'ObjectChangeConnection', pageInfo: { __typename?: 'PageInfo', hasNextPage: boolean, endCursor?: string | null }, nodes: Array<{ __typename?: 'ObjectChange', address: any, inputState?: { __typename?: 'Object', version: any, asMoveObject?: { __typename?: 'MoveObject', contents?: { __typename?: 'MoveValue', type: { __typename?: 'MoveType', repr: string } } | null } | null } | null, outputState?: { __typename?: 'Object', asMoveObject?: { __typename?: 'MoveObject', contents?: { __typename?: 'MoveValue', type: { __typename?: 'MoveType', repr: string } } | null } | null, asMovePackage?: { __typename?: 'MovePackage', modules?: { __typename?: 'MoveModuleConnection', nodes: Array<{ __typename?: 'MoveModule', name: string }> } | null } | null } | null }> } } | null }> } };\n\nexport type PaginateTransactionBlockListsQueryVariables = Exact<{\n digest: Scalars['String']['input'];\n hasMoreEvents: Scalars['Boolean']['input'];\n hasMoreBalanceChanges: Scalars['Boolean']['input'];\n hasMoreObjectChanges: Scalars['Boolean']['input'];\n afterEvents?: InputMaybe<Scalars['String']['input']>;\n afterBalanceChanges?: InputMaybe<Scalars['String']['input']>;\n afterObjectChanges?: InputMaybe<Scalars['String']['input']>;\n}>;\n\n\nexport type PaginateTransactionBlockListsQuery = { __typename?: 'Query', transactionBlock?: { __typename?: 'TransactionBlock', effects?: { __typename?: 'TransactionBlockEffects', events?: { __typename?: 'EventConnection', pageInfo: { __typename?: 'PageInfo', hasNextPage: boolean, endCursor?: string | null }, nodes: Array<{ __typename?: 'Event', json: any, bcs: any, timestamp?: any | null, sendingModule?: { __typename?: 'MoveModule', name: string, package: { __typename?: 'MovePackage', address: any } } | null, sender?: { __typename?: 'Address', address: any } | null, type: { __typename?: 'MoveType', repr: string } }> }, balanceChanges?: { __typename?: 'BalanceChangeConnection', pageInfo: { __typename?: 'PageInfo', hasNextPage: boolean, endCursor?: string | null }, nodes: Array<{ __typename?: 'BalanceChange', amount?: any | null, coinType?: { __typename?: 'MoveType', repr: string } | null, owner?: { __typename?: 'Owner', asObject?: { __typename?: 'Object', address: any } | null, asAddress?: { __typename?: 'Address', address: any } | null } | null }> }, objectChanges?: { __typename?: 'ObjectChangeConnection', pageInfo: { __typename?: 'PageInfo', hasNextPage: boolean, endCursor?: string | null }, nodes: Array<{ __typename?: 'ObjectChange', address: any, inputState?: { __typename?: 'Object', version: any, asMoveObject?: { __typename?: 'MoveObject', contents?: { __typename?: 'MoveValue', type: { __typename?: 'MoveType', repr: string } } | null } | null } | null, outputState?: { __typename?: 'Object', asMoveObject?: { __typename?: 'MoveObject', contents?: { __typename?: 'MoveValue', type: { __typename?: 'MoveType', repr: string } } | null } | null, asMovePackage?: { __typename?: 'MovePackage', modules?: { __typename?: 'MoveModuleConnection', nodes: Array<{ __typename?: 'MoveModule', name: string }> } | null } | null } | null }> } } | null } | null };\n\nexport type Paginate_Transaction_ListsFragment = { __typename?: 'TransactionBlock', effects?: { __typename?: 'TransactionBlockEffects', events?: { __typename?: 'EventConnection', pageInfo: { __typename?: 'PageInfo', hasNextPage: boolean, endCursor?: string | null }, nodes: Array<{ __typename?: 'Event', json: any, bcs: any, timestamp?: any | null, sendingModule?: { __typename?: 'MoveModule', name: string, package: { __typename?: 'MovePackage', address: any } } | null, sender?: { __typename?: 'Address', address: any } | null, type: { __typename?: 'MoveType', repr: string } }> }, balanceChanges?: { __typename?: 'BalanceChangeConnection', pageInfo: { __typename?: 'PageInfo', hasNextPage: boolean, endCursor?: string | null }, nodes: Array<{ __typename?: 'BalanceChange', amount?: any | null, coinType?: { __typename?: 'MoveType', repr: string } | null, owner?: { __typename?: 'Owner', asObject?: { __typename?: 'Object', address: any } | null, asAddress?: { __typename?: 'Address', address: any } | null } | null }> }, objectChanges?: { __typename?: 'ObjectChangeConnection', pageInfo: { __typename?: 'PageInfo', hasNextPage: boolean, endCursor?: string | null }, nodes: Array<{ __typename?: 'ObjectChange', address: any, inputState?: { __typename?: 'Object', version: any, asMoveObject?: { __typename?: 'MoveObject', contents?: { __typename?: 'MoveValue', type: { __typename?: 'MoveType', repr: string } } | null } | null } | null, outputState?: { __typename?: 'Object', asMoveObject?: { __typename?: 'MoveObject', contents?: { __typename?: 'MoveValue', type: { __typename?: 'MoveType', repr: string } } | null } | null, asMovePackage?: { __typename?: 'MovePackage', modules?: { __typename?: 'MoveModuleConnection', nodes: Array<{ __typename?: 'MoveModule', name: string }> } | null } | null } | null }> } } | null };\n\nexport type Rpc_Transaction_FieldsFragment = { __typename?: 'TransactionBlock', digest?: string | null, signatures?: Array<any> | null, rawTransaction?: any | null, sender?: { __typename?: 'Address', address: any } | null, effects?: { __typename?: 'TransactionBlockEffects', bcs?: any, timestamp?: any | null, events?: { __typename?: 'EventConnection', pageInfo: { __typename?: 'PageInfo', hasNextPage: boolean, endCursor?: string | null }, nodes: Array<{ __typename?: 'Event', json: any, bcs: any, timestamp?: any | null, sendingModule?: { __typename?: 'MoveModule', name: string, package: { __typename?: 'MovePackage', address: any } } | null, sender?: { __typename?: 'Address', address: any } | null, type: { __typename?: 'MoveType', repr: string } }> }, checkpoint?: { __typename?: 'Checkpoint', sequenceNumber: any } | null, balanceChanges?: { __typename?: 'BalanceChangeConnection', pageInfo: { __typename?: 'PageInfo', hasNextPage: boolean, endCursor?: string | null }, nodes: Array<{ __typename?: 'BalanceChange', amount?: any | null, coinType?: { __typename?: 'MoveType', repr: string } | null, owner?: { __typename?: 'Owner', asObject?: { __typename?: 'Object', address: any } | null, asAddress?: { __typename?: 'Address', address: any } | null } | null }> }, objectChanges?: { __typename?: 'ObjectChangeConnection', pageInfo: { __typename?: 'PageInfo', hasNextPage: boolean, endCursor?: string | null }, nodes: Array<{ __typename?: 'ObjectChange', address: any, inputState?: { __typename?: 'Object', version: any, asMoveObject?: { __typename?: 'MoveObject', contents?: { __typename?: 'MoveValue', type: { __typename?: 'MoveType', repr: string } } | null } | null } | null, outputState?: { __typename?: 'Object', asMoveObject?: { __typename?: 'MoveObject', contents?: { __typename?: 'MoveValue', type: { __typename?: 'MoveType', repr: string } } | null } | null, asMovePackage?: { __typename?: 'MovePackage', modules?: { __typename?: 'MoveModuleConnection', nodes: Array<{ __typename?: 'MoveModule', name: string }> } | null } | null } | null }> } } | null };\n\nexport class TypedDocumentString<TResult, TVariables>\n extends String\n implements DocumentTypeDecoration<TResult, TVariables>\n{\n __apiType?: DocumentTypeDecoration<TResult, TVariables>['__apiType'];\n\n constructor(private value: string, public __meta__?: Record<string, any>) {\n super(value);\n }\n\n toString(): string & DocumentTypeDecoration<TResult, TVariables> {\n return this.value;\n }\n}\nexport const Rpc_Checkpoint_FieldsFragmentDoc = new TypedDocumentString(`\n fragment RPC_Checkpoint_Fields on Checkpoint {\n digest\n epoch {\n epochId\n }\n rollingGasSummary {\n computationCost\n computationCostBurned\n storageCost\n storageRebate\n nonRefundableStorageFee\n }\n networkTotalTransactions\n previousCheckpointDigest\n sequenceNumber\n timestamp\n validatorSignatures\n transactionBlocks {\n pageInfo {\n hasNextPage\n endCursor\n }\n nodes {\n digest\n }\n }\n endOfEpoch: transactionBlocks(last: 1, filter: {kind: SYSTEM_TX}) {\n nodes {\n kind {\n __typename\n ... on EndOfEpochTransaction {\n transactions(last: 1) {\n nodes {\n __typename\n ... on ChangeEpochTransaction {\n epoch {\n validatorSet {\n activeValidators {\n pageInfo {\n hasNextPage\n endCursor\n }\n nodes {\n credentials {\n protocolPubKey\n }\n votingPower\n }\n }\n }\n protocolConfigs {\n protocolVersion\n }\n epochId\n }\n }\n }\n }\n }\n }\n }\n }\n}\n `, {\"fragmentName\":\"RPC_Checkpoint_Fields\"}) as unknown as TypedDocumentString<Rpc_Checkpoint_FieldsFragment, unknown>;\nexport const Rpc_Credential_FieldsFragmentDoc = new TypedDocumentString(`\n fragment RPC_CREDENTIAL_FIELDS on ValidatorCredentials {\n netAddress\n networkPubKey\n p2PAddress\n primaryAddress\n authorityPubKey\n proofOfPossession\n protocolPubKey\n}\n `, {\"fragmentName\":\"RPC_CREDENTIAL_FIELDS\"}) as unknown as TypedDocumentString<Rpc_Credential_FieldsFragment, unknown>;\nexport const Rpc_Validator_FieldsFragmentDoc = new TypedDocumentString(`\n fragment RPC_VALIDATOR_FIELDS on Validator {\n atRisk\n commissionRate\n exchangeRatesSize\n exchangeRates {\n contents {\n json\n }\n address\n }\n description\n gasPrice\n imageUrl\n name\n credentials {\n ...RPC_CREDENTIAL_FIELDS\n }\n nextEpochCommissionRate\n nextEpochGasPrice\n nextEpochCredentials {\n ...RPC_CREDENTIAL_FIELDS\n }\n nextEpochStake\n nextEpochCommissionRate\n operationCap {\n address\n }\n pendingPoolTokenWithdraw\n pendingStake\n pendingTotalIotaWithdraw\n poolTokenBalance\n projectUrl\n rewardsPool\n stakingPool {\n address\n }\n stakingPoolActivationEpoch\n stakingPoolIotaBalance\n address {\n address\n }\n votingPower\n}\n fragment RPC_CREDENTIAL_FIELDS on ValidatorCredentials {\n netAddress\n networkPubKey\n p2PAddress\n primaryAddress\n authorityPubKey\n proofOfPossession\n protocolPubKey\n}`, {\"fragmentName\":\"RPC_VALIDATOR_FIELDS\"}) as unknown as TypedDocumentString<Rpc_Validator_FieldsFragment, unknown>;\nexport const Rpc_Move_Struct_FieldsFragmentDoc = new TypedDocumentString(`\n fragment RPC_MOVE_STRUCT_FIELDS on MoveStruct {\n name\n abilities\n fields {\n name\n type {\n signature\n }\n }\n typeParameters {\n isPhantom\n constraints\n }\n}\n `, {\"fragmentName\":\"RPC_MOVE_STRUCT_FIELDS\"}) as unknown as TypedDocumentString<Rpc_Move_Struct_FieldsFragment, unknown>;\nexport const Rpc_Move_Function_FieldsFragmentDoc = new TypedDocumentString(`\n fragment RPC_MOVE_FUNCTION_FIELDS on MoveFunction {\n name\n visibility\n isEntry\n parameters {\n signature\n }\n typeParameters {\n constraints\n }\n return {\n repr\n signature\n }\n}\n `, {\"fragmentName\":\"RPC_MOVE_FUNCTION_FIELDS\"}) as unknown as TypedDocumentString<Rpc_Move_Function_FieldsFragment, unknown>;\nexport const Rpc_Move_Module_FieldsFragmentDoc = new TypedDocumentString(`\n fragment RPC_MOVE_MODULE_FIELDS on MoveModule {\n name\n friends {\n pageInfo {\n hasNextPage\n endCursor\n }\n nodes {\n name\n package {\n address\n }\n }\n }\n structs {\n pageInfo {\n hasNextPage\n endCursor\n }\n nodes {\n ...RPC_MOVE_STRUCT_FIELDS\n }\n }\n fileFormatVersion\n functions {\n pageInfo {\n hasNextPage\n endCursor\n }\n nodes {\n ...RPC_MOVE_FUNCTION_FIELDS\n }\n }\n}\n fragment RPC_MOVE_FUNCTION_FIELDS on MoveFunction {\n name\n visibility\n isEntry\n parameters {\n signature\n }\n typeParameters {\n constraints\n }\n return {\n repr\n signature\n }\n}\nfragment RPC_MOVE_STRUCT_FIELDS on MoveStruct {\n name\n abilities\n fields {\n name\n type {\n signature\n }\n }\n typeParameters {\n isPhantom\n constraints\n }\n}`, {\"fragmentName\":\"RPC_MOVE_MODULE_FIELDS\"}) as unknown as TypedDocumentString<Rpc_Move_Module_FieldsFragment, unknown>;\nexport const Rpc_Object_Owner_FieldsFragmentDoc = new TypedDocumentString(`\n fragment RPC_OBJECT_OWNER_FIELDS on ObjectOwner {\n __typename\n ... on AddressOwner {\n owner {\n asObject {\n address\n }\n asAddress {\n address\n }\n }\n }\n ... on Parent {\n parent {\n address\n }\n }\n ... on Shared {\n initialSharedVersion\n }\n}\n `, {\"fragmentName\":\"RPC_OBJECT_OWNER_FIELDS\"}) as unknown as TypedDocumentString<Rpc_Object_Owner_FieldsFragment, unknown>;\nexport const Rpc_Object_FieldsFragmentDoc = new TypedDocumentString(`\n fragment RPC_OBJECT_FIELDS on Object {\n objectId: address\n version\n asMoveObject @include(if: $showType) {\n contents {\n type {\n repr\n }\n }\n }\n asMoveObject @include(if: $showContent) {\n contents {\n data\n type {\n repr\n layout\n signature\n }\n }\n }\n asMoveObject @include(if: $showBcs) {\n contents {\n bcs\n type {\n repr\n }\n }\n }\n owner @include(if: $showOwner) {\n ...RPC_OBJECT_OWNER_FIELDS\n }\n previousTransactionBlock @include(if: $showPreviousTransaction) {\n digest\n }\n storageRebate @include(if: $showStorageRebate)\n digest\n version\n display @include(if: $showDisplay) {\n key\n value\n error\n }\n}\n fragment RPC_OBJECT_OWNER_FIELDS on ObjectOwner {\n __typename\n ... on AddressOwner {\n owner {\n asObject {\n address\n }\n asAddress {\n address\n }\n }\n }\n ... on Parent {\n parent {\n address\n }\n }\n ... on Shared {\n initialSharedVersion\n }\n}`, {\"fragmentName\":\"RPC_OBJECT_FIELDS\"}) as unknown as TypedDocumentString<Rpc_Object_FieldsFragment, unknown>;\nexport const Rpc_Move_Object_FieldsFragmentDoc = new TypedDocumentString(`\n fragment RPC_MOVE_OBJECT_FIELDS on MoveObject {\n objectId: address\n bcs @include(if: $showBcs)\n contents @include(if: $showType) {\n type {\n repr\n }\n }\n contents @include(if: $showContent) {\n data\n type {\n repr\n layout\n signature\n }\n }\n contents @include(if: $showBcs) {\n bcs\n type {\n repr\n }\n }\n owner @include(if: $showOwner) {\n ...RPC_OBJECT_OWNER_FIELDS\n }\n previousTransactionBlock @include(if: $showPreviousTransaction) {\n digest\n }\n storageRebate @include(if: $showStorageRebate)\n digest\n version\n display @include(if: $showDisplay) {\n key\n value\n error\n }\n}\n fragment RPC_OBJECT_OWNER_FIELDS on ObjectOwner {\n __typename\n ... on AddressOwner {\n owner {\n asObject {\n address\n }\n asAddress {\n address\n }\n }\n }\n ... on Parent {\n parent {\n address\n }\n }\n ... on Shared {\n initialSharedVersion\n }\n}`, {\"fragmentName\":\"RPC_MOVE_OBJECT_FIELDS\"}) as unknown as TypedDocumentString<Rpc_Move_Object_FieldsFragment, unknown>;\nexport const Rpc_Stake_FieldsFragmentDoc = new TypedDocumentString(`\n fragment RPC_STAKE_FIELDS on StakedIota {\n principal\n activatedEpoch {\n epochId\n referenceGasPrice\n }\n stakeStatus\n requestedEpoch {\n epochId\n }\n activatedEpoch {\n epochId\n }\n contents {\n json\n }\n address\n estimatedReward\n}\n `, {\"fragmentName\":\"RPC_STAKE_FIELDS\"}) as unknown as TypedDocumentString<Rpc_Stake_FieldsFragment, unknown>;\nexport const Rpc_Events_FieldsFragmentDoc = new TypedDocumentString(`\n fragment RPC_EVENTS_FIELDS on Event {\n sendingModule {\n package {\n address\n }\n name\n }\n sender {\n address\n }\n type {\n repr\n }\n json\n bcs\n timestamp\n}\n `, {\"fragmentName\":\"RPC_EVENTS_FIELDS\"}) as unknown as TypedDocumentString<Rpc_Events_FieldsFragment, unknown>;\nexport const Paginate_Transaction_ListsFragmentDoc = new TypedDocumentString(`\n fragment PAGINATE_TRANSACTION_LISTS on TransactionBlock {\n effects {\n events(after: $afterEvents) @include(if: $hasMoreEvents) {\n pageInfo {\n hasNextPage\n endCursor\n }\n nodes {\n ...RPC_EVENTS_FIELDS\n }\n }\n balanceChanges(after: $afterBalanceChanges) @include(if: $hasMoreBalanceChanges) {\n pageInfo {\n hasNextPage\n endCursor\n }\n nodes {\n coinType {\n repr\n }\n owner {\n asObject {\n address\n }\n asAddress {\n address\n }\n }\n amount\n }\n }\n objectChanges(after: $afterObjectChanges) @include(if: $hasMoreObjectChanges) {\n pageInfo {\n hasNextPage\n endCursor\n }\n nodes {\n address\n inputState {\n version\n asMoveObject {\n contents {\n type {\n repr\n }\n }\n }\n }\n outputState {\n asMoveObject {\n contents {\n type {\n repr\n }\n }\n }\n asMovePackage {\n modules(first: 10) {\n nodes {\n name\n }\n }\n }\n }\n }\n }\n }\n}\n fragment RPC_EVENTS_FIELDS on Event {\n sendingModule {\n package {\n address\n }\n name\n }\n sender {\n address\n }\n type {\n repr\n }\n json\n bcs\n timestamp\n}`, {\"fragmentName\":\"PAGINATE_TRANSACTION_LISTS\"}) as unknown as TypedDocumentString<Paginate_Transaction_ListsFragment, unknown>;\nexport const Rpc_Transaction_FieldsFragmentDoc = new TypedDocumentString(`\n fragment RPC_TRANSACTION_FIELDS on TransactionBlock {\n digest\n rawTransaction: bcs @include(if: $showInput)\n rawTransaction: bcs @include(if: $showRawInput)\n sender {\n address\n }\n signatures\n effects {\n bcs @include(if: $showEffects)\n bcs @include(if: $showObjectChanges)\n bcs @include(if: $showRawEffects)\n events @include(if: $showEvents) {\n pageInfo {\n hasNextPage\n endCursor\n }\n nodes {\n ...RPC_EVENTS_FIELDS\n }\n }\n checkpoint {\n sequenceNumber\n }\n timestamp\n balanceChanges @include(if: $showBalanceChanges) {\n pageInfo {\n hasNextPage\n endCursor\n }\n nodes {\n coinType {\n repr\n }\n owner {\n asObject {\n address\n }\n asAddress {\n address\n }\n }\n amount\n }\n }\n objectChanges @include(if: $showObjectChanges) {\n pageInfo {\n hasNextPage\n endCursor\n }\n nodes {\n address\n inputState {\n version\n asMoveObject {\n contents {\n type {\n repr\n }\n }\n }\n }\n outputState {\n asMoveObject {\n contents {\n type {\n repr\n }\n }\n }\n asMovePackage {\n modules(first: 10) {\n nodes {\n name\n }\n }\n }\n }\n }\n }\n }\n}\n fragment RPC_EVENTS_FIELDS on Event {\n sendingModule {\n package {\n address\n }\n name\n }\n sender {\n address\n }\n type {\n repr\n }\n json\n bcs\n timestamp\n}`, {\"fragmentName\":\"RPC_TRANSACTION_FIELDS\"}) as unknown as TypedDocumentString<Rpc_Transaction_FieldsFragment, unknown>;\nexport const GetCheckpointDocument = new TypedDocumentString(`\n query getCheckpoint($id: CheckpointId) {\n checkpoint(id: $id) {\n ...RPC_Checkpoint_Fields\n }\n}\n fragment RPC_Checkpoint_Fields on Checkpoint {\n digest\n epoch {\n epochId\n }\n rollingGasSummary {\n computationCost\n computationCostBurned\n storageCost\n storageRebate\n nonRefundableStorageFee\n }\n networkTotalTransactions\n previousCheckpointDigest\n sequenceNumber\n timestamp\n validatorSignatures\n transactionBlocks {\n pageInfo {\n hasNextPage\n endCursor\n }\n nodes {\n digest\n }\n }\n endOfEpoch: transactionBlocks(last: 1, filter: {kind: SYSTEM_TX}) {\n nodes {\n kind {\n __typename\n ... on EndOfEpochTransaction {\n transactions(last: 1) {\n nodes {\n __typename\n ... on ChangeEpochTransaction {\n epoch {\n validatorSet {\n activeValidators {\n pageInfo {\n hasNextPage\n endCursor\n }\n nodes {\n credentials {\n protocolPubKey\n }\n votingPower\n }\n }\n }\n protocolConfigs {\n protocolVersion\n }\n epochId\n }\n }\n }\n }\n }\n }\n }\n }\n}`) as unknown as TypedDocumentString<GetCheckpointQuery, GetCheckpointQueryVariables>;\nexport const GetCheckpointsDocument = new TypedDocumentString(`\n query getCheckpoints($first: Int, $before: String, $last: Int, $after: String) {\n checkpoints(first: $first, after: $after, last: $last, before: $before) {\n pageInfo {\n startCursor\n endCursor\n hasNextPage\n hasPreviousPage\n }\n nodes {\n ...RPC_Checkpoint_Fields\n }\n }\n}\n fragment RPC_Checkpoint_Fields on Checkpoint {\n digest\n epoch {\n epochId\n }\n rollingGasSummary {\n computationCost\n computationCostBurned\n storageCost\n storageRebate\n nonRefundableStorageFee\n }\n networkTotalTransactions\n previousCheckpointDigest\n sequenceNumber\n timestamp\n validatorSignatures\n transactionBlocks {\n pageInfo {\n hasNextPage\n endCursor\n }\n nodes {\n digest\n }\n }\n endOfEpoch: transactionBlocks(last: 1, filter: {kind: SYSTEM_TX}) {\n nodes {\n kind {\n __typename\n ... on EndOfEpochTransaction {\n transactions(last: 1) {\n nodes {\n __typename\n ... on ChangeEpochTransaction {\n epoch {\n validatorSet {\n activeValidators {\n pageInfo {\n hasNextPage\n endCursor\n }\n nodes {\n credentials {\n protocolPubKey\n }\n votingPower\n }\n }\n }\n protocolConfigs {\n protocolVersion\n }\n epochId\n }\n }\n }\n }\n }\n }\n }\n }\n}`) as unknown as TypedDocumentString<GetCheckpointsQuery, GetCheckpointsQueryVariables>;\nexport const PaginateCheckpointTransactionBlocksDocument = new TypedDocumentString(`\n query paginateCheckpointTransactionBlocks($id: CheckpointId, $after: String) {\n checkpoint(id: $id) {\n transactionBlocks(after: $after) {\n pageInfo {\n hasNextPage\n endCursor\n }\n nodes {\n digest\n }\n }\n }\n}\n `) as unknown as TypedDocumentString<PaginateCheckpointTransactionBlocksQuery, PaginateCheckpointTransactionBlocksQueryVariables>;\nexport const DevInspectTransactionBlockDocument = new TypedDocumentString(`\n query devInspectTransactionBlock($txBytes: String!, $txMeta: TransactionMetadata!, $showBalanceChanges: Boolean = false, $showEffects: Boolean = false, $showRawEffects: Boolean = false, $showEvents: Boolean = false, $showInput: Boolean = false, $showObjectChanges: Boolean = false, $showRawInput: Boolean = false) {\n dryRunTransactionBlock(txBytes: $txBytes, txMeta: $txMeta) {\n error\n results {\n mutatedReferences {\n input {\n __typename\n ... on Input {\n inputIndex: ix\n }\n ... on Result {\n cmd\n resultIndex: ix\n }\n }\n type {\n repr\n }\n bcs\n }\n returnValues {\n type {\n repr\n }\n bcs\n }\n }\n transaction {\n ...RPC_TRANSACTION_FIELDS\n }\n }\n}\n fragment RPC_EVENTS_FIELDS on Event {\n sendingModule {\n package {\n address\n }\n name\n }\n sender {\n address\n }\n type {\n repr\n }\n json\n bcs\n timestamp\n}\nfragment RPC_TRANSACTION_FIELDS on TransactionBlock {\n digest\n rawTransaction: bcs @include(if: $showInput)\n rawTransaction: bcs @include(if: $showRawInput)\n sender {\n address\n }\n signatures\n effects {\n bcs @include(if: $showEffects)\n bcs @include(if: $showObjectChanges)\n bcs @include(if: $showRawEffects)\n events @include(if: $showEvents) {\n pageInfo {\n hasNextPage\n endCursor\n }\n nodes {\n ...RPC_EVENTS_FIELDS\n }\n }\n checkpoint {\n sequenceNumber\n }\n timestamp\n balanceChanges @include(if: $showBalanceChanges) {\n pageInfo {\n hasNextPage\n endCursor\n }\n nodes {\n coinType {\n repr\n }\n owner {\n asObject {\n address\n }\n asAddress {\n address\n }\n }\n amount\n }\n }\n objectChanges @include(if: $showObjectChanges) {\n pageInfo {\n hasNextPage\n endCursor\n }\n nodes {\n address\n inputState {\n version\n asMoveObject {\n contents {\n type {\n repr\n }\n }\n }\n }\n outputState {\n asMoveObject {\n contents {\n type {\n repr\n }\n }\n }\n asMovePackage {\n modules(first: 10) {\n nodes {\n name\n }\n }\n }\n }\n }\n }\n }\n}`) as unknown as TypedDocumentString<DevInspectTransactionBlockQuery, DevInspectTransactionBlockQueryVariables>;\nexport const DryRunTransactionBlockDocument = new TypedDocumentString(`\n query dryRunTransactionBlock($txBytes: String!, $showBalanceChanges: Boolean = false, $showEffects: Boolean = false, $showRawEffects: Boolean = false, $showEvents: Boolean = false, $showInput: Boolean = false, $showObjectChanges: Boolean = false, $showRawInput: Boolean = false) {\n dryRunTransactionBlock(txBytes: $txBytes) {\n error\n transaction {\n ...RPC_TRANSACTION_FIELDS\n }\n }\n}\n fragment RPC_EVENTS_FIELDS on Event {\n sendingModule {\n package {\n address\n }\n name\n }\n sender {\n address\n }\n type {\n repr\n }\n json\n bcs\n timestamp\n}\nfragment RPC_TRANSACTION_FIELDS on TransactionBlock {\n digest\n rawTransaction: bcs @include(if: $showInput)\n rawTransaction: bcs @include(if: $showRawInput)\n sender {\n address\n }\n signatures\n effects {\n bcs @include(if: $showEffects)\n bcs @include(if: $showObjectChanges)\n bcs @include(if: $showRawEffects)\n events @include(if: $showEvents) {\n pageInfo {\n hasNextPage\n endCursor\n }\n nodes {\n ...RPC_EVENTS_FIELDS\n }\n }\n checkpoint {\n sequenceNumber\n }\n timestamp\n balanceChanges @include(if: $showBalanceChanges) {\n pageInfo {\n hasNextPage\n endCursor\n }\n nodes {\n coinType {\n repr\n }\n owner {\n asObject {\n address\n }\n asAddress {\n address\n }\n }\n amount\n }\n }\n objectChanges @include(if: $showObjectChanges) {\n pageInfo {\n hasNextPage\n endCursor\n }\n nodes {\n address\n inputState {\n version\n asMoveObject {\n contents {\n type {\n repr\n }\n }\n }\n }\n outputState {\n asMoveObject {\n contents {\n type {\n repr\n }\n }\n }\n asMovePackage {\n modules(first: 10) {\n nodes {\n name\n }\n }\n }\n }\n }\n }\n }\n}`) as unknown as TypedDocumentString<DryRunTransactionBlockQuery, DryRunTransactionBlockQueryVariables>;\nexport const ExecuteTransactionBlockDocument = new TypedDocumentString(`\n mutation executeTransactionBlock($txBytes: String!, $signatures: [String!]!, $showBalanceChanges: Boolean = false, $showEffects: Boolean = false, $showRawEffects: Boolean = false, $showEvents: Boolean = false, $showInput: Boolean = false, $showObjectChanges: Boolean = false, $showRawInput: Boolean = false) {\n executeTransactionBlock(txBytes: $txBytes, signatures: $signatures) {\n errors\n effects {\n transactionBlock {\n ...RPC_TRANSACTION_FIELDS\n }\n }\n }\n}\n fragment RPC_EVENTS_FIELDS on Event {\n sendingModule {\n package {\n address\n }\n name\n }\n sender {\n address\n }\n type {\n repr\n }\n json\n bcs\n timestamp\n}\nfragment RPC_TRANSACTION_FIELDS on TransactionBlock {\n digest\n rawTransaction: bcs @include(if: $showInput)\n rawTransaction: bcs @include(if: $showRawInput)\n sender {\n address\n }\n signatures\n effects {\n bcs @include(if: $showEffects)\n bcs @include(if: $showObjectChanges)\n bcs @include(if: $showRawEffects)\n events @include(if: $showEvents) {\n pageInfo {\n hasNextPage\n endCursor\n }\n nodes {\n ...RPC_EVENTS_FIELDS\n }\n }\n checkpoint {\n sequenceNumber\n }\n timestamp\n balanceChanges @include(if: $showBalanceChanges) {\n pageInfo {\n hasNextPage\n endCursor\n }\n nodes {\n coinType {\n repr\n }\n owner {\n asObject {\n address\n }\n asAddress {\n address\n }\n }\n amount\n }\n }\n objectChanges @include(if: $showObjectChanges) {\n pageInfo {\n hasNextPage\n endCursor\n }\n nodes {\n address\n inputState {\n version\n asMoveObject {\n contents {\n type {\n repr\n }\n }\n }\n }\n outputState {\n asMoveObject {\n contents {\n type {\n repr\n }\n }\n }\n asMovePackage {\n modules(first: 10) {\n nodes {\n name\n }\n }\n }\n }\n }\n }\n }\n}`) as unknown as TypedDocumentString<ExecuteTransactionBlockMutation, ExecuteTransactionBlockMutationVariables>;\nexport const GetAllBalancesDocument = new TypedDocumentString(`\n query getAllBalances($owner: IotaAddress!, $limit: Int, $cursor: String) {\n address(address: $owner) {\n balances(first: $limit, after: $cursor) {\n pageInfo {\n hasNextPage\n endCursor\n }\n nodes {\n coinType {\n repr\n }\n coinObjectCount\n totalBalance\n }\n }\n }\n}\n `) as unknown as TypedDocumentString<GetAllBalancesQuery, GetAllBalancesQueryVariables>;\nexport const GetBalanceDocument = new TypedDocumentString(`\n query getBalance($owner: IotaAddress!, $type: String = \"0x2::iota::IOTA\") {\n address(address: $owner) {\n balance(type: $type) {\n coinType {\n repr\n }\n coinObjectCount\n totalBalance\n }\n }\n}\n `) as unknown as TypedDocumentString<GetBalanceQuery, GetBalanceQueryVariables>;\nexport const GetChainIdentifierDocument = new TypedDocumentString(`\n query getChainIdentifier {\n chainIdentifier\n}\n `) as unknown as TypedDocumentString<GetChainIdentifierQuery, GetChainIdentifierQueryVariables>;\nexport const GetCoinMetadataDocument = new TypedDocumentString(`\n query getCoinMetadata($coinType: String!) {\n coinMetadata(coinType: $coinType) {\n decimals\n name\n symbol\n description\n iconUrl\n address\n }\n}\n `) as unknown as TypedDocumentString<GetCoinMetadataQuery, GetCoinMetadataQueryVariables>;\nexport const GetCoinsDocument = new TypedDocumentString(`\n query getCoins($owner: IotaAddress!, $first: Int, $cursor: String, $type: String = \"0x2::iota::IOTA\") {\n address(address: $owner) {\n address\n coins(first: $first, after: $cursor, type: $type) {\n pageInfo {\n hasNextPage\n endCursor\n }\n nodes {\n coinBalance\n contents {\n type {\n repr\n }\n }\n address\n version\n digest\n previousTransactionBlock {\n digest\n }\n }\n }\n }\n}\n `) as unknown as TypedDocumentString<GetCoinsQuery, GetCoinsQueryVariables>;\nexport const GetCommitteeInfoDocument = new TypedDocumentString(`\n query getCommitteeInfo($epochId: UInt53, $after: String) {\n epoch(id: $epochId) {\n epochId\n validatorSet {\n activeValidators(after: $after) {\n pageInfo {\n hasNextPage\n endCursor\n }\n nodes {\n credentials {\n authorityPubKey\n }\n votingPower\n }\n }\n }\n }\n}\n `) as unknown as TypedDocumentString<GetCommitteeInfoQuery, GetCommitteeInfoQueryVariables>;\nexport const GetCurrentEpochDocument = new TypedDocumentString(`\n query getCurrentEpoch {\n epoch {\n epochId\n validatorSet {\n activeValidators {\n pageInfo {\n hasNextPage\n endCursor\n }\n nodes {\n ...RPC_VALIDATOR_FIELDS\n }\n }\n }\n totalTransactions\n firstCheckpoint: checkpoints(first: 1) {\n nodes {\n sequenceNumber\n }\n }\n startTimestamp\n endTimestamp\n referenceGasPrice\n }\n}\n fragment RPC_VALIDATOR_FIELDS on Validator {\n atRisk\n commissionRate\n exchangeRatesSize\n exchangeRates {\n contents {\n json\n }\n address\n }\n description\n gasPrice\n imageUrl\n name\n credentials {\n ...RPC_CREDENTIAL_FIELDS\n }\n nextEpochCommissionRate\n nextEpochGasPrice\n nextEpochCredentials {\n ...RPC_CREDENTIAL_FIELDS\n }\n nextEpochStake\n nextEpochCommissionRate\n operationCap {\n address\n }\n pendingPoolTokenWithdraw\n pendingStake\n pendingTotalIotaWithdraw\n poolTokenBalance\n projectUrl\n rewardsPool\n stakingPool {\n address\n }\n stakingPoolActivationEpoch\n stakingPoolIotaBalance\n address {\n address\n }\n votingPower\n}\nfragment RPC_CREDENTIAL_FIELDS on ValidatorCredentials {\n netAddress\n networkPubKey\n p2PAddress\n primaryAddress\n authorityPubKey\n proofOfPossession\n protocolPubKey\n}`) as unknown as TypedDocumentString<GetCurrentEpochQuery, GetCurrentEpochQueryVariables>;\nexport const PaginateEpochValidatorsDocument = new TypedDocumentString(`\n query paginateEpochValidators($id: UInt53!, $after: String) {\n epoch(id: $id) {\n validatorSet {\n activeValidators(after: $after) {\n pageInfo {\n hasNextPage\n endCursor\n }\n nodes {\n ...RPC_VALIDATOR_FIELDS\n }\n }\n }\n }\n}\n fragment RPC_VALIDATOR_FIELDS on Validator {\n atRisk\n commissionRate\n exchangeRatesSize\n exchangeRates {\n contents {\n json\n }\n address\n }\n description\n gasPrice\n imageUrl\n name\n credentials {\n ...RPC_CREDENTIAL_FIELDS\n }\n nextEpochCommissionRate\n nextEpochGasPrice\n nextEpochCredentials {\n ...RPC_CREDENTIAL_FIELDS\n }\n nextEpochStake\n nextEpochCommissionRate\n operationCap {\n address\n }\n pendingPoolTokenWithdraw\n pendingStake\n pendingTotalIotaWithdraw\n poolTokenBalance\n projectUrl\n rewardsPool\n stakingPool {\n address\n }\n stakingPoolActivationEpoch\n stakingPoolIotaBalance\n address {\n address\n }\n votingPower\n}\nfragment RPC_CREDENTIAL_FIELDS on ValidatorCredentials {\n netAddress\n networkPubKey\n p2PAddress\n primaryAddress\n authorityPubKey\n proofOfPossession\n protocolPubKey\n}`) as unknown as TypedDocumentString<PaginateEpochValidatorsQuery, PaginateEpochValidatorsQueryVariables>;\nexport const GetTypeLayoutDocument = new TypedDocumentString(`\n query getTypeLayout($type: String!) {\n type(type: $type) {\n layout\n }\n}\n `) as unknown as TypedDocumentString<GetTypeLayoutQuery, GetTypeLayoutQueryVariables>;\nexport const GetDynamicFieldObjectDocument = new TypedDocumentString(`\n query getDynamicFieldObject($parentId: IotaAddress!, $name: DynamicFieldName!) {\n owner(address: $parentId) {\n dynamicObjectField(name: $name) {\n value {\n __typename\n ... on MoveObject {\n owner {\n __typename\n ... on Parent {\n parent {\n address\n digest\n version\n storageRebate\n owner {\n __typename\n ... on Parent {\n parent {\n address\n }\n }\n }\n previousTransactionBlock {\n digest\n }\n asMoveObject {\n contents {\n data\n type {\n repr\n layout\n }\n }\n }\n }\n }\n }\n }\n }\n }\n }\n}\n `) as unknown as TypedDocumentString<GetDynamicFieldObjectQuery, GetDynamicFieldObjectQueryVariables>;\nexport const GetDynamicFieldsDocument = new TypedDocumentString(`\n query getDynamicFields($parentId: IotaAddress!, $first: Int, $cursor: String) {\n owner(address: $parentId) {\n dynamicFields(first: $first, after: $cursor) {\n pageInfo {\n hasNextPage\n endCursor\n }\n nodes {\n name {\n bcs\n json\n type {\n layout\n repr\n }\n }\n value {\n __typename\n ... on MoveValue {\n json\n type {\n repr\n }\n }\n ... on MoveObject {\n contents {\n type {\n repr\n }\n json\n }\n address\n digest\n version\n }\n }\n }\n }\n }\n}\n `) as unknown as TypedDocumentString<GetDynamicFieldsQuery, GetDynamicFieldsQueryVariables>;\nexport const GetLatestCheckpointSequenceNumberDocument = new TypedDocumentString(`\n query getLatestCheckpointSequenceNumber {\n checkpoint {\n sequenceNumber\n }\n}\n `) as unknown as TypedDocumentString<GetLatestCheckpointSequenceNumberQuery, GetLatestCheckpointSequenceNumberQueryVariables>;\nexport const GetLatestIotaSystemStateDocument = new TypedDocumentString(`\n query getLatestIotaSystemState {\n epoch {\n epochId\n startTimestamp\n endTimestamp\n referenceGasPrice\n safeMode {\n enabled\n gasSummary {\n computationCost\n computationCostBurned\n nonRefundableStorageFee\n storageCost\n storageRebate\n }\n }\n storageFund {\n nonRefundableBalance\n totalObjectStorageRebates\n }\n systemStateVersion\n iotaTotalSupply\n iotaTreasuryCapId\n systemParameters {\n minValidatorCount\n maxValidatorCount\n minValidatorJoiningStake\n durationMs\n validatorLowStakeThreshold\n validatorLowStakeGracePeriod\n validatorVeryLowStakeThreshold\n }\n protocolConfigs {\n protocolVersion\n }\n validatorSet {\n activeValidators {\n pageInfo {\n hasNextPage\n endCursor\n }\n nodes {\n ...RPC_VALIDATOR_FIELDS\n }\n }\n inactivePoolsSize\n pendingActiveValidatorsSize\n stakingPoolMappingsSize\n validatorCandidatesSize\n pendingRemovals\n totalStake\n stakingPoolMappingsId\n pendingActiveValidatorsId\n validatorCandidatesId\n inactivePoolsId\n }\n }\n}\n fragment RPC_VALIDATOR_FIELDS on Validator {\n atRisk\n commissionRate\n exchangeRatesSize\n exchangeRates {\n contents {\n json\n }\n address\n }\n description\n gasPrice\n imageUrl\n name\n credentials {\n ...RPC_CREDENTIAL_FIELDS\n }\n nextEpochCommissionRate\n nextEpochGasPrice\n nextEpochCredentials {\n ...RPC_CREDENTIAL_FIELDS\n }\n nextEpochStake\n nextEpochCommissionRate\n operationCap {\n address\n }\n pendingPoolTokenWithdraw\n pendingStake\n pendingTotalIotaWithdraw\n poolTokenBalance\n projectUrl\n rewardsPool\n stakingPool {\n address\n }\n stakingPoolActivationEpoch\n stakingPoolIotaBalance\n address {\n address\n }\n votingPower\n}\nfragment RPC_CREDENTIAL_FIELDS on ValidatorCredentials {\n netAddress\n networkPubKey\n p2PAddress\n primaryAddress\n authorityPubKey\n proofOfPossession\n protocolPubKey\n}`) as unknown as TypedDocumentString<GetLatestIotaSystemStateQuery, GetLatestIotaSystemStateQueryVariables>;\nexport const GetMoveFunctionArgTypesDocument = new TypedDocumentString(`\n query getMoveFunctionArgTypes($packageId: IotaAddress!, $module: String!, $function: String!) {\n object(address: $packageId) {\n asMovePackage {\n module(name: $module) {\n fileFormatVersion\n function(name: $function) {\n parameters {\n signature\n }\n }\n }\n }\n }\n}\n `) as unknown as TypedDocumentString<GetMoveFunctionArgTypesQuery, GetMoveFunctionArgTypesQueryVariables>;\nexport const GetNormalizedMoveFunctionDocument = new TypedDocumentString(`\n query getNormalizedMoveFunction($packageId: IotaAddress!, $module: String!, $function: String!) {\n object(address: $packageId) {\n address\n asMovePackage {\n module(name: $module) {\n fileFormatVersion\n function(name: $function) {\n ...RPC_MOVE_FUNCTION_FIELDS\n }\n }\n }\n }\n}\n fragment RPC_MOVE_FUNCTION_FIELDS on MoveFunction {\n name\n visibility\n isEntry\n parameters {\n signature\n }\n typeParameters {\n constraints\n }\n return {\n repr\n signature\n }\n}`) as unknown as TypedDocumentString<GetNormalizedMoveFunctionQuery, GetNormalizedMoveFunctionQueryVariables>;\nexport const GetNormalizedMoveModuleDocument = new TypedDocumentString(`\n query getNormalizedMoveModule($packageId: IotaAddress!, $module: String!) {\n object(address: $packageId) {\n asMovePackage {\n module(name: $module) {\n ...RPC_MOVE_MODULE_FIELDS\n }\n }\n }\n}\n fragment RPC_MOVE_FUNCTION_FIELDS on MoveFunction {\n name\n visibility\n isEntry\n parameters {\n signature\n }\n typeParameters {\n constraints\n }\n return {\n repr\n signature\n }\n}\nfragment RPC_MOVE_MODULE_FIELDS on MoveModule {\n name\n friends {\n pageInfo {\n hasNextPage\n endCursor\n }\n nodes {\n name\n package {\n address\n }\n }\n }\n structs {\n pageInfo {\n hasNextPage\n endCursor\n }\n nodes {\n ...RPC_MOVE_STRUCT_FIELDS\n }\n }\n fileFormatVersion\n functions {\n pageInfo {\n hasNextPage\n endCursor\n }\n nodes {\n ...RPC_MOVE_FUNCTION_FIELDS\n }\n }\n}\nfragment RPC_MOVE_STRUCT_FIELDS on MoveStruct {\n name\n abilities\n fields {\n name\n type {\n signature\n }\n }\n typeParameters {\n isPhantom\n constraints\n }\n}`) as unknown as TypedDocumentString<GetNormalizedMoveModuleQuery, GetNormalizedMoveModuleQueryVariables>;\nexport const PaginateMoveModuleListsDocument = new TypedDocumentString(`\n query paginateMoveModuleLists($packageId: IotaAddress!, $module: String!, $hasMoreFriends: Boolean!, $hasMoreStructs: Boolean!, $hasMoreFunctions: Boolean!, $afterFriends: String, $afterStructs: String, $afterFunctions: String) {\n object(address: $packageId) {\n asMovePackage {\n module(name: $module) {\n friends(after: $afterFriends) @include(if: $hasMoreFriends) {\n pageInfo {\n hasNextPage\n endCursor\n }\n nodes {\n name\n package {\n address\n }\n }\n }\n structs(after: $afterStructs) @include(if: $hasMoreStructs) {\n pageInfo {\n hasNextPage\n endCursor\n }\n nodes {\n ...RPC_MOVE_STRUCT_FIELDS\n }\n }\n functions(after: $afterFunctions) @include(if: $hasMoreFunctions) {\n pageInfo {\n hasNextPage\n endCursor\n }\n nodes {\n ...RPC_MOVE_FUNCTION_FIELDS\n }\n }\n }\n }\n }\n}\n fragment RPC_MOVE_FUNCTION_FIELDS on MoveFunction {\n name\n visibility\n isEntry\n parameters {\n signature\n }\n typeParameters {\n constraints\n }\n return {\n repr\n signature\n }\n}\nfragment RPC_MOVE_STRUCT_FIELDS on MoveStruct {\n name\n abilities\n fields {\n name\n type {\n signature\n }\n }\n typeParameters {\n isPhantom\n constraints\n }\n}`) as unknown as TypedDocumentString<PaginateMoveModuleListsQuery, PaginateMoveModuleListsQueryVariables>;\nexport const GetNormalizedMoveModulesByPackageDocument = new TypedDocumentString(`\n query getNormalizedMoveModulesByPackage($packageId: IotaAddress!, $cursor: String) {\n object(address: $packageId) {\n asMovePackage {\n address\n modules(after: $cursor) {\n pageInfo {\n hasNextPage\n endCursor\n }\n nodes {\n ...RPC_MOVE_MODULE_FIELDS\n }\n }\n }\n }\n}\n fragment RPC_MOVE_FUNCTION_FIELDS on MoveFunction {\n name\n visibility\n isEntry\n parameters {\n signature\n }\n typeParameters {\n constraints\n }\n return {\n repr\n signature\n }\n}\nfragment RPC_MOVE_MODULE_FIELDS on MoveModule {\n name\n friends {\n pageInfo {\n hasNextPage\n endCursor\n }\n nodes {\n name\n package {\n address\n }\n }\n }\n structs {\n pageInfo {\n hasNextPage\n endCursor\n }\n nodes {\n ...RPC_MOVE_STRUCT_FIELDS\n }\n }\n fileFormatVersion\n functions {\n pageInfo {\n hasNextPage\n endCursor\n }\n nodes {\n ...RPC_MOVE_FUNCTION_FIELDS\n }\n }\n}\nfragment RPC_MOVE_STRUCT_FIELDS on MoveStruct {\n name\n abilities\n fields {\n name\n type {\n signature\n }\n }\n typeParameters {\n isPhantom\n constraints\n }\n}`) as unknown as TypedDocumentString<GetNormalizedMoveModulesByPackageQuery, GetNormalizedMoveModulesByPackageQueryVariables>;\nexport const GetNormalizedMoveStructDocument = new TypedDocumentString(`\n query getNormalizedMoveStruct($packageId: IotaAddress!, $module: String!, $struct: String!) {\n object(address: $packageId) {\n asMovePackage {\n address\n module(name: $module) {\n fileFormatVersion\n struct(name: $struct) {\n ...RPC_MOVE_STRUCT_FIELDS\n }\n }\n }\n }\n}\n fragment RPC_MOVE_STRUCT_FIELDS on MoveStruct {\n name\n abilities\n fields {\n name\n type {\n signature\n }\n }\n typeParameters {\n isPhantom\n constraints\n }\n}`) as unknown as TypedDocumentString<GetNormalizedMoveStructQuery, GetNormalizedMoveStructQueryVariables>;\nexport const GetProtocolConfigDocument = new TypedDocumentString(`\n query getProtocolConfig($protocolVersion: UInt53) {\n protocolConfig(protocolVersion: $protocolVersion) {\n protocolVersion\n configs {\n key\n value\n }\n featureFlags {\n key\n value\n }\n }\n}\n `) as unknown as TypedDocumentString<GetProtocolConfigQuery, GetProtocolConfigQueryVariables>;\nexport const GetReferenceGasPriceDocument = new TypedDocumentString(`\n query getReferenceGasPrice {\n epoch {\n referenceGasPrice\n }\n}\n `) as unknown as TypedDocumentString<GetReferenceGasPriceQuery, GetReferenceGasPriceQueryVariables>;\nexport const GetTotalSupplyDocument = new TypedDocumentString(`\n query getTotalSupply($coinType: String!) {\n coinMetadata(coinType: $coinType) {\n supply\n decimals\n }\n}\n `) as unknown as TypedDocumentString<GetTotalSupplyQuery, GetTotalSupplyQueryVariables>;\nexport const GetTotalTransactionBlocksDocument = new TypedDocumentString(`\n query getTotalTransactionBlocks {\n checkpoint {\n networkTotalTransactions\n }\n}\n `) as unknown as TypedDocumentString<GetTotalTransactionBlocksQuery, GetTotalTransactionBlocksQueryVariables>;\nexport const GetValidatorsApyDocument = new TypedDocumentString(`\n query getValidatorsApy {\n epoch {\n epochId\n validatorSet {\n activeValidators {\n pageInfo {\n hasNextPage\n endCursor\n }\n nodes {\n address {\n address\n }\n apy\n }\n }\n }\n }\n}\n `) as unknown as TypedDocumentString<GetValidatorsApyQuery, GetValidatorsApyQueryVariables>;\nexport const GetOwnedObjectsDocument = new TypedDocumentString(`\n query getOwnedObjects($owner: IotaAddress!, $limit: Int, $cursor: String, $showBcs: Boolean = false, $showContent: Boolean = false, $showDisplay: Boolean = false, $showType: Boolean = false, $showOwner: Boolean = false, $showPreviousTransaction: Boolean = false, $showStorageRebate: Boolean = false, $filter: ObjectFilter) {\n address(address: $owner) {\n objects(first: $limit, after: $cursor, filter: $filter) {\n pageInfo {\n hasNextPage\n endCursor\n }\n nodes {\n ...RPC_MOVE_OBJECT_FIELDS\n }\n }\n }\n}\n fragment RPC_MOVE_OBJECT_FIELDS on MoveObject {\n objectId: address\n bcs @include(if: $showBcs)\n contents @include(if: $showType) {\n type {\n repr\n }\n }\n contents @include(if: $showContent) {\n data\n type {\n repr\n layout\n signature\n }\n }\n contents @include(if: $showBcs) {\n bcs\n type {\n repr\n }\n }\n owner @include(if: $showOwner) {\n ...RPC_OBJECT_OWNER_FIELDS\n }\n previousTransactionBlock @include(if: $showPreviousTransaction) {\n digest\n }\n storageRebate @include(if: $showStorageRebate)\n digest\n version\n display @include(if: $showDisplay) {\n key\n value\n error\n }\n}\nfragment RPC_OBJECT_OWNER_FIELDS on ObjectOwner {\n __typename\n ... on AddressOwner {\n owner {\n asObject {\n address\n }\n asAddress {\n address\n }\n }\n }\n ... on Parent {\n parent {\n address\n }\n }\n ... on Shared {\n initialSharedVersion\n }\n}`) as unknown as TypedDocumentString<GetOwnedObjectsQuery, GetOwnedObjectsQueryVariables>;\nexport const GetObjectDocument = new TypedDocumentString(`\n query getObject($id: IotaAddress!, $showBcs: Boolean = false, $showOwner: Boolean = false, $showPreviousTransaction: Boolean = false, $showContent: Boolean = false, $showDisplay: Boolean = false, $showType: Boolean = false, $showStorageRebate: Boolean = false) {\n object(address: $id) {\n ...RPC_OBJECT_FIELDS\n }\n}\n fragment RPC_OBJECT_FIELDS on Object {\n objectId: address\n version\n asMoveObject @include(if: $showType) {\n contents {\n type {\n repr\n }\n }\n }\n asMoveObject @include(if: $showContent) {\n contents {\n data\n type {\n repr\n layout\n signature\n }\n }\n }\n asMoveObject @include(if: $showBcs) {\n contents {\n bcs\n type {\n repr\n }\n }\n }\n owner @include(if: $showOwner) {\n ...RPC_OBJECT_OWNER_FIELDS\n }\n previousTransactionBlock @include(if: $showPreviousTransaction) {\n digest\n }\n storageRebate @include(if: $showStorageRebate)\n digest\n version\n display @include(if: $showDisplay) {\n key\n value\n error\n }\n}\nfragment RPC_OBJECT_OWNER_FIELDS on ObjectOwner {\n __typename\n ... on AddressOwner {\n owner {\n asObject {\n address\n }\n asAddress {\n address\n }\n }\n }\n ... on Parent {\n parent {\n address\n }\n }\n ... on Shared {\n initialSharedVersion\n }\n}`) as unknown as TypedDocumentString<GetObjectQuery, GetObjectQueryVariables>;\nexport const TryGetPastObjectDocument = new TypedDocumentString(`\n query tryGetPastObject($id: IotaAddress!, $version: UInt53, $showBcs: Boolean = false, $showOwner: Boolean = false, $showPreviousTransaction: Boolean = false, $showContent: Boolean = false, $showDisplay: Boolean = false, $showType: Boolean = false, $showStorageRebate: Boolean = false) {\n current: object(address: $id) {\n address\n version\n }\n object(address: $id, version: $version) {\n ...RPC_OBJECT_FIELDS\n }\n}\n fragment RPC_OBJECT_FIELDS on Object {\n objectId: address\n version\n asMoveObject @include(if: $showType) {\n contents {\n type {\n repr\n }\n }\n }\n asMoveObject @include(if: $showContent) {\n contents {\n data\n type {\n repr\n layout\n signature\n }\n }\n }\n asMoveObject @include(if: $showBcs) {\n contents {\n bcs\n type {\n repr\n }\n }\n }\n owner @include(if: $showOwner) {\n ...RPC_OBJECT_OWNER_FIELDS\n }\n previousTransactionBlock @include(if: $showPreviousTransaction) {\n digest\n }\n storageRebate @include(if: $showStorageRebate)\n digest\n version\n display @include(if: $showDisplay) {\n key\n value\n error\n }\n}\nfragment RPC_OBJECT_OWNER_FIELDS on ObjectOwner {\n __typename\n ... on AddressOwner {\n owner {\n asObject {\n address\n }\n asAddress {\n address\n }\n }\n }\n ... on Parent {\n parent {\n address\n }\n }\n ... on Shared {\n initialSharedVersion\n }\n}`) as unknown as TypedDocumentString<TryGetPastObjectQuery, TryGetPastObjectQueryVariables>;\nexport const MultiGetObjectsDocument = new TypedDocumentString(`\n query multiGetObjects($ids: [IotaAddress!]!, $limit: Int, $cursor: String, $showBcs: Boolean = false, $showContent: Boolean = false, $showDisplay: Boolean = false, $showType: Boolean = false, $showOwner: Boolean = false, $showPreviousTransaction: Boolean = false, $showStorageRebate: Boolean = false) {\n objects(first: $limit, after: $cursor, filter: {objectIds: $ids}) {\n pageInfo {\n hasNextPage\n endCursor\n }\n nodes {\n ...RPC_OBJECT_FIELDS\n }\n }\n}\n fragment RPC_OBJECT_FIELDS on Object {\n objectId: address\n version\n asMoveObject @include(if: $showType) {\n contents {\n type {\n repr\n }\n }\n }\n asMoveObject @include(if: $showContent) {\n contents {\n data\n type {\n repr\n layout\n signature\n }\n }\n }\n asMoveObject @include(if: $showBcs) {\n contents {\n bcs\n type {\n repr\n }\n }\n }\n owner @include(if: $showOwner) {\n ...RPC_OBJECT_OWNER_FIELDS\n }\n previousTransactionBlock @include(if: $showPreviousTransaction) {\n digest\n }\n storageRebate @include(if: $showStorageRebate)\n digest\n version\n display @include(if: $showDisplay) {\n key\n value\n error\n }\n}\nfragment RPC_OBJECT_OWNER_FIELDS on ObjectOwner {\n __typename\n ... on AddressOwner {\n owner {\n asObject {\n address\n }\n asAddress {\n address\n }\n }\n }\n ... on Parent {\n parent {\n address\n }\n }\n ... on Shared {\n initialSharedVersion\n }\n}`) as unknown as TypedDocumentString<MultiGetObjectsQuery, MultiGetObjectsQueryVariables>;\nexport const QueryEventsDocument = new TypedDocumentString(`\n query queryEvents($filter: EventFilter!, $before: String, $after: String, $first: Int, $last: Int) {\n events(\n filter: $filter\n first: $first\n after: $after\n last: $last\n before: $before\n ) {\n pageInfo {\n hasNextPage\n hasPreviousPage\n endCursor\n startCursor\n }\n nodes {\n ...RPC_EVENTS_FIELDS\n }\n }\n}\n fragment RPC_EVENTS_FIELDS on Event {\n sendingModule {\n package {\n address\n }\n name\n }\n sender {\n address\n }\n type {\n repr\n }\n json\n bcs\n timestamp\n}`) as unknown as TypedDocumentString<QueryEventsQuery, QueryEventsQueryVariables>;\nexport const GetStakesDocument = new TypedDocumentString(`\n query getStakes($owner: IotaAddress!, $limit: Int, $cursor: String) {\n address(address: $owner) {\n stakedIotas(first: $limit, after: $cursor) {\n pageInfo {\n hasNextPage\n endCursor\n }\n nodes {\n ...RPC_STAKE_FIELDS\n }\n }\n }\n}\n fragment RPC_STAKE_FIELDS on StakedIota {\n principal\n activatedEpoch {\n epochId\n referenceGasPrice\n }\n stakeStatus\n requestedEpoch {\n epochId\n }\n activatedEpoch {\n epochId\n }\n contents {\n json\n }\n address\n estimatedReward\n}`) as unknown as TypedDocumentString<GetStakesQuery, GetStakesQueryVariables>;\nexport const GetStakesByIdsDocument = new TypedDocumentString(`\n query getStakesByIds($ids: [IotaAddress!]!, $limit: Int, $cursor: String) {\n objects(first: $limit, after: $cursor, filter: {objectIds: $ids}) {\n pageInfo {\n hasNextPage\n endCursor\n }\n nodes {\n asMoveObject {\n asStakedIota {\n ...RPC_STAKE_FIELDS\n }\n }\n }\n }\n}\n fragment RPC_STAKE_FIELDS on StakedIota {\n principal\n activatedEpoch {\n epochId\n referenceGasPrice\n }\n stakeStatus\n requestedEpoch {\n epochId\n }\n activatedEpoch {\n epochId\n }\n contents {\n json\n }\n address\n estimatedReward\n}`) as unknown as TypedDocumentString<GetStakesByIdsQuery, GetStakesByIdsQueryVariables>;\nexport const QueryTransactionBlocksDocument = new TypedDocumentString(`\n query queryTransactionBlocks($first: Int, $last: Int, $before: String, $after: String, $showBalanceChanges: Boolean = false, $showEffects: Boolean = false, $showRawEffects: Boolean = false, $showEvents: Boolean = false, $showInput: Boolean = false, $showObjectChanges: Boolean = false, $showRawInput: Boolean = false, $filter: TransactionBlockFilter) {\n transactionBlocks(\n first: $first\n after: $after\n last: $last\n before: $before\n filter: $filter\n ) {\n pageInfo {\n hasNextPage\n hasPreviousPage\n startCursor\n endCursor\n }\n nodes {\n ...RPC_TRANSACTION_FIELDS\n }\n }\n}\n fragment RPC_EVENTS_FIELDS on Event {\n sendingModule {\n package {\n address\n }\n name\n }\n sender {\n address\n }\n type {\n repr\n }\n json\n bcs\n timestamp\n}\nfragment RPC_TRANSACTION_FIELDS on TransactionBlock {\n digest\n rawTransaction: bcs @include(if: $showInput)\n rawTransaction: bcs @include(if: $showRawInput)\n sender {\n address\n }\n signatures\n effects {\n bcs @include(if: $showEffects)\n bcs @include(if: $showObjectChanges)\n bcs @include(if: $showRawEffects)\n events @include(if: $showEvents) {\n pageInfo {\n hasNextPage\n endCursor\n }\n nodes {\n ...RPC_EVENTS_FIELDS\n }\n }\n checkpoint {\n sequenceNumber\n }\n timestamp\n balanceChanges @include(if: $showBalanceChanges) {\n pageInfo {\n hasNextPage\n endCursor\n }\n nodes {\n coinType {\n repr\n }\n owner {\n asObject {\n address\n }\n asAddress {\n address\n }\n }\n amount\n }\n }\n objectChanges @include(if: $showObjectChanges) {\n pageInfo {\n hasNextPage\n endCursor\n }\n nodes {\n address\n inputState {\n version\n asMoveObject {\n contents {\n type {\n repr\n }\n }\n }\n }\n outputState {\n asMoveObject {\n contents {\n type {\n repr\n }\n }\n }\n asMovePackage {\n modules(first: 10) {\n nodes {\n name\n }\n }\n }\n }\n }\n }\n }\n}`) as unknown as TypedDocumentString<QueryTransactionBlocksQuery, QueryTransactionBlocksQueryVariables>;\nexport const GetTransactionBlockDocument = new TypedDocumentString(`\n query getTransactionBlock($digest: String!, $showBalanceChanges: Boolean = false, $showEffects: Boolean = false, $showRawEffects: Boolean = false, $showEvents: Boolean = false, $showInput: Boolean = false, $showObjectChanges: Boolean = false, $showRawInput: Boolean = false) {\n transactionBlock(digest: $digest) {\n ...RPC_TRANSACTION_FIELDS\n }\n}\n fragment RPC_EVENTS_FIELDS on Event {\n sendingModule {\n package {\n address\n }\n name\n }\n sender {\n address\n }\n type {\n repr\n }\n json\n bcs\n timestamp\n}\nfragment RPC_TRANSACTION_FIELDS on TransactionBlock {\n digest\n rawTransaction: bcs @include(if: $showInput)\n rawTransaction: bcs @include(if: $showRawInput)\n sender {\n address\n }\n signatures\n effects {\n bcs @include(if: $showEffects)\n bcs @include(if: $showObjectChanges)\n bcs @include(if: $showRawEffects)\n events @include(if: $showEvents) {\n pageInfo {\n hasNextPage\n endCursor\n }\n nodes {\n ...RPC_EVENTS_FIELDS\n }\n }\n checkpoint {\n sequenceNumber\n }\n timestamp\n balanceChanges @include(if: $showBalanceChanges) {\n pageInfo {\n hasNextPage\n endCursor\n }\n nodes {\n coinType {\n repr\n }\n owner {\n asObject {\n address\n }\n asAddress {\n address\n }\n }\n amount\n }\n }\n objectChanges @include(if: $showObjectChanges) {\n pageInfo {\n hasNextPage\n endCursor\n }\n nodes {\n address\n inputState {\n version\n asMoveObject {\n contents {\n type {\n repr\n }\n }\n }\n }\n outputState {\n asMoveObject {\n contents {\n type {\n repr\n }\n }\n }\n asMovePackage {\n modules(first: 10) {\n nodes {\n name\n }\n }\n }\n }\n }\n }\n }\n}`) as unknown as TypedDocumentString<GetTransactionBlockQuery, GetTransactionBlockQueryVariables>;\nexport const MultiGetTransactionBlocksDocument = new TypedDocumentString(`\n query multiGetTransactionBlocks($digests: [String!]!, $limit: Int, $cursor: String, $showBalanceChanges: Boolean = false, $showEffects: Boolean = false, $showRawEffects: Boolean = false, $showEvents: Boolean = false, $showInput: Boolean = false, $showObjectChanges: Boolean = false, $showRawInput: Boolean = false) {\n transactionBlocks(\n first: $limit\n after: $cursor\n filter: {transactionIds: $digests}\n ) {\n pageInfo {\n hasNextPage\n hasPreviousPage\n startCursor\n endCursor\n }\n nodes {\n ...RPC_TRANSACTION_FIELDS\n }\n }\n}\n fragment RPC_EVENTS_FIELDS on Event {\n sendingModule {\n package {\n address\n }\n name\n }\n sender {\n address\n }\n type {\n repr\n }\n json\n bcs\n timestamp\n}\nfragment RPC_TRANSACTION_FIELDS on TransactionBlock {\n digest\n rawTransaction: bcs @include(if: $showInput)\n rawTransaction: bcs @include(if: $showRawInput)\n sender {\n address\n }\n signatures\n effects {\n bcs @include(if: $showEffects)\n bcs @include(if: $showObjectChanges)\n bcs @include(if: $showRawEffects)\n events @include(if: $showEvents) {\n pageInfo {\n hasNextPage\n endCursor\n }\n nodes {\n ...RPC_EVENTS_FIELDS\n }\n }\n checkpoint {\n sequenceNumber\n }\n timestamp\n balanceChanges @include(if: $showBalanceChanges) {\n pageInfo {\n hasNextPage\n endCursor\n }\n nodes {\n coinType {\n repr\n }\n owner {\n asObject {\n address\n }\n asAddress {\n address\n }\n }\n amount\n }\n }\n objectChanges @include(if: $showObjectChanges) {\n pageInfo {\n hasNextPage\n endCursor\n }\n nodes {\n address\n inputState {\n version\n asMoveObject {\n contents {\n type {\n repr\n }\n }\n }\n }\n outputState {\n asMoveObject {\n contents {\n type {\n repr\n }\n }\n }\n asMovePackage {\n modules(first: 10) {\n nodes {\n name\n }\n }\n }\n }\n }\n }\n }\n}`) as unknown as TypedDocumentString<MultiGetTransactionBlocksQuery, MultiGetTransactionBlocksQueryVariables>;\nexport const PaginateTransactionBlockListsDocument = new TypedDocumentString(`\n query paginateTransactionBlockLists($digest: String!, $hasMoreEvents: Boolean!, $hasMoreBalanceChanges: Boolean!, $hasMoreObjectChanges: Boolean!, $afterEvents: String, $afterBalanceChanges: String, $afterObjectChanges: String) {\n transactionBlock(digest: $digest) {\n ...PAGINATE_TRANSACTION_LISTS\n }\n}\n fragment RPC_EVENTS_FIELDS on Event {\n sendingModule {\n package {\n address\n }\n name\n }\n sender {\n address\n }\n type {\n repr\n }\n json\n bcs\n timestamp\n}\nfragment PAGINATE_TRANSACTION_LISTS on TransactionBlock {\n effects {\n events(after: $afterEvents) @include(if: $hasMoreEvents) {\n pageInfo {\n hasNextPage\n endCursor\n }\n nodes {\n ...RPC_EVENTS_FIELDS\n }\n }\n balanceChanges(after: $afterBalanceChanges) @include(if: $hasMoreBalanceChanges) {\n pageInfo {\n hasNextPage\n endCursor\n }\n nodes {\n coinType {\n repr\n }\n owner {\n asObject {\n address\n }\n asAddress {\n address\n }\n }\n amount\n }\n }\n objectChanges(after: $afterObjectChanges) @include(if: $hasMoreObjectChanges) {\n pageInfo {\n hasNextPage\n endCursor\n }\n nodes {\n address\n inputState {\n version\n asMoveObject {\n contents {\n type {\n repr\n }\n }\n }\n }\n outputState {\n asMoveObject {\n contents {\n type {\n repr\n }\n }\n }\n asMovePackage {\n modules(first: 10) {\n nodes {\n name\n }\n }\n }\n }\n }\n }\n }\n}`) as unknown as TypedDocumentString<PaginateTransactionBlockListsQuery, PaginateTransactionBlockListsQueryVariables>;"],
|
|
4
|
+
"sourcesContent": ["// Copyright (c) Mysten Labs, Inc.\n// Modifications Copyright (c) 2024 IOTA Stiftung\n// SPDX-License-Identifier: Apache-2.0\n/* eslint-disable */\n\nimport { DocumentTypeDecoration } from '@graphql-typed-document-node/core';\nexport type Maybe<T> = T | null;\nexport type InputMaybe<T> = Maybe<T>;\nexport type Exact<T extends { [key: string]: unknown }> = { [K in keyof T]: T[K] };\nexport type MakeOptional<T, K extends keyof T> = Omit<T, K> & { [SubKey in K]?: Maybe<T[SubKey]> };\nexport type MakeMaybe<T, K extends keyof T> = Omit<T, K> & { [SubKey in K]: Maybe<T[SubKey]> };\nexport type MakeEmpty<T extends { [key: string]: unknown }, K extends keyof T> = { [_ in K]?: never };\nexport type Incremental<T> = T | { [P in keyof T]?: P extends ' $fragmentName' | '__typename' ? T[P] : never };\n/** All built-in and custom scalars, mapped to their actual values */\nexport type Scalars = {\n ID: { input: string; output: string; }\n String: { input: string; output: string; }\n Boolean: { input: boolean; output: boolean; }\n Int: { input: number; output: number; }\n Float: { input: number; output: number; }\n /** String containing Base64-encoded binary data. */\n Base64: { input: any; output: any; }\n /** String representation of an arbitrary width, possibly signed integer. */\n BigInt: { input: any; output: any; }\n /** ISO-8601 Date and Time: RFC3339 in UTC with format: YYYY-MM-DDTHH:MM:SS.mmmZ. Note that the milliseconds part is optional, and it may be omitted if its value is 0. */\n DateTime: { input: any; output: any; }\n /** String containing 32B hex-encoded address, with a leading \"0x\". Leading zeroes can be omitted on input but will always appear in outputs (IotaAddress in output is guaranteed to be 66 characters long). */\n IotaAddress: { input: any; output: any; }\n /** Arbitrary JSON data. */\n JSON: { input: any; output: any; }\n /**\n * The contents of a Move Value, corresponding to the following recursive type:\n *\n * type MoveData =\n * { Address: IotaAddress }\n * | { UID: IotaAddress }\n * | { ID: IotaAddress }\n * | { Bool: bool }\n * | { Number: BigInt }\n * | { String: string }\n * | { Vector: [MoveData] }\n * | { Option: MoveData? }\n * | { Struct: [{ name: string , value: MoveData }] }\n * | { Variant: {\n * name: string,\n * fields: [{ name: string, value: MoveData }],\n * }\n */\n MoveData: { input: any; output: any; }\n /**\n * The shape of a concrete Move Type (a type with all its type parameters instantiated with concrete types), corresponding to the following recursive type:\n *\n * type MoveTypeLayout =\n * \"address\"\n * | \"bool\"\n * | \"u8\" | \"u16\" | ... | \"u256\"\n * | { vector: MoveTypeLayout }\n * | {\n * struct: {\n * type: string,\n * fields: [{ name: string, layout: MoveTypeLayout }],\n * }\n * }\n * | { enum: [{\n * type: string,\n * variants: [{\n * name: string,\n * fields: [{ name: string, layout: MoveTypeLayout }],\n * }]\n * }]\n * }\n */\n MoveTypeLayout: { input: any; output: any; }\n /**\n * The signature of a concrete Move Type (a type with all its type parameters instantiated with concrete types, that contains no references), corresponding to the following recursive type:\n *\n * type MoveTypeSignature =\n * \"address\"\n * | \"bool\"\n * | \"u8\" | \"u16\" | ... | \"u256\"\n * | { vector: MoveTypeSignature }\n * | {\n * datatype: {\n * package: string,\n * module: string,\n * type: string,\n * typeParameters: [MoveTypeSignature],\n * }\n * }\n */\n MoveTypeSignature: { input: any; output: any; }\n /**\n * The shape of an abstract Move Type (a type that can contain free type parameters, and can optionally be taken by reference), corresponding to the following recursive type:\n *\n * type OpenMoveTypeSignature = {\n * ref: (\"&\" | \"&mut\")?,\n * body: OpenMoveTypeSignatureBody,\n * }\n *\n * type OpenMoveTypeSignatureBody =\n * \"address\"\n * | \"bool\"\n * | \"u8\" | \"u16\" | ... | \"u256\"\n * | { vector: OpenMoveTypeSignatureBody }\n * | {\n * datatype {\n * package: string,\n * module: string,\n * type: string,\n * typeParameters: [OpenMoveTypeSignatureBody]\n * }\n * }\n * | { typeParameter: number }\n */\n OpenMoveTypeSignature: { input: any; output: any; }\n /**\n * An unsigned integer that can hold values up to 2^53 - 1. This can be treated\n * similarly to `Int`, but it is guaranteed to be non-negative, and it may be\n * larger than 2^32 - 1.\n */\n UInt53: { input: any; output: any; }\n};\n\nexport type ActiveJwk = {\n __typename?: 'ActiveJwk';\n /** The JWK algorithm parameter, (RFC 7517, Section 4.4). */\n alg: Scalars['String']['output'];\n /** The JWK RSA public exponent, (RFC 7517, Section 9.3). */\n e: Scalars['String']['output'];\n /** The most recent epoch in which the JWK was validated. */\n epoch?: Maybe<Epoch>;\n /** The string (Issuing Authority) that identifies the OIDC provider. */\n iss: Scalars['String']['output'];\n /**\n * The string (Key ID) that identifies the JWK among a set of JWKs, (RFC\n * 7517, Section 4.5).\n */\n kid: Scalars['String']['output'];\n /** The JWK key type parameter, (RFC 7517, Section 4.1). */\n kty: Scalars['String']['output'];\n /** The JWK RSA modulus, (RFC 7517, Section 9.3). */\n n: Scalars['String']['output'];\n};\n\nexport type ActiveJwkConnection = {\n __typename?: 'ActiveJwkConnection';\n /** A list of edges. */\n edges: Array<ActiveJwkEdge>;\n /** A list of nodes. */\n nodes: Array<ActiveJwk>;\n /** Information to aid in pagination. */\n pageInfo: PageInfo;\n};\n\n/** An edge in a connection. */\nexport type ActiveJwkEdge = {\n __typename?: 'ActiveJwkEdge';\n /** A cursor for use in pagination */\n cursor: Scalars['String']['output'];\n /** The item at the end of the edge */\n node: ActiveJwk;\n};\n\n/**\n * The 32-byte address that is an account address (corresponding to a public\n * key).\n */\nexport type Address = IOwner & {\n __typename?: 'Address';\n address: Scalars['IotaAddress']['output'];\n /**\n * Total balance of all coins with marker type owned by this address. If\n * type is not supplied, it defaults to `0x2::iota::IOTA`.\n */\n balance?: Maybe<Balance>;\n /** The balances of all coin types owned by this address. */\n balances: BalanceConnection;\n /**\n * The coin objects for this address.\n *\n * `type` is a filter on the coin's type parameter, defaulting to\n * `0x2::iota::IOTA`.\n */\n coins: CoinConnection;\n /** Objects owned by this address, optionally `filter`-ed. */\n objects: MoveObjectConnection;\n /** The `0x3::staking_pool::StakedIota` objects owned by this address. */\n stakedIotas: StakedIotaConnection;\n /**\n * Similar behavior to the `transactionBlocks` in Query but supporting the\n * additional `AddressTransactionBlockRelationship` filter, which\n * defaults to `SIGN`.\n *\n * `scanLimit` restricts the number of candidate transactions scanned when\n * gathering a page of results. It is required for queries that apply\n * more than two complex filters (on function, kind, sender, recipient,\n * input object, changed object, or ids), and can be at most\n * `serviceConfig.maxScanLimit`.\n *\n * When the scan limit is reached the page will be returned even if it has\n * fewer than `first` results when paginating forward (`last` when\n * paginating backwards). If there are more transactions to scan,\n * `pageInfo.hasNextPage` (or `pageInfo.hasPreviousPage`) will be set to\n * `true`, and `PageInfo.endCursor` (or `PageInfo.startCursor`) will be set\n * to the last transaction that was scanned as opposed to the last (or\n * first) transaction in the page.\n *\n * Requesting the next (or previous) page after this cursor will resume the\n * search, scanning the next `scanLimit` many transactions in the\n * direction of pagination, and so on until all transactions in the\n * scanning range have been visited.\n *\n * By default, the scanning range includes all transactions known to\n * GraphQL, but it can be restricted by the `after` and `before`\n * cursors, and the `beforeCheckpoint`, `afterCheckpoint` and\n * `atCheckpoint` filters.\n */\n transactionBlocks: TransactionBlockConnection;\n};\n\n\n/**\n * The 32-byte address that is an account address (corresponding to a public\n * key).\n */\nexport type AddressBalanceArgs = {\n type?: InputMaybe<Scalars['String']['input']>;\n};\n\n\n/**\n * The 32-byte address that is an account address (corresponding to a public\n * key).\n */\nexport type AddressBalancesArgs = {\n after?: InputMaybe<Scalars['String']['input']>;\n before?: InputMaybe<Scalars['String']['input']>;\n first?: InputMaybe<Scalars['Int']['input']>;\n last?: InputMaybe<Scalars['Int']['input']>;\n};\n\n\n/**\n * The 32-byte address that is an account address (corresponding to a public\n * key).\n */\nexport type AddressCoinsArgs = {\n after?: InputMaybe<Scalars['String']['input']>;\n before?: InputMaybe<Scalars['String']['input']>;\n first?: InputMaybe<Scalars['Int']['input']>;\n last?: InputMaybe<Scalars['Int']['input']>;\n type?: InputMaybe<Scalars['String']['input']>;\n};\n\n\n/**\n * The 32-byte address that is an account address (corresponding to a public\n * key).\n */\nexport type AddressObjectsArgs = {\n after?: InputMaybe<Scalars['String']['input']>;\n before?: InputMaybe<Scalars['String']['input']>;\n filter?: InputMaybe<ObjectFilter>;\n first?: InputMaybe<Scalars['Int']['input']>;\n last?: InputMaybe<Scalars['Int']['input']>;\n};\n\n\n/**\n * The 32-byte address that is an account address (corresponding to a public\n * key).\n */\nexport type AddressStakedIotasArgs = {\n after?: InputMaybe<Scalars['String']['input']>;\n before?: InputMaybe<Scalars['String']['input']>;\n first?: InputMaybe<Scalars['Int']['input']>;\n last?: InputMaybe<Scalars['Int']['input']>;\n};\n\n\n/**\n * The 32-byte address that is an account address (corresponding to a public\n * key).\n */\nexport type AddressTransactionBlocksArgs = {\n after?: InputMaybe<Scalars['String']['input']>;\n before?: InputMaybe<Scalars['String']['input']>;\n filter?: InputMaybe<TransactionBlockFilter>;\n first?: InputMaybe<Scalars['Int']['input']>;\n last?: InputMaybe<Scalars['Int']['input']>;\n relation?: InputMaybe<AddressTransactionBlockRelationship>;\n scanLimit?: InputMaybe<Scalars['Int']['input']>;\n};\n\nexport type AddressConnection = {\n __typename?: 'AddressConnection';\n /** A list of edges. */\n edges: Array<AddressEdge>;\n /** A list of nodes. */\n nodes: Array<Address>;\n /** Information to aid in pagination. */\n pageInfo: PageInfo;\n};\n\n/** An edge in a connection. */\nexport type AddressEdge = {\n __typename?: 'AddressEdge';\n /** A cursor for use in pagination */\n cursor: Scalars['String']['output'];\n /** The item at the end of the edge */\n node: Address;\n};\n\n/**\n * An address-owned object is owned by a specific 32-byte address that is\n * either an account address (derived from a particular signature scheme) or\n * an object ID. An address-owned object is accessible only to its owner and no\n * others.\n */\nexport type AddressOwner = {\n __typename?: 'AddressOwner';\n owner?: Maybe<Owner>;\n};\n\n/**\n * The possible relationship types for a transaction block: sign, sent,\n * received, or paid.\n */\nexport enum AddressTransactionBlockRelationship {\n /** Transactions that sent objects to this address. */\n Recv = 'RECV',\n /** Transactions this address has signed either as a sender or as a sponsor. */\n Sign = 'SIGN'\n}\n\n/** System transaction for creating the on-chain state used by zkLogin. */\nexport type AuthenticatorStateCreateTransaction = {\n __typename?: 'AuthenticatorStateCreateTransaction';\n /** A workaround to define an empty variant of a GraphQL union. */\n _?: Maybe<Scalars['Boolean']['output']>;\n};\n\nexport type AuthenticatorStateExpireTransaction = {\n __typename?: 'AuthenticatorStateExpireTransaction';\n /** The initial version that the AuthenticatorStateUpdateV1 was shared at. */\n authenticatorObjInitialSharedVersion: Scalars['UInt53']['output'];\n /** Expire JWKs that have a lower epoch than this. */\n minEpoch?: Maybe<Epoch>;\n};\n\n/** System transaction for updating the on-chain state used by zkLogin. */\nexport type AuthenticatorStateUpdateTransaction = {\n __typename?: 'AuthenticatorStateUpdateTransaction';\n /** The initial version of the authenticator object that it was shared at. */\n authenticatorObjInitialSharedVersion: Scalars['UInt53']['output'];\n /** Epoch of the authenticator state update transaction. */\n epoch?: Maybe<Epoch>;\n /** Newly active JWKs (JSON Web Keys). */\n newActiveJwks: ActiveJwkConnection;\n /** Consensus round of the authenticator state update. */\n round: Scalars['UInt53']['output'];\n};\n\n\n/** System transaction for updating the on-chain state used by zkLogin. */\nexport type AuthenticatorStateUpdateTransactionNewActiveJwksArgs = {\n after?: InputMaybe<Scalars['String']['input']>;\n before?: InputMaybe<Scalars['String']['input']>;\n first?: InputMaybe<Scalars['Int']['input']>;\n last?: InputMaybe<Scalars['Int']['input']>;\n};\n\n/**\n * Range of checkpoints that the RPC is guaranteed to produce a consistent\n * response for.\n */\nexport type AvailableRange = {\n __typename?: 'AvailableRange';\n first?: Maybe<Checkpoint>;\n last?: Maybe<Checkpoint>;\n};\n\n/** The total balance for a particular coin type. */\nexport type Balance = {\n __typename?: 'Balance';\n /** How many coins of this type constitute the balance */\n coinObjectCount?: Maybe<Scalars['UInt53']['output']>;\n /** Coin type for the balance, such as 0x2::iota::IOTA */\n coinType: MoveType;\n /** Total balance across all coin objects of the coin type */\n totalBalance?: Maybe<Scalars['BigInt']['output']>;\n};\n\n/**\n * Effects to the balance (sum of coin values per coin type) owned by an\n * address or object.\n */\nexport type BalanceChange = {\n __typename?: 'BalanceChange';\n /** The signed balance change. */\n amount?: Maybe<Scalars['BigInt']['output']>;\n /**\n * The inner type of the coin whose balance has changed (e.g.\n * `0x2::iota::IOTA`).\n */\n coinType?: Maybe<MoveType>;\n /** The address or object whose balance has changed. */\n owner?: Maybe<Owner>;\n};\n\nexport type BalanceChangeConnection = {\n __typename?: 'BalanceChangeConnection';\n /** A list of edges. */\n edges: Array<BalanceChangeEdge>;\n /** A list of nodes. */\n nodes: Array<BalanceChange>;\n /** Information to aid in pagination. */\n pageInfo: PageInfo;\n};\n\n/** An edge in a connection. */\nexport type BalanceChangeEdge = {\n __typename?: 'BalanceChangeEdge';\n /** A cursor for use in pagination */\n cursor: Scalars['String']['output'];\n /** The item at the end of the edge */\n node: BalanceChange;\n};\n\nexport type BalanceConnection = {\n __typename?: 'BalanceConnection';\n /** A list of edges. */\n edges: Array<BalanceEdge>;\n /** A list of nodes. */\n nodes: Array<Balance>;\n /** Information to aid in pagination. */\n pageInfo: PageInfo;\n};\n\n/** An edge in a connection. */\nexport type BalanceEdge = {\n __typename?: 'BalanceEdge';\n /** A cursor for use in pagination */\n cursor: Scalars['String']['output'];\n /** The item at the end of the edge */\n node: Balance;\n};\n\nexport type BridgeCommitteeInitTransaction = {\n __typename?: 'BridgeCommitteeInitTransaction';\n bridgeObjInitialSharedVersion: Scalars['UInt53']['output'];\n};\n\nexport type BridgeStateCreateTransaction = {\n __typename?: 'BridgeStateCreateTransaction';\n chainId: Scalars['String']['output'];\n};\n\n/**\n * A system transaction that updates epoch information on-chain (increments the\n * current epoch). Executed by the system once per epoch, without using gas.\n * Epoch change transactions cannot be submitted by users, because validators\n * will refuse to sign them.\n */\nexport type ChangeEpochTransaction = {\n __typename?: 'ChangeEpochTransaction';\n /**\n * The total amount of gas charged for computation during the previous\n * epoch (in NANOS).\n */\n computationCharge: Scalars['BigInt']['output'];\n /** The next (to become) epoch. */\n epoch?: Maybe<Epoch>;\n /**\n * The total gas retained from storage fees, that will not be returned by\n * storage rebates when the relevant objects are cleaned up (in NANOS).\n */\n nonRefundableStorageFee: Scalars['BigInt']['output'];\n /** The protocol version in effect in the new epoch. */\n protocolVersion: Scalars['UInt53']['output'];\n /** Time at which the next epoch will start. */\n startTimestamp: Scalars['DateTime']['output'];\n /**\n * The total amount of gas charged for storage during the previous epoch\n * (in NANOS).\n */\n storageCharge: Scalars['BigInt']['output'];\n /**\n * The IOTA returned to transaction senders for cleaning up objects (in\n * NANOS).\n */\n storageRebate: Scalars['BigInt']['output'];\n /**\n * System packages (specifically framework and move stdlib) that are\n * written before the new epoch starts, to upgrade them on-chain.\n * Validators write these packages out when running the transaction.\n */\n systemPackages: MovePackageConnection;\n};\n\n\n/**\n * A system transaction that updates epoch information on-chain (increments the\n * current epoch). Executed by the system once per epoch, without using gas.\n * Epoch change transactions cannot be submitted by users, because validators\n * will refuse to sign them.\n */\nexport type ChangeEpochTransactionSystemPackagesArgs = {\n after?: InputMaybe<Scalars['String']['input']>;\n before?: InputMaybe<Scalars['String']['input']>;\n first?: InputMaybe<Scalars['Int']['input']>;\n last?: InputMaybe<Scalars['Int']['input']>;\n};\n\n/**\n * Checkpoints contain finalized transactions and are used for node\n * synchronization and global transaction ordering.\n */\nexport type Checkpoint = {\n __typename?: 'Checkpoint';\n /**\n * A 32-byte hash that uniquely identifies the checkpoint contents, encoded\n * in Base58. This hash can be used to verify checkpoint contents by\n * checking signatures against the committee, Hashing contents to match\n * digest, and checking that the previous checkpoint digest matches.\n */\n digest: Scalars['String']['output'];\n /** The epoch this checkpoint is part of. */\n epoch?: Maybe<Epoch>;\n /**\n * The total number of transaction blocks in the network by the end of this\n * checkpoint.\n */\n networkTotalTransactions?: Maybe<Scalars['UInt53']['output']>;\n /** The digest of the checkpoint at the previous sequence number. */\n previousCheckpointDigest?: Maybe<Scalars['String']['output']>;\n /**\n * The computation cost, storage cost, storage rebate, and non-refundable\n * storage fee accumulated during this epoch, up to and including this\n * checkpoint. These values increase monotonically across checkpoints\n * in the same epoch, and reset on epoch boundaries.\n */\n rollingGasSummary?: Maybe<GasCostSummary>;\n /**\n * This checkpoint's position in the total order of finalized checkpoints,\n * agreed upon by consensus.\n */\n sequenceNumber: Scalars['UInt53']['output'];\n /**\n * The timestamp at which the checkpoint is agreed to have happened\n * according to consensus. Transactions that access time in this\n * checkpoint will observe this timestamp.\n */\n timestamp: Scalars['DateTime']['output'];\n /**\n * Transactions in this checkpoint.\n *\n * `scanLimit` restricts the number of candidate transactions scanned when\n * gathering a page of results. It is required for queries that apply\n * more than two complex filters (on function, kind, sender, recipient,\n * input object, changed object, or ids), and can be at most\n * `serviceConfig.maxScanLimit`.\n *\n * When the scan limit is reached the page will be returned even if it has\n * fewer than `first` results when paginating forward (`last` when\n * paginating backwards). If there are more transactions to scan,\n * `pageInfo.hasNextPage` (or `pageInfo.hasPreviousPage`) will be set to\n * `true`, and `PageInfo.endCursor` (or `PageInfo.startCursor`) will be set\n * to the last transaction that was scanned as opposed to the last (or\n * first) transaction in the page.\n *\n * Requesting the next (or previous) page after this cursor will resume the\n * search, scanning the next `scanLimit` many transactions in the\n * direction of pagination, and so on until all transactions in the\n * scanning range have been visited.\n *\n * By default, the scanning range consists of all transactions in this\n * checkpoint.\n */\n transactionBlocks: TransactionBlockConnection;\n /**\n * This is an aggregation of signatures from a quorum of validators for the\n * checkpoint proposal.\n */\n validatorSignatures: Scalars['Base64']['output'];\n};\n\n\n/**\n * Checkpoints contain finalized transactions and are used for node\n * synchronization and global transaction ordering.\n */\nexport type CheckpointTransactionBlocksArgs = {\n after?: InputMaybe<Scalars['String']['input']>;\n before?: InputMaybe<Scalars['String']['input']>;\n filter?: InputMaybe<TransactionBlockFilter>;\n first?: InputMaybe<Scalars['Int']['input']>;\n last?: InputMaybe<Scalars['Int']['input']>;\n scanLimit?: InputMaybe<Scalars['Int']['input']>;\n};\n\nexport type CheckpointConnection = {\n __typename?: 'CheckpointConnection';\n /** A list of edges. */\n edges: Array<CheckpointEdge>;\n /** A list of nodes. */\n nodes: Array<Checkpoint>;\n /** Information to aid in pagination. */\n pageInfo: PageInfo;\n};\n\n/** An edge in a connection. */\nexport type CheckpointEdge = {\n __typename?: 'CheckpointEdge';\n /** A cursor for use in pagination */\n cursor: Scalars['String']['output'];\n /** The item at the end of the edge */\n node: Checkpoint;\n};\n\n/**\n * Filter either by the digest, or the sequence number, or neither, to get the\n * latest checkpoint.\n */\nexport type CheckpointId = {\n digest?: InputMaybe<Scalars['String']['input']>;\n sequenceNumber?: InputMaybe<Scalars['UInt53']['input']>;\n};\n\n/** Some 0x2::coin::Coin Move object. */\nexport type Coin = IMoveObject & IObject & IOwner & {\n __typename?: 'Coin';\n address: Scalars['IotaAddress']['output'];\n /**\n * Total balance of all coins with marker type owned by this object. If\n * type is not supplied, it defaults to `0x2::iota::IOTA`.\n */\n balance?: Maybe<Balance>;\n /** The balances of all coin types owned by this object. */\n balances: BalanceConnection;\n /** The Base64-encoded BCS serialization of the object's content. */\n bcs?: Maybe<Scalars['Base64']['output']>;\n /** Balance of this coin object. */\n coinBalance?: Maybe<Scalars['BigInt']['output']>;\n /**\n * The coin objects for this object.\n *\n * `type` is a filter on the coin's type parameter, defaulting to\n * `0x2::iota::IOTA`.\n */\n coins: CoinConnection;\n /**\n * Displays the contents of the Move object in a JSON string and through\n * GraphQL types. Also provides the flat representation of the type\n * signature, and the BCS of the corresponding data.\n */\n contents?: Maybe<MoveValue>;\n /**\n * 32-byte hash that identifies the object's contents, encoded as a Base58\n * string.\n */\n digest?: Maybe<Scalars['String']['output']>;\n /**\n * The set of named templates defined on-chain for the type of this object,\n * to be handled off-chain. The server substitutes data from the object\n * into these templates to generate a display string per template.\n */\n display?: Maybe<Array<DisplayEntry>>;\n /**\n * Access a dynamic field on an object using its name. Names are arbitrary\n * Move values whose type have `copy`, `drop`, and `store`, and are\n * specified using their type, and their BCS contents, Base64 encoded.\n *\n * Dynamic fields on wrapped objects can be accessed by using the same API\n * under the Owner type.\n */\n dynamicField?: Maybe<DynamicField>;\n /**\n * The dynamic fields and dynamic object fields on an object.\n *\n * Dynamic fields on wrapped objects can be accessed by using the same API\n * under the Owner type.\n */\n dynamicFields: DynamicFieldConnection;\n /**\n * Access a dynamic object field on an object using its name. Names are\n * arbitrary Move values whose type have `copy`, `drop`, and `store`,\n * and are specified using their type, and their BCS contents, Base64\n * encoded. The value of a dynamic object field can also be accessed\n * off-chain directly via its address (e.g. using `Query.object`).\n *\n * Dynamic fields on wrapped objects can be accessed by using the same API\n * under the Owner type.\n */\n dynamicObjectField?: Maybe<DynamicField>;\n /** Objects owned by this object, optionally `filter`-ed. */\n objects: MoveObjectConnection;\n /** The owner type of this object: Immutable, Shared, Parent, Address */\n owner?: Maybe<ObjectOwner>;\n /** The transaction block that created this version of the object. */\n previousTransactionBlock?: Maybe<TransactionBlock>;\n /**\n * The transaction blocks that sent objects to this object.\n *\n * `scanLimit` restricts the number of candidate transactions scanned when\n * gathering a page of results. It is required for queries that apply\n * more than two complex filters (on function, kind, sender, recipient,\n * input object, changed object, or ids), and can be at most\n * `serviceConfig.maxScanLimit`.\n *\n * When the scan limit is reached the page will be returned even if it has\n * fewer than `first` results when paginating forward (`last` when\n * paginating backwards). If there are more transactions to scan,\n * `pageInfo.hasNextPage` (or `pageInfo.hasPreviousPage`) will be set to\n * `true`, and `PageInfo.endCursor` (or `PageInfo.startCursor`) will be set\n * to the last transaction that was scanned as opposed to the last (or\n * first) transaction in the page.\n *\n * Requesting the next (or previous) page after this cursor will resume the\n * search, scanning the next `scanLimit` many transactions in the\n * direction of pagination, and so on until all transactions in the\n * scanning range have been visited.\n *\n * By default, the scanning range includes all transactions known to\n * GraphQL, but it can be restricted by the `after` and `before`\n * cursors, and the `beforeCheckpoint`, `afterCheckpoint` and\n * `atCheckpoint` filters.\n */\n receivedTransactionBlocks: TransactionBlockConnection;\n /** The `0x3::staking_pool::StakedIota` objects owned by this object. */\n stakedIotas: StakedIotaConnection;\n /**\n * The current status of the object as read from the off-chain store. The\n * possible states are: NOT_INDEXED, the object is loaded from\n * serialized data, such as the contents of a genesis or system package\n * upgrade transaction. LIVE, the version returned is the most recent for\n * the object, and it is not deleted or wrapped at that version.\n * HISTORICAL, the object was referenced at a specific version or\n * checkpoint, so is fetched from historical tables and may not be the\n * latest version of the object. WRAPPED_OR_DELETED, the object is deleted\n * or wrapped and only partial information can be loaded.\"\n */\n status: ObjectKind;\n /**\n * The amount of IOTA we would rebate if this object gets deleted or\n * mutated. This number is recalculated based on the present storage\n * gas price.\n */\n storageRebate?: Maybe<Scalars['BigInt']['output']>;\n version: Scalars['UInt53']['output'];\n};\n\n\n/** Some 0x2::coin::Coin Move object. */\nexport type CoinBalanceArgs = {\n type?: InputMaybe<Scalars['String']['input']>;\n};\n\n\n/** Some 0x2::coin::Coin Move object. */\nexport type CoinBalancesArgs = {\n after?: InputMaybe<Scalars['String']['input']>;\n before?: InputMaybe<Scalars['String']['input']>;\n first?: InputMaybe<Scalars['Int']['input']>;\n last?: InputMaybe<Scalars['Int']['input']>;\n};\n\n\n/** Some 0x2::coin::Coin Move object. */\nexport type CoinCoinsArgs = {\n after?: InputMaybe<Scalars['String']['input']>;\n before?: InputMaybe<Scalars['String']['input']>;\n first?: InputMaybe<Scalars['Int']['input']>;\n last?: InputMaybe<Scalars['Int']['input']>;\n type?: InputMaybe<Scalars['String']['input']>;\n};\n\n\n/** Some 0x2::coin::Coin Move object. */\nexport type CoinDynamicFieldArgs = {\n name: DynamicFieldName;\n};\n\n\n/** Some 0x2::coin::Coin Move object. */\nexport type CoinDynamicFieldsArgs = {\n after?: InputMaybe<Scalars['String']['input']>;\n before?: InputMaybe<Scalars['String']['input']>;\n first?: InputMaybe<Scalars['Int']['input']>;\n last?: InputMaybe<Scalars['Int']['input']>;\n};\n\n\n/** Some 0x2::coin::Coin Move object. */\nexport type CoinDynamicObjectFieldArgs = {\n name: DynamicFieldName;\n};\n\n\n/** Some 0x2::coin::Coin Move object. */\nexport type CoinObjectsArgs = {\n after?: InputMaybe<Scalars['String']['input']>;\n before?: InputMaybe<Scalars['String']['input']>;\n filter?: InputMaybe<ObjectFilter>;\n first?: InputMaybe<Scalars['Int']['input']>;\n last?: InputMaybe<Scalars['Int']['input']>;\n};\n\n\n/** Some 0x2::coin::Coin Move object. */\nexport type CoinReceivedTransactionBlocksArgs = {\n after?: InputMaybe<Scalars['String']['input']>;\n before?: InputMaybe<Scalars['String']['input']>;\n filter?: InputMaybe<TransactionBlockFilter>;\n first?: InputMaybe<Scalars['Int']['input']>;\n last?: InputMaybe<Scalars['Int']['input']>;\n scanLimit?: InputMaybe<Scalars['Int']['input']>;\n};\n\n\n/** Some 0x2::coin::Coin Move object. */\nexport type CoinStakedIotasArgs = {\n after?: InputMaybe<Scalars['String']['input']>;\n before?: InputMaybe<Scalars['String']['input']>;\n first?: InputMaybe<Scalars['Int']['input']>;\n last?: InputMaybe<Scalars['Int']['input']>;\n};\n\nexport type CoinConnection = {\n __typename?: 'CoinConnection';\n /** A list of edges. */\n edges: Array<CoinEdge>;\n /** A list of nodes. */\n nodes: Array<Coin>;\n /** Information to aid in pagination. */\n pageInfo: PageInfo;\n};\n\n/** An edge in a connection. */\nexport type CoinEdge = {\n __typename?: 'CoinEdge';\n /** A cursor for use in pagination */\n cursor: Scalars['String']['output'];\n /** The item at the end of the edge */\n node: Coin;\n};\n\n/** The metadata for a coin type. */\nexport type CoinMetadata = IMoveObject & IObject & IOwner & {\n __typename?: 'CoinMetadata';\n address: Scalars['IotaAddress']['output'];\n /**\n * Total balance of all coins with marker type owned by this object. If\n * type is not supplied, it defaults to `0x2::iota::IOTA`.\n */\n balance?: Maybe<Balance>;\n /** The balances of all coin types owned by this object. */\n balances: BalanceConnection;\n /** The Base64-encoded BCS serialization of the object's content. */\n bcs?: Maybe<Scalars['Base64']['output']>;\n /**\n * The coin objects for this object.\n *\n * `type` is a filter on the coin's type parameter, defaulting to\n * `0x2::iota::IOTA`.\n */\n coins: CoinConnection;\n /**\n * Displays the contents of the Move object in a JSON string and through\n * GraphQL types. Also provides the flat representation of the type\n * signature, and the BCS of the corresponding data.\n */\n contents?: Maybe<MoveValue>;\n /** The number of decimal places used to represent the token. */\n decimals?: Maybe<Scalars['Int']['output']>;\n /** Optional description of the token, provided by the creator of the token. */\n description?: Maybe<Scalars['String']['output']>;\n /**\n * 32-byte hash that identifies the object's contents, encoded as a Base58\n * string.\n */\n digest?: Maybe<Scalars['String']['output']>;\n /**\n * The set of named templates defined on-chain for the type of this object,\n * to be handled off-chain. The server substitutes data from the object\n * into these templates to generate a display string per template.\n */\n display?: Maybe<Array<DisplayEntry>>;\n /**\n * Access a dynamic field on an object using its name. Names are arbitrary\n * Move values whose type have `copy`, `drop`, and `store`, and are\n * specified using their type, and their BCS contents, Base64 encoded.\n *\n * Dynamic fields on wrapped objects can be accessed by using the same API\n * under the Owner type.\n */\n dynamicField?: Maybe<DynamicField>;\n /**\n * The dynamic fields and dynamic object fields on an object.\n *\n * Dynamic fields on wrapped objects can be accessed by using the same API\n * under the Owner type.\n */\n dynamicFields: DynamicFieldConnection;\n /**\n * Access a dynamic object field on an object using its name. Names are\n * arbitrary Move values whose type have `copy`, `drop`, and `store`,\n * and are specified using their type, and their BCS contents, Base64\n * encoded. The value of a dynamic object field can also be accessed\n * off-chain directly via its address (e.g. using `Query.object`).\n *\n * Dynamic fields on wrapped objects can be accessed by using the same API\n * under the Owner type.\n */\n dynamicObjectField?: Maybe<DynamicField>;\n iconUrl?: Maybe<Scalars['String']['output']>;\n /** Full, official name of the token. */\n name?: Maybe<Scalars['String']['output']>;\n /** Objects owned by this object, optionally `filter`-ed. */\n objects: MoveObjectConnection;\n /** The owner type of this object: Immutable, Shared, Parent, Address */\n owner?: Maybe<ObjectOwner>;\n /** The transaction block that created this version of the object. */\n previousTransactionBlock?: Maybe<TransactionBlock>;\n /**\n * The transaction blocks that sent objects to this object.\n *\n * `scanLimit` restricts the number of candidate transactions scanned when\n * gathering a page of results. It is required for queries that apply\n * more than two complex filters (on function, kind, sender, recipient,\n * input object, changed object, or ids), and can be at most\n * `serviceConfig.maxScanLimit`.\n *\n * When the scan limit is reached the page will be returned even if it has\n * fewer than `first` results when paginating forward (`last` when\n * paginating backwards). If there are more transactions to scan,\n * `pageInfo.hasNextPage` (or `pageInfo.hasPreviousPage`) will be set to\n * `true`, and `PageInfo.endCursor` (or `PageInfo.startCursor`) will be set\n * to the last transaction that was scanned as opposed to the last (or\n * first) transaction in the page.\n *\n * Requesting the next (or previous) page after this cursor will resume the\n * search, scanning the next `scanLimit` many transactions in the\n * direction of pagination, and so on until all transactions in the\n * scanning range have been visited.\n *\n * By default, the scanning range includes all transactions known to\n * GraphQL, but it can be restricted by the `after` and `before`\n * cursors, and the `beforeCheckpoint`, `afterCheckpoint` and\n * `atCheckpoint` filters.\n */\n receivedTransactionBlocks: TransactionBlockConnection;\n /** The `0x3::staking_pool::StakedIota` objects owned by this object. */\n stakedIotas: StakedIotaConnection;\n /**\n * The current status of the object as read from the off-chain store. The\n * possible states are: NOT_INDEXED, the object is loaded from\n * serialized data, such as the contents of a genesis or system package\n * upgrade transaction. LIVE, the version returned is the most recent for\n * the object, and it is not deleted or wrapped at that version.\n * HISTORICAL, the object was referenced at a specific version or\n * checkpoint, so is fetched from historical tables and may not be the\n * latest version of the object. WRAPPED_OR_DELETED, the object is deleted\n * or wrapped and only partial information can be loaded.\"\n */\n status: ObjectKind;\n /**\n * The amount of IOTA we would rebate if this object gets deleted or\n * mutated. This number is recalculated based on the present storage\n * gas price.\n */\n storageRebate?: Maybe<Scalars['BigInt']['output']>;\n /** The overall quantity of tokens that will be issued. */\n supply?: Maybe<Scalars['BigInt']['output']>;\n /** The token's identifying abbreviation. */\n symbol?: Maybe<Scalars['String']['output']>;\n version: Scalars['UInt53']['output'];\n};\n\n\n/** The metadata for a coin type. */\nexport type CoinMetadataBalanceArgs = {\n type?: InputMaybe<Scalars['String']['input']>;\n};\n\n\n/** The metadata for a coin type. */\nexport type CoinMetadataBalancesArgs = {\n after?: InputMaybe<Scalars['String']['input']>;\n before?: InputMaybe<Scalars['String']['input']>;\n first?: InputMaybe<Scalars['Int']['input']>;\n last?: InputMaybe<Scalars['Int']['input']>;\n};\n\n\n/** The metadata for a coin type. */\nexport type CoinMetadataCoinsArgs = {\n after?: InputMaybe<Scalars['String']['input']>;\n before?: InputMaybe<Scalars['String']['input']>;\n first?: InputMaybe<Scalars['Int']['input']>;\n last?: InputMaybe<Scalars['Int']['input']>;\n type?: InputMaybe<Scalars['String']['input']>;\n};\n\n\n/** The metadata for a coin type. */\nexport type CoinMetadataDynamicFieldArgs = {\n name: DynamicFieldName;\n};\n\n\n/** The metadata for a coin type. */\nexport type CoinMetadataDynamicFieldsArgs = {\n after?: InputMaybe<Scalars['String']['input']>;\n before?: InputMaybe<Scalars['String']['input']>;\n first?: InputMaybe<Scalars['Int']['input']>;\n last?: InputMaybe<Scalars['Int']['input']>;\n};\n\n\n/** The metadata for a coin type. */\nexport type CoinMetadataDynamicObjectFieldArgs = {\n name: DynamicFieldName;\n};\n\n\n/** The metadata for a coin type. */\nexport type CoinMetadataObjectsArgs = {\n after?: InputMaybe<Scalars['String']['input']>;\n before?: InputMaybe<Scalars['String']['input']>;\n filter?: InputMaybe<ObjectFilter>;\n first?: InputMaybe<Scalars['Int']['input']>;\n last?: InputMaybe<Scalars['Int']['input']>;\n};\n\n\n/** The metadata for a coin type. */\nexport type CoinMetadataReceivedTransactionBlocksArgs = {\n after?: InputMaybe<Scalars['String']['input']>;\n before?: InputMaybe<Scalars['String']['input']>;\n filter?: InputMaybe<TransactionBlockFilter>;\n first?: InputMaybe<Scalars['Int']['input']>;\n last?: InputMaybe<Scalars['Int']['input']>;\n scanLimit?: InputMaybe<Scalars['Int']['input']>;\n};\n\n\n/** The metadata for a coin type. */\nexport type CoinMetadataStakedIotasArgs = {\n after?: InputMaybe<Scalars['String']['input']>;\n before?: InputMaybe<Scalars['String']['input']>;\n first?: InputMaybe<Scalars['Int']['input']>;\n last?: InputMaybe<Scalars['Int']['input']>;\n};\n\n/**\n * System transaction that runs at the beginning of a checkpoint, and is\n * responsible for setting the current value of the clock, based on the\n * timestamp from consensus.\n */\nexport type ConsensusCommitPrologueTransaction = {\n __typename?: 'ConsensusCommitPrologueTransaction';\n /** Unix timestamp from consensus. */\n commitTimestamp: Scalars['DateTime']['output'];\n /** Digest of consensus output, encoded as a Base58 string. */\n consensusCommitDigest: Scalars['String']['output'];\n /** Epoch of the commit prologue transaction. */\n epoch?: Maybe<Epoch>;\n /** Consensus round of the commit. */\n round: Scalars['UInt53']['output'];\n};\n\nexport type DependencyConnection = {\n __typename?: 'DependencyConnection';\n /** A list of edges. */\n edges: Array<DependencyEdge>;\n /** A list of nodes. */\n nodes: Array<TransactionBlock>;\n /** Information to aid in pagination. */\n pageInfo: PageInfo;\n};\n\n/** An edge in a connection. */\nexport type DependencyEdge = {\n __typename?: 'DependencyEdge';\n /** A cursor for use in pagination */\n cursor: Scalars['String']['output'];\n /** The item at the end of the edge */\n node?: Maybe<TransactionBlock>;\n};\n\n/**\n * The set of named templates defined on-chain for the type of this object,\n * to be handled off-chain. The server substitutes data from the object\n * into these templates to generate a display string per template.\n */\nexport type DisplayEntry = {\n __typename?: 'DisplayEntry';\n /** An error string describing why the template could not be rendered. */\n error?: Maybe<Scalars['String']['output']>;\n /** The identifier for a particular template string of the Display object. */\n key: Scalars['String']['output'];\n /** The template string for the key with placeholder values substituted. */\n value?: Maybe<Scalars['String']['output']>;\n};\n\nexport type DryRunEffect = {\n __typename?: 'DryRunEffect';\n /**\n * Changes made to arguments that were mutably borrowed by each command in\n * this transaction.\n */\n mutatedReferences?: Maybe<Array<DryRunMutation>>;\n /** Return results of each command in this transaction. */\n returnValues?: Maybe<Array<DryRunReturn>>;\n};\n\nexport type DryRunMutation = {\n __typename?: 'DryRunMutation';\n bcs: Scalars['Base64']['output'];\n input: TransactionArgument;\n type: MoveType;\n};\n\nexport type DryRunResult = {\n __typename?: 'DryRunResult';\n /** The error that occurred during dry run execution, if any. */\n error?: Maybe<Scalars['String']['output']>;\n /**\n * The intermediate results for each command of the dry run execution,\n * including contents of mutated references and return values.\n */\n results?: Maybe<Array<DryRunEffect>>;\n /** The transaction block representing the dry run execution. */\n transaction?: Maybe<TransactionBlock>;\n};\n\nexport type DryRunReturn = {\n __typename?: 'DryRunReturn';\n bcs: Scalars['Base64']['output'];\n type: MoveType;\n};\n\n/**\n * Dynamic fields are heterogeneous fields that can be added or removed at\n * runtime, and can have arbitrary user-assigned names. There are two sub-types\n * of dynamic fields:\n *\n * 1) Dynamic Fields can store any value that has the `store` ability, however\n * an object stored in this kind of field will be considered wrapped and\n * will not be accessible directly via its ID by external tools (explorers,\n * wallets, etc) accessing storage.\n * 2) Dynamic Object Fields values must be IOTA objects (have the `key` and\n * `store` abilities, and id: UID as the first field), but will still be\n * directly accessible off-chain via their object ID after being attached.\n */\nexport type DynamicField = {\n __typename?: 'DynamicField';\n /**\n * The string type, data, and serialized value of the DynamicField's 'name'\n * field. This field is used to uniquely identify a child of the parent\n * object.\n */\n name?: Maybe<MoveValue>;\n /**\n * The returned dynamic field is an object if its return type is\n * `MoveObject`, in which case it is also accessible off-chain via its\n * address. Its contents will be from the latest version that is at\n * most equal to its parent object's version.\n */\n value?: Maybe<DynamicFieldValue>;\n};\n\nexport type DynamicFieldConnection = {\n __typename?: 'DynamicFieldConnection';\n /** A list of edges. */\n edges: Array<DynamicFieldEdge>;\n /** A list of nodes. */\n nodes: Array<DynamicField>;\n /** Information to aid in pagination. */\n pageInfo: PageInfo;\n};\n\n/** An edge in a connection. */\nexport type DynamicFieldEdge = {\n __typename?: 'DynamicFieldEdge';\n /** A cursor for use in pagination */\n cursor: Scalars['String']['output'];\n /** The item at the end of the edge */\n node: DynamicField;\n};\n\nexport type DynamicFieldName = {\n /** The Base64 encoded bcs serialization of the DynamicField's 'name' field. */\n bcs: Scalars['Base64']['input'];\n /**\n * The string type of the DynamicField's 'name' field.\n * A string representation of a Move primitive like 'u64', or a struct type\n * like '0x2::kiosk::Listing'\n */\n type: Scalars['String']['input'];\n};\n\nexport type DynamicFieldValue = MoveObject | MoveValue;\n\n/**\n * System transaction that supersedes `ChangeEpochTransaction` as the new way\n * to run transactions at the end of an epoch. Behaves similarly to\n * `ChangeEpochTransaction` but can accommodate other optional transactions to\n * run at the end of the epoch.\n */\nexport type EndOfEpochTransaction = {\n __typename?: 'EndOfEpochTransaction';\n /**\n * The list of system transactions that are allowed to run at the end of\n * the epoch.\n */\n transactions: EndOfEpochTransactionKindConnection;\n};\n\n\n/**\n * System transaction that supersedes `ChangeEpochTransaction` as the new way\n * to run transactions at the end of an epoch. Behaves similarly to\n * `ChangeEpochTransaction` but can accommodate other optional transactions to\n * run at the end of the epoch.\n */\nexport type EndOfEpochTransactionTransactionsArgs = {\n after?: InputMaybe<Scalars['String']['input']>;\n before?: InputMaybe<Scalars['String']['input']>;\n first?: InputMaybe<Scalars['Int']['input']>;\n last?: InputMaybe<Scalars['Int']['input']>;\n};\n\nexport type EndOfEpochTransactionKind = AuthenticatorStateCreateTransaction | AuthenticatorStateExpireTransaction | BridgeCommitteeInitTransaction | BridgeStateCreateTransaction | ChangeEpochTransaction;\n\nexport type EndOfEpochTransactionKindConnection = {\n __typename?: 'EndOfEpochTransactionKindConnection';\n /** A list of edges. */\n edges: Array<EndOfEpochTransactionKindEdge>;\n /** A list of nodes. */\n nodes: Array<EndOfEpochTransactionKind>;\n /** Information to aid in pagination. */\n pageInfo: PageInfo;\n};\n\n/** An edge in a connection. */\nexport type EndOfEpochTransactionKindEdge = {\n __typename?: 'EndOfEpochTransactionKindEdge';\n /** A cursor for use in pagination */\n cursor: Scalars['String']['output'];\n /** The item at the end of the edge */\n node: EndOfEpochTransactionKind;\n};\n\n/**\n * Operation of the IOTA network is temporally partitioned into non-overlapping\n * epochs, and the network aims to keep epochs roughly the same duration as\n * each other. During a particular epoch the following data is fixed:\n *\n * - the protocol version\n * - the reference gas price\n * - the set of participating validators\n */\nexport type Epoch = {\n __typename?: 'Epoch';\n /** The epoch's corresponding checkpoints. */\n checkpoints: CheckpointConnection;\n /** The epoch's ending timestamp. */\n endTimestamp?: Maybe<Scalars['DateTime']['output']>;\n /**\n * The epoch's id as a sequence number that starts at 0 and is incremented\n * by one at every epoch change.\n */\n epochId: Scalars['UInt53']['output'];\n /** The storage fees paid for transactions executed during the epoch. */\n fundInflow?: Maybe<Scalars['BigInt']['output']>;\n /**\n * The storage fee rebates paid to users who deleted the data associated\n * with past transactions.\n */\n fundOutflow?: Maybe<Scalars['BigInt']['output']>;\n /**\n * The storage fund available in this epoch.\n * This fund is used to redistribute storage fees from past transactions\n * to future validators.\n */\n fundSize?: Maybe<Scalars['BigInt']['output']>;\n /** The total IOTA supply. */\n iotaTotalSupply?: Maybe<Scalars['Int']['output']>;\n /** The treasury-cap id. */\n iotaTreasuryCapId?: Maybe<Scalars['IotaAddress']['output']>;\n /**\n * A commitment by the committee at the end of epoch on the contents of the\n * live object set at that time. This can be used to verify state\n * snapshots.\n */\n liveObjectSetDigest?: Maybe<Scalars['String']['output']>;\n /**\n * The difference between the fund inflow and outflow, representing\n * the net amount of storage fees accumulated in this epoch.\n */\n netInflow?: Maybe<Scalars['BigInt']['output']>;\n /**\n * The epoch's corresponding protocol configuration, including the feature\n * flags and the configuration options.\n */\n protocolConfigs: ProtocolConfigs;\n /**\n * The minimum gas price that a quorum of validators are guaranteed to sign\n * a transaction for.\n */\n referenceGasPrice?: Maybe<Scalars['BigInt']['output']>;\n /**\n * Information about whether this epoch was started in safe mode, which\n * happens if the full epoch change logic fails for some reason.\n */\n safeMode?: Maybe<SafeMode>;\n /** The epoch's starting timestamp. */\n startTimestamp: Scalars['DateTime']['output'];\n /**\n * IOTA set aside to account for objects stored on-chain, at the start of\n * the epoch. This is also used for storage rebates.\n */\n storageFund?: Maybe<StorageFund>;\n /** Details of the system that are decided during genesis. */\n systemParameters?: Maybe<SystemParameters>;\n /**\n * The value of the `version` field of `0x5`, the\n * `0x3::iota::IotaSystemState` object. This version changes whenever\n * the fields contained in the system state object (held in a dynamic\n * field attached to `0x5`) change.\n */\n systemStateVersion?: Maybe<Scalars['UInt53']['output']>;\n /** The total number of checkpoints in this epoch. */\n totalCheckpoints?: Maybe<Scalars['UInt53']['output']>;\n /** The total amount of gas fees (in NANOS) that were paid in this epoch. */\n totalGasFees?: Maybe<Scalars['BigInt']['output']>;\n /** The total NANOS rewarded as stake. */\n totalStakeRewards?: Maybe<Scalars['BigInt']['output']>;\n /** The total number of transaction blocks in this epoch. */\n totalTransactions?: Maybe<Scalars['UInt53']['output']>;\n /**\n * The epoch's corresponding transaction blocks.\n *\n * `scanLimit` restricts the number of candidate transactions scanned when\n * gathering a page of results. It is required for queries that apply\n * more than two complex filters (on function, kind, sender, recipient,\n * input object, changed object, or ids), and can be at most\n * `serviceConfig.maxScanLimit`.\n *\n * When the scan limit is reached the page will be returned even if it has\n * fewer than `first` results when paginating forward (`last` when\n * paginating backwards). If there are more transactions to scan,\n * `pageInfo.hasNextPage` (or `pageInfo.hasPreviousPage`) will be set to\n * `true`, and `PageInfo.endCursor` (or `PageInfo.startCursor`) will be set\n * to the last transaction that was scanned as opposed to the last (or\n * first) transaction in the page.\n *\n * Requesting the next (or previous) page after this cursor will resume the\n * search, scanning the next `scanLimit` many transactions in the\n * direction of pagination, and so on until all transactions in the\n * scanning range have been visited.\n *\n * By default, the scanning range consists of all transactions in this\n * epoch.\n */\n transactionBlocks: TransactionBlockConnection;\n /** Validator related properties, including the active validators. */\n validatorSet?: Maybe<ValidatorSet>;\n};\n\n\n/**\n * Operation of the IOTA network is temporally partitioned into non-overlapping\n * epochs, and the network aims to keep epochs roughly the same duration as\n * each other. During a particular epoch the following data is fixed:\n *\n * - the protocol version\n * - the reference gas price\n * - the set of participating validators\n */\nexport type EpochCheckpointsArgs = {\n after?: InputMaybe<Scalars['String']['input']>;\n before?: InputMaybe<Scalars['String']['input']>;\n first?: InputMaybe<Scalars['Int']['input']>;\n last?: InputMaybe<Scalars['Int']['input']>;\n};\n\n\n/**\n * Operation of the IOTA network is temporally partitioned into non-overlapping\n * epochs, and the network aims to keep epochs roughly the same duration as\n * each other. During a particular epoch the following data is fixed:\n *\n * - the protocol version\n * - the reference gas price\n * - the set of participating validators\n */\nexport type EpochTransactionBlocksArgs = {\n after?: InputMaybe<Scalars['String']['input']>;\n before?: InputMaybe<Scalars['String']['input']>;\n filter?: InputMaybe<TransactionBlockFilter>;\n first?: InputMaybe<Scalars['Int']['input']>;\n last?: InputMaybe<Scalars['Int']['input']>;\n scanLimit?: InputMaybe<Scalars['Int']['input']>;\n};\n\nexport type Event = {\n __typename?: 'Event';\n /** The BCS representation of this value, Base64 encoded. */\n bcs: Scalars['Base64']['output'];\n /** Structured contents of a Move value. */\n data: Scalars['MoveData']['output'];\n /**\n * Representation of a Move value in JSON, where:\n *\n * - Addresses, IDs, and UIDs are represented in canonical form, as JSON\n * strings.\n * - Bools are represented by JSON boolean literals.\n * - u8, u16, and u32 are represented as JSON numbers.\n * - u64, u128, and u256 are represented as JSON strings.\n * - Vectors are represented by JSON arrays.\n * - Structs are represented by JSON objects.\n * - Empty optional values are represented by `null`.\n *\n * This form is offered as a less verbose convenience in cases where the\n * layout of the type is known by the client.\n */\n json: Scalars['JSON']['output'];\n /** Address of the sender of the event */\n sender?: Maybe<Address>;\n /**\n * The Move module containing some function that when called by\n * a programmable transaction block (PTB) emitted this event.\n * For example, if a PTB invokes A::m1::foo, which internally\n * calls A::m2::emit_event to emit an event,\n * the sending module would be A::m1.\n */\n sendingModule?: Maybe<MoveModule>;\n /** UTC timestamp in milliseconds since epoch (1/1/1970) */\n timestamp?: Maybe<Scalars['DateTime']['output']>;\n /** The value's Move type. */\n type: MoveType;\n};\n\nexport type EventConnection = {\n __typename?: 'EventConnection';\n /** A list of edges. */\n edges: Array<EventEdge>;\n /** A list of nodes. */\n nodes: Array<Event>;\n /** Information to aid in pagination. */\n pageInfo: PageInfo;\n};\n\n/** An edge in a connection. */\nexport type EventEdge = {\n __typename?: 'EventEdge';\n /** A cursor for use in pagination */\n cursor: Scalars['String']['output'];\n /** The item at the end of the edge */\n node: Event;\n};\n\nexport type EventFilter = {\n /**\n * Events emitted by a particular module. An event is emitted by a\n * particular module if some function in the module is called by a\n * PTB and emits an event.\n *\n * Modules can be filtered by their package, or package::module.\n * We currently do not support filtering by emitting module and event type\n * at the same time so if both are provided in one filter, the query will\n * error.\n */\n emittingModule?: InputMaybe<Scalars['String']['input']>;\n /**\n * This field is used to specify the type of event emitted.\n *\n * Events can be filtered by their type's package, package::module,\n * or their fully qualified type name.\n *\n * Generic types can be queried by either the generic type name, e.g.\n * `0x2::coin::Coin`, or by the full type name, such as\n * `0x2::coin::Coin<0x2::iota::IOTA>`.\n */\n eventType?: InputMaybe<Scalars['String']['input']>;\n sender?: InputMaybe<Scalars['IotaAddress']['input']>;\n transactionDigest?: InputMaybe<Scalars['String']['input']>;\n};\n\n/**\n * The result of an execution, including errors that occurred during said\n * execution.\n */\nexport type ExecutionResult = {\n __typename?: 'ExecutionResult';\n /**\n * The effects of the executed transaction. Since the transaction was just\n * executed and not indexed yet, fields including `balance_changes`,\n * `timestamp` and `checkpoint` are not available.\n */\n effects: TransactionBlockEffects;\n /** The errors field captures any errors that occurred during execution */\n errors?: Maybe<Array<Scalars['String']['output']>>;\n};\n\n/** The execution status of this transaction block: success or failure. */\nexport enum ExecutionStatus {\n /** The transaction block could not be executed */\n Failure = 'FAILURE',\n /** The transaction block was successfully executed */\n Success = 'SUCCESS'\n}\n\n/**\n * Groups of features served by the RPC service. The GraphQL Service can be\n * configured to enable or disable these features.\n */\nexport enum Feature {\n /**\n * Statistics about how the network was running (TPS, top packages, APY,\n * etc)\n */\n Analytics = 'ANALYTICS',\n /** Coin metadata, per-address coin and balance information. */\n Coins = 'COINS',\n /** Querying an object's dynamic fields. */\n DynamicFields = 'DYNAMIC_FIELDS',\n /** Transaction and Event subscriptions. */\n Subscriptions = 'SUBSCRIPTIONS',\n /**\n * Aspects that affect the running of the system that are managed by the\n * validators either directly, or through system transactions.\n */\n SystemState = 'SYSTEM_STATE'\n}\n\n/**\n * Access to the gas inputs, after they have been smashed into one coin. The\n * gas coin can only be used by reference, except for with\n * `TransferObjectsTransaction` that can accept it by value.\n */\nexport type GasCoin = {\n __typename?: 'GasCoin';\n /** A workaround to define an empty variant of a GraphQL union. */\n _?: Maybe<Scalars['Boolean']['output']>;\n};\n\n/** Breakdown of gas costs in effects. */\nexport type GasCostSummary = {\n __typename?: 'GasCostSummary';\n /** Gas paid for executing this transaction (in NANOS). */\n computationCost?: Maybe<Scalars['BigInt']['output']>;\n /** Gas burned for executing this transactions (in NANOS). */\n computationCostBurned?: Maybe<Scalars['BigInt']['output']>;\n /**\n * Part of storage cost that is not reclaimed when data created by this\n * transaction is cleaned up (in NANOS).\n */\n nonRefundableStorageFee?: Maybe<Scalars['BigInt']['output']>;\n /** Gas paid for the data stored on-chain by this transaction (in NANOS). */\n storageCost?: Maybe<Scalars['BigInt']['output']>;\n /**\n * Part of storage cost that can be reclaimed by cleaning up data created\n * by this transaction (when objects are deleted or an object is\n * modified, which is treated as a deletion followed by a creation) (in\n * NANOS).\n */\n storageRebate?: Maybe<Scalars['BigInt']['output']>;\n};\n\n/**\n * Effects related to gas (costs incurred and the identity of the smashed gas\n * object returned).\n */\nexport type GasEffects = {\n __typename?: 'GasEffects';\n gasObject?: Maybe<Object>;\n gasSummary?: Maybe<GasCostSummary>;\n};\n\n/**\n * Configuration for this transaction's gas price and the coins used to pay for\n * gas.\n */\nexport type GasInput = {\n __typename?: 'GasInput';\n /**\n * The maximum number of gas units that can be expended by executing this\n * transaction\n */\n gasBudget?: Maybe<Scalars['BigInt']['output']>;\n /** Objects used to pay for a transaction's execution and storage */\n gasPayment: ObjectConnection;\n /**\n * An unsigned integer specifying the number of native tokens per gas unit\n * this transaction will pay (in NANOS).\n */\n gasPrice?: Maybe<Scalars['BigInt']['output']>;\n /** Address of the owner of the gas object(s) used */\n gasSponsor?: Maybe<Address>;\n};\n\n\n/**\n * Configuration for this transaction's gas price and the coins used to pay for\n * gas.\n */\nexport type GasInputGasPaymentArgs = {\n after?: InputMaybe<Scalars['String']['input']>;\n before?: InputMaybe<Scalars['String']['input']>;\n first?: InputMaybe<Scalars['Int']['input']>;\n last?: InputMaybe<Scalars['Int']['input']>;\n};\n\n/**\n * System transaction that initializes the network and writes the initial set\n * of objects on-chain.\n */\nexport type GenesisTransaction = {\n __typename?: 'GenesisTransaction';\n /** Events emitted during genesis. */\n events: EventConnection;\n /** Objects to be created during genesis. */\n objects: ObjectConnection;\n};\n\n\n/**\n * System transaction that initializes the network and writes the initial set\n * of objects on-chain.\n */\nexport type GenesisTransactionEventsArgs = {\n after?: InputMaybe<Scalars['String']['input']>;\n before?: InputMaybe<Scalars['String']['input']>;\n first?: InputMaybe<Scalars['Int']['input']>;\n last?: InputMaybe<Scalars['Int']['input']>;\n};\n\n\n/**\n * System transaction that initializes the network and writes the initial set\n * of objects on-chain.\n */\nexport type GenesisTransactionObjectsArgs = {\n after?: InputMaybe<Scalars['String']['input']>;\n before?: InputMaybe<Scalars['String']['input']>;\n first?: InputMaybe<Scalars['Int']['input']>;\n last?: InputMaybe<Scalars['Int']['input']>;\n};\n\n/**\n * Interface implemented by all GraphQL types that represent a Move datatype\n * (either structs or enums). This interface is used to provide a way to access\n * fields that are shared by both structs and enums, e.g., the module that the\n * datatype belongs to, the name of the datatype, type parameters etc.\n */\nexport type IMoveDatatype = {\n /** The abilities of the datatype. */\n abilities?: Maybe<Array<MoveAbility>>;\n /** The module that the datatype belongs to. */\n module: MoveModule;\n /** The name of the datatype. */\n name: Scalars['String']['output'];\n /** The type parameters of the datatype. */\n typeParameters?: Maybe<Array<MoveStructTypeParameter>>;\n};\n\n/**\n * This interface is implemented by types that represent a Move object on-chain\n * (A Move value whose type has `key`).\n */\nexport type IMoveObject = {\n /** Displays the contents of the Move object in a JSON string and through GraphQL types. Also provides the flat representation of the type signature, and the BCS of the corresponding data. */\n contents?: Maybe<MoveValue>;\n /** The set of named templates defined on-chain for the type of this object, to be handled off-chain. The server substitutes data from the object into these templates to generate a display string per template. */\n display?: Maybe<Array<DisplayEntry>>;\n /**\n * Access a dynamic field on an object using its name. Names are arbitrary Move values whose type have `copy`, `drop`, and `store`, and are specified using their type, and their BCS contents, Base64 encoded.\n *\n * Dynamic fields on wrapped objects can be accessed by using the same API under the Ownertype.\n */\n dynamicField?: Maybe<DynamicField>;\n /**\n * The dynamic fields and dynamic object fields on an object.\n *\n * Dynamic fields on wrapped objects can be accessed by using the same API under the Owner type.\n */\n dynamicFields: DynamicFieldConnection;\n /**\n * Access a dynamic object field on an object using its name. Names are arbitrary Move values whose type have `copy`, `drop`, and `store`, and are specified using their type, and their BCS contents, Base64 encoded. The value of a dynamic object field can also be accessed off-chain directly via its address (e.g. using `Query.object`).\n *\n * Dynamic fields on wrapped objects can be accessed by using the same API under the Owner type.\n */\n dynamicObjectField?: Maybe<DynamicField>;\n};\n\n\n/**\n * This interface is implemented by types that represent a Move object on-chain\n * (A Move value whose type has `key`).\n */\nexport type IMoveObjectDynamicFieldArgs = {\n name: DynamicFieldName;\n};\n\n\n/**\n * This interface is implemented by types that represent a Move object on-chain\n * (A Move value whose type has `key`).\n */\nexport type IMoveObjectDynamicFieldsArgs = {\n after?: InputMaybe<Scalars['String']['input']>;\n before?: InputMaybe<Scalars['String']['input']>;\n first?: InputMaybe<Scalars['Int']['input']>;\n last?: InputMaybe<Scalars['Int']['input']>;\n};\n\n\n/**\n * This interface is implemented by types that represent a Move object on-chain\n * (A Move value whose type has `key`).\n */\nexport type IMoveObjectDynamicObjectFieldArgs = {\n name: DynamicFieldName;\n};\n\n/**\n * Interface implemented by on-chain values that are addressable by an ID (also\n * referred to as its address). This includes Move objects and packages.\n */\nexport type IObject = {\n /** The Base64-encoded BCS serialization of the object's content. */\n bcs?: Maybe<Scalars['Base64']['output']>;\n /** 32-byte hash that identifies the object's current contents, encoded as a Base58 string. */\n digest?: Maybe<Scalars['String']['output']>;\n /**\n * The owner type of this object: Immutable, Shared, Parent, Address\n * Immutable and Shared Objects do not have owners.\n */\n owner?: Maybe<ObjectOwner>;\n /** The transaction block that created this version of the object. */\n previousTransactionBlock?: Maybe<TransactionBlock>;\n /** The transaction blocks that sent objects to this object. */\n receivedTransactionBlocks: TransactionBlockConnection;\n /** The current status of the object as read from the off-chain store. The possible states are: NOT_INDEXED, the object is loaded from serialized data, such as the contents of a genesis or system package upgrade transaction. LIVE, the version returned is the most recent for the object, and it is not deleted or wrapped at that version. HISTORICAL, the object was referenced at a specific version or checkpoint, so is fetched from historical tables and may not be the latest version of the object. WRAPPED_OR_DELETED, the object is deleted or wrapped and only partial information can be loaded. */\n status: ObjectKind;\n storageRebate?: Maybe<Scalars['BigInt']['output']>;\n version: Scalars['UInt53']['output'];\n};\n\n\n/**\n * Interface implemented by on-chain values that are addressable by an ID (also\n * referred to as its address). This includes Move objects and packages.\n */\nexport type IObjectReceivedTransactionBlocksArgs = {\n after?: InputMaybe<Scalars['String']['input']>;\n before?: InputMaybe<Scalars['String']['input']>;\n filter?: InputMaybe<TransactionBlockFilter>;\n first?: InputMaybe<Scalars['Int']['input']>;\n last?: InputMaybe<Scalars['Int']['input']>;\n scanLimit?: InputMaybe<Scalars['Int']['input']>;\n};\n\n/**\n * Interface implemented by GraphQL types representing entities that can own\n * objects. Object owners are identified by an address which can represent\n * either the public key of an account or another object. The same address can\n * only refer to an account or an object, never both, but it is not possible to\n * know which up-front.\n */\nexport type IOwner = {\n address: Scalars['IotaAddress']['output'];\n /** Total balance of all coins with marker type owned by this object or address. If type is not supplied, it defaults to `0x2::iota::IOTA`. */\n balance?: Maybe<Balance>;\n /** The balances of all coin types owned by this object or address. */\n balances: BalanceConnection;\n /**\n * The coin objects for this object or address.\n *\n * `type` is a filter on the coin's type parameter, defaulting to `0x2::iota::IOTA`.\n */\n coins: CoinConnection;\n /** Objects owned by this object or address, optionally `filter`-ed. */\n objects: MoveObjectConnection;\n /** The `0x3::staking_pool::StakedIota` objects owned by this object or address. */\n stakedIotas: StakedIotaConnection;\n};\n\n\n/**\n * Interface implemented by GraphQL types representing entities that can own\n * objects. Object owners are identified by an address which can represent\n * either the public key of an account or another object. The same address can\n * only refer to an account or an object, never both, but it is not possible to\n * know which up-front.\n */\nexport type IOwnerBalanceArgs = {\n type?: InputMaybe<Scalars['String']['input']>;\n};\n\n\n/**\n * Interface implemented by GraphQL types representing entities that can own\n * objects. Object owners are identified by an address which can represent\n * either the public key of an account or another object. The same address can\n * only refer to an account or an object, never both, but it is not possible to\n * know which up-front.\n */\nexport type IOwnerBalancesArgs = {\n after?: InputMaybe<Scalars['String']['input']>;\n before?: InputMaybe<Scalars['String']['input']>;\n first?: InputMaybe<Scalars['Int']['input']>;\n last?: InputMaybe<Scalars['Int']['input']>;\n};\n\n\n/**\n * Interface implemented by GraphQL types representing entities that can own\n * objects. Object owners are identified by an address which can represent\n * either the public key of an account or another object. The same address can\n * only refer to an account or an object, never both, but it is not possible to\n * know which up-front.\n */\nexport type IOwnerCoinsArgs = {\n after?: InputMaybe<Scalars['String']['input']>;\n before?: InputMaybe<Scalars['String']['input']>;\n first?: InputMaybe<Scalars['Int']['input']>;\n last?: InputMaybe<Scalars['Int']['input']>;\n type?: InputMaybe<Scalars['String']['input']>;\n};\n\n\n/**\n * Interface implemented by GraphQL types representing entities that can own\n * objects. Object owners are identified by an address which can represent\n * either the public key of an account or another object. The same address can\n * only refer to an account or an object, never both, but it is not possible to\n * know which up-front.\n */\nexport type IOwnerObjectsArgs = {\n after?: InputMaybe<Scalars['String']['input']>;\n before?: InputMaybe<Scalars['String']['input']>;\n filter?: InputMaybe<ObjectFilter>;\n first?: InputMaybe<Scalars['Int']['input']>;\n last?: InputMaybe<Scalars['Int']['input']>;\n};\n\n\n/**\n * Interface implemented by GraphQL types representing entities that can own\n * objects. Object owners are identified by an address which can represent\n * either the public key of an account or another object. The same address can\n * only refer to an account or an object, never both, but it is not possible to\n * know which up-front.\n */\nexport type IOwnerStakedIotasArgs = {\n after?: InputMaybe<Scalars['String']['input']>;\n before?: InputMaybe<Scalars['String']['input']>;\n first?: InputMaybe<Scalars['Int']['input']>;\n last?: InputMaybe<Scalars['Int']['input']>;\n};\n\n/**\n * An immutable object is an object that can't be mutated, transferred, or\n * deleted. Immutable objects have no owner, so anyone can use them.\n */\nexport type Immutable = {\n __typename?: 'Immutable';\n _?: Maybe<Scalars['Boolean']['output']>;\n};\n\n/**\n * One of the input objects or primitive values to the programmable transaction\n * block.\n */\nexport type Input = {\n __typename?: 'Input';\n /** Index of the programmable transaction block input (0-indexed). */\n ix: Scalars['Int']['output'];\n};\n\n/**\n * Information used by a package to link to a specific version of its\n * dependency.\n */\nexport type Linkage = {\n __typename?: 'Linkage';\n /** The ID on-chain of the first version of the dependency. */\n originalId: Scalars['IotaAddress']['output'];\n /**\n * The ID on-chain of the version of the dependency that this package\n * depends on.\n */\n upgradedId: Scalars['IotaAddress']['output'];\n /** The version of the dependency that this package depends on. */\n version: Scalars['UInt53']['output'];\n};\n\n/** Create a vector (possibly empty). */\nexport type MakeMoveVecTransaction = {\n __typename?: 'MakeMoveVecTransaction';\n /** The values to pack into the vector, all of the same type. */\n elements: Array<TransactionArgument>;\n /**\n * If the elements are not objects, or the vector is empty, a type must be\n * supplied.\n */\n type?: Maybe<MoveType>;\n};\n\n/** Merges `coins` into the first `coin` (produces no results). */\nexport type MergeCoinsTransaction = {\n __typename?: 'MergeCoinsTransaction';\n /** The coin to merge into. */\n coin: TransactionArgument;\n /** The coins to be merged. */\n coins: Array<TransactionArgument>;\n};\n\n/**\n * Abilities are keywords in IOTA Move that define how types behave at the\n * compiler level.\n */\nexport enum MoveAbility {\n /** Enables values to be copied. */\n Copy = 'COPY',\n /** Enables values to be popped/dropped. */\n Drop = 'DROP',\n /** Enables values to be held directly in global storage. */\n Key = 'KEY',\n /** Enables values to be held inside a struct in global storage. */\n Store = 'STORE'\n}\n\n/** A call to either an entry or a public Move function. */\nexport type MoveCallTransaction = {\n __typename?: 'MoveCallTransaction';\n /** The actual function parameters passed in for this move call. */\n arguments: Array<TransactionArgument>;\n /** The function being called, resolved. */\n function?: Maybe<MoveFunction>;\n /** The name of the function being called. */\n functionName: Scalars['String']['output'];\n /** The name of the module the function being called is defined in. */\n module: Scalars['String']['output'];\n /** The storage ID of the package the function being called is defined in. */\n package: Scalars['IotaAddress']['output'];\n /** The actual type parameters passed in for this move call. */\n typeArguments: Array<MoveType>;\n};\n\n/**\n * The generic representation of a Move datatype (either a struct or an enum)\n * which exposes common fields and information (module, name, abilities, type\n * parameters etc.) that is shared across them.\n */\nexport type MoveDatatype = IMoveDatatype & {\n __typename?: 'MoveDatatype';\n abilities?: Maybe<Array<MoveAbility>>;\n asMoveEnum?: Maybe<MoveEnum>;\n asMoveStruct?: Maybe<MoveStruct>;\n module: MoveModule;\n name: Scalars['String']['output'];\n typeParameters?: Maybe<Array<MoveStructTypeParameter>>;\n};\n\nexport type MoveDatatypeConnection = {\n __typename?: 'MoveDatatypeConnection';\n /** A list of edges. */\n edges: Array<MoveDatatypeEdge>;\n /** A list of nodes. */\n nodes: Array<MoveDatatype>;\n /** Information to aid in pagination. */\n pageInfo: PageInfo;\n};\n\n/** An edge in a connection. */\nexport type MoveDatatypeEdge = {\n __typename?: 'MoveDatatypeEdge';\n /** A cursor for use in pagination */\n cursor: Scalars['String']['output'];\n /** The item at the end of the edge */\n node: MoveDatatype;\n};\n\n/** Description of an enum type, defined in a Move module. */\nexport type MoveEnum = IMoveDatatype & {\n __typename?: 'MoveEnum';\n /** The enum's abilities. */\n abilities?: Maybe<Array<MoveAbility>>;\n /** The module this enum was originally defined in. */\n module: MoveModule;\n /** The enum's (unqualified) type name. */\n name: Scalars['String']['output'];\n /**\n * Constraints on the enum's formal type parameters. Move bytecode does\n * not name type parameters, so when they are referenced (e.g. in field\n * types) they are identified by their index in this list.\n */\n typeParameters?: Maybe<Array<MoveStructTypeParameter>>;\n /**\n * The names and types of the enum's fields. Field types reference type\n * parameters, by their index in the defining enum's `typeParameters`\n * list.\n */\n variants?: Maybe<Array<MoveEnumVariant>>;\n};\n\nexport type MoveEnumConnection = {\n __typename?: 'MoveEnumConnection';\n /** A list of edges. */\n edges: Array<MoveEnumEdge>;\n /** A list of nodes. */\n nodes: Array<MoveEnum>;\n /** Information to aid in pagination. */\n pageInfo: PageInfo;\n};\n\n/** An edge in a connection. */\nexport type MoveEnumEdge = {\n __typename?: 'MoveEnumEdge';\n /** A cursor for use in pagination */\n cursor: Scalars['String']['output'];\n /** The item at the end of the edge */\n node: MoveEnum;\n};\n\nexport type MoveEnumVariant = {\n __typename?: 'MoveEnumVariant';\n /**\n * The names and types of the variant's fields. Field types reference type\n * parameters, by their index in the defining enum's `typeParameters`\n * list.\n */\n fields?: Maybe<Array<MoveField>>;\n /** The name of the variant */\n name: Scalars['String']['output'];\n};\n\n/** Information for a particular field on a Move struct. */\nexport type MoveField = {\n __typename?: 'MoveField';\n name: Scalars['String']['output'];\n type?: Maybe<OpenMoveType>;\n};\n\n/** Signature of a function, defined in a Move module. */\nexport type MoveFunction = {\n __typename?: 'MoveFunction';\n /** Whether the function has the `entry` modifier or not. */\n isEntry?: Maybe<Scalars['Boolean']['output']>;\n /** The module this function was defined in. */\n module: MoveModule;\n /** The function's (unqualified) name. */\n name: Scalars['String']['output'];\n /**\n * The function's parameter types. These types can reference type\n * parameters introduce by this function (see `typeParameters`).\n */\n parameters?: Maybe<Array<OpenMoveType>>;\n /**\n * The function's return types. There can be multiple because functions in\n * Move can return multiple values. These types can reference type\n * parameters introduced by this function (see `typeParameters`).\n */\n return?: Maybe<Array<OpenMoveType>>;\n /**\n * Constraints on the function's formal type parameters. Move bytecode\n * does not name type parameters, so when they are referenced (e.g. in\n * parameter and return types) they are identified by their index in\n * this list.\n */\n typeParameters?: Maybe<Array<MoveFunctionTypeParameter>>;\n /** The function's visibility: `public`, `public(friend)`, or `private`. */\n visibility?: Maybe<MoveVisibility>;\n};\n\nexport type MoveFunctionConnection = {\n __typename?: 'MoveFunctionConnection';\n /** A list of edges. */\n edges: Array<MoveFunctionEdge>;\n /** A list of nodes. */\n nodes: Array<MoveFunction>;\n /** Information to aid in pagination. */\n pageInfo: PageInfo;\n};\n\n/** An edge in a connection. */\nexport type MoveFunctionEdge = {\n __typename?: 'MoveFunctionEdge';\n /** A cursor for use in pagination */\n cursor: Scalars['String']['output'];\n /** The item at the end of the edge */\n node: MoveFunction;\n};\n\nexport type MoveFunctionTypeParameter = {\n __typename?: 'MoveFunctionTypeParameter';\n constraints: Array<MoveAbility>;\n};\n\n/**\n * Represents a module in Move, a library that defines struct types\n * and functions that operate on these types.\n */\nexport type MoveModule = {\n __typename?: 'MoveModule';\n /** The Base64 encoded bcs serialization of the module. */\n bytes?: Maybe<Scalars['Base64']['output']>;\n /**\n * Look-up the definition of a datatype (struct or enum) defined in this\n * module, by its name.\n */\n datatype?: Maybe<MoveDatatype>;\n /**\n * Iterate through the datatypes (enmums and structs) defined in this\n * module.\n */\n datatypes?: Maybe<MoveDatatypeConnection>;\n /** Textual representation of the module's bytecode. */\n disassembly?: Maybe<Scalars['String']['output']>;\n /** Look-up the definition of a enum defined in this module, by its name. */\n enum?: Maybe<MoveEnum>;\n /** Iterate through the enums defined in this module. */\n enums?: Maybe<MoveEnumConnection>;\n /** Format version of this module's bytecode. */\n fileFormatVersion: Scalars['Int']['output'];\n /**\n * Modules that this module considers friends (these modules can access\n * `public(friend)` functions from this module).\n */\n friends: MoveModuleConnection;\n /** Look-up the signature of a function defined in this module, by its name. */\n function?: Maybe<MoveFunction>;\n /** Iterate through the signatures of functions defined in this module. */\n functions?: Maybe<MoveFunctionConnection>;\n /** The module's (unqualified) name. */\n name: Scalars['String']['output'];\n /** The package that this Move module was defined in */\n package: MovePackage;\n /** Look-up the definition of a struct defined in this module, by its name. */\n struct?: Maybe<MoveStruct>;\n /** Iterate through the structs defined in this module. */\n structs?: Maybe<MoveStructConnection>;\n};\n\n\n/**\n * Represents a module in Move, a library that defines struct types\n * and functions that operate on these types.\n */\nexport type MoveModuleDatatypeArgs = {\n name: Scalars['String']['input'];\n};\n\n\n/**\n * Represents a module in Move, a library that defines struct types\n * and functions that operate on these types.\n */\nexport type MoveModuleDatatypesArgs = {\n after?: InputMaybe<Scalars['String']['input']>;\n before?: InputMaybe<Scalars['String']['input']>;\n first?: InputMaybe<Scalars['Int']['input']>;\n last?: InputMaybe<Scalars['Int']['input']>;\n};\n\n\n/**\n * Represents a module in Move, a library that defines struct types\n * and functions that operate on these types.\n */\nexport type MoveModuleEnumArgs = {\n name: Scalars['String']['input'];\n};\n\n\n/**\n * Represents a module in Move, a library that defines struct types\n * and functions that operate on these types.\n */\nexport type MoveModuleEnumsArgs = {\n after?: InputMaybe<Scalars['String']['input']>;\n before?: InputMaybe<Scalars['String']['input']>;\n first?: InputMaybe<Scalars['Int']['input']>;\n last?: InputMaybe<Scalars['Int']['input']>;\n};\n\n\n/**\n * Represents a module in Move, a library that defines struct types\n * and functions that operate on these types.\n */\nexport type MoveModuleFriendsArgs = {\n after?: InputMaybe<Scalars['String']['input']>;\n before?: InputMaybe<Scalars['String']['input']>;\n first?: InputMaybe<Scalars['Int']['input']>;\n last?: InputMaybe<Scalars['Int']['input']>;\n};\n\n\n/**\n * Represents a module in Move, a library that defines struct types\n * and functions that operate on these types.\n */\nexport type MoveModuleFunctionArgs = {\n name: Scalars['String']['input'];\n};\n\n\n/**\n * Represents a module in Move, a library that defines struct types\n * and functions that operate on these types.\n */\nexport type MoveModuleFunctionsArgs = {\n after?: InputMaybe<Scalars['String']['input']>;\n before?: InputMaybe<Scalars['String']['input']>;\n first?: InputMaybe<Scalars['Int']['input']>;\n last?: InputMaybe<Scalars['Int']['input']>;\n};\n\n\n/**\n * Represents a module in Move, a library that defines struct types\n * and functions that operate on these types.\n */\nexport type MoveModuleStructArgs = {\n name: Scalars['String']['input'];\n};\n\n\n/**\n * Represents a module in Move, a library that defines struct types\n * and functions that operate on these types.\n */\nexport type MoveModuleStructsArgs = {\n after?: InputMaybe<Scalars['String']['input']>;\n before?: InputMaybe<Scalars['String']['input']>;\n first?: InputMaybe<Scalars['Int']['input']>;\n last?: InputMaybe<Scalars['Int']['input']>;\n};\n\nexport type MoveModuleConnection = {\n __typename?: 'MoveModuleConnection';\n /** A list of edges. */\n edges: Array<MoveModuleEdge>;\n /** A list of nodes. */\n nodes: Array<MoveModule>;\n /** Information to aid in pagination. */\n pageInfo: PageInfo;\n};\n\n/** An edge in a connection. */\nexport type MoveModuleEdge = {\n __typename?: 'MoveModuleEdge';\n /** A cursor for use in pagination */\n cursor: Scalars['String']['output'];\n /** The item at the end of the edge */\n node: MoveModule;\n};\n\n/**\n * The representation of an object as a Move Object, which exposes additional\n * information (content, module that governs it, version, is transferrable,\n * etc.) about this object.\n */\nexport type MoveObject = IMoveObject & IObject & IOwner & {\n __typename?: 'MoveObject';\n address: Scalars['IotaAddress']['output'];\n /** Attempts to convert the Move object into a `0x2::coin::Coin`. */\n asCoin?: Maybe<Coin>;\n /** Attempts to convert the Move object into a `0x2::coin::CoinMetadata`. */\n asCoinMetadata?: Maybe<CoinMetadata>;\n /**\n * Attempts to convert the Move object into a\n * `0x3::staking_pool::StakedIota`.\n */\n asStakedIota?: Maybe<StakedIota>;\n /**\n * Total balance of all coins with marker type owned by this object. If\n * type is not supplied, it defaults to `0x2::iota::IOTA`.\n */\n balance?: Maybe<Balance>;\n /** The balances of all coin types owned by this object. */\n balances: BalanceConnection;\n /** The Base64-encoded BCS serialization of the object's content. */\n bcs?: Maybe<Scalars['Base64']['output']>;\n /**\n * The coin objects for this object.\n *\n * `type` is a filter on the coin's type parameter, defaulting to\n * `0x2::iota::IOTA`.\n */\n coins: CoinConnection;\n /**\n * Displays the contents of the Move object in a JSON string and through\n * GraphQL types. Also provides the flat representation of the type\n * signature, and the BCS of the corresponding data.\n */\n contents?: Maybe<MoveValue>;\n /**\n * 32-byte hash that identifies the object's contents, encoded as a Base58\n * string.\n */\n digest?: Maybe<Scalars['String']['output']>;\n /**\n * The set of named templates defined on-chain for the type of this object,\n * to be handled off-chain. The server substitutes data from the object\n * into these templates to generate a display string per template.\n */\n display?: Maybe<Array<DisplayEntry>>;\n /**\n * Access a dynamic field on an object using its name. Names are arbitrary\n * Move values whose type have `copy`, `drop`, and `store`, and are\n * specified using their type, and their BCS contents, Base64 encoded.\n *\n * Dynamic fields on wrapped objects can be accessed by using the same API\n * under the Owner type.\n */\n dynamicField?: Maybe<DynamicField>;\n /**\n * The dynamic fields and dynamic object fields on an object.\n *\n * Dynamic fields on wrapped objects can be accessed by using the same API\n * under the Owner type.\n */\n dynamicFields: DynamicFieldConnection;\n /**\n * Access a dynamic object field on an object using its name. Names are\n * arbitrary Move values whose type have `copy`, `drop`, and `store`,\n * and are specified using their type, and their BCS contents, Base64\n * encoded. The value of a dynamic object field can also be accessed\n * off-chain directly via its address (e.g. using `Query.object`).\n *\n * Dynamic fields on wrapped objects can be accessed by using the same API\n * under the Owner type.\n */\n dynamicObjectField?: Maybe<DynamicField>;\n /** Objects owned by this object, optionally `filter`-ed. */\n objects: MoveObjectConnection;\n /** The owner type of this object: Immutable, Shared, Parent, Address */\n owner?: Maybe<ObjectOwner>;\n /** The transaction block that created this version of the object. */\n previousTransactionBlock?: Maybe<TransactionBlock>;\n /**\n * The transaction blocks that sent objects to this object.\n *\n * `scanLimit` restricts the number of candidate transactions scanned when\n * gathering a page of results. It is required for queries that apply\n * more than two complex filters (on function, kind, sender, recipient,\n * input object, changed object, or ids), and can be at most\n * `serviceConfig.maxScanLimit`.\n *\n * When the scan limit is reached the page will be returned even if it has\n * fewer than `first` results when paginating forward (`last` when\n * paginating backwards). If there are more transactions to scan,\n * `pageInfo.hasNextPage` (or `pageInfo.hasPreviousPage`) will be set to\n * `true`, and `PageInfo.endCursor` (or `PageInfo.startCursor`) will be set\n * to the last transaction that was scanned as opposed to the last (or\n * first) transaction in the page.\n *\n * Requesting the next (or previous) page after this cursor will resume the\n * search, scanning the next `scanLimit` many transactions in the\n * direction of pagination, and so on until all transactions in the\n * scanning range have been visited.\n *\n * By default, the scanning range includes all transactions known to\n * GraphQL, but it can be restricted by the `after` and `before`\n * cursors, and the `beforeCheckpoint`, `afterCheckpoint` and\n * `atCheckpoint` filters.\n */\n receivedTransactionBlocks: TransactionBlockConnection;\n /** The `0x3::staking_pool::StakedIota` objects owned by this object. */\n stakedIotas: StakedIotaConnection;\n /**\n * The current status of the object as read from the off-chain store. The\n * possible states are: NOT_INDEXED, the object is loaded from\n * serialized data, such as the contents of a genesis or system package\n * upgrade transaction. LIVE, the version returned is the most recent for\n * the object, and it is not deleted or wrapped at that version.\n * HISTORICAL, the object was referenced at a specific version or\n * checkpoint, so is fetched from historical tables and may not be the\n * latest version of the object. WRAPPED_OR_DELETED, the object is deleted\n * or wrapped and only partial information can be loaded.\"\n */\n status: ObjectKind;\n /**\n * The amount of IOTA we would rebate if this object gets deleted or\n * mutated. This number is recalculated based on the present storage\n * gas price.\n */\n storageRebate?: Maybe<Scalars['BigInt']['output']>;\n version: Scalars['UInt53']['output'];\n};\n\n\n/**\n * The representation of an object as a Move Object, which exposes additional\n * information (content, module that governs it, version, is transferrable,\n * etc.) about this object.\n */\nexport type MoveObjectBalanceArgs = {\n type?: InputMaybe<Scalars['String']['input']>;\n};\n\n\n/**\n * The representation of an object as a Move Object, which exposes additional\n * information (content, module that governs it, version, is transferrable,\n * etc.) about this object.\n */\nexport type MoveObjectBalancesArgs = {\n after?: InputMaybe<Scalars['String']['input']>;\n before?: InputMaybe<Scalars['String']['input']>;\n first?: InputMaybe<Scalars['Int']['input']>;\n last?: InputMaybe<Scalars['Int']['input']>;\n};\n\n\n/**\n * The representation of an object as a Move Object, which exposes additional\n * information (content, module that governs it, version, is transferrable,\n * etc.) about this object.\n */\nexport type MoveObjectCoinsArgs = {\n after?: InputMaybe<Scalars['String']['input']>;\n before?: InputMaybe<Scalars['String']['input']>;\n first?: InputMaybe<Scalars['Int']['input']>;\n last?: InputMaybe<Scalars['Int']['input']>;\n type?: InputMaybe<Scalars['String']['input']>;\n};\n\n\n/**\n * The representation of an object as a Move Object, which exposes additional\n * information (content, module that governs it, version, is transferrable,\n * etc.) about this object.\n */\nexport type MoveObjectDynamicFieldArgs = {\n name: DynamicFieldName;\n};\n\n\n/**\n * The representation of an object as a Move Object, which exposes additional\n * information (content, module that governs it, version, is transferrable,\n * etc.) about this object.\n */\nexport type MoveObjectDynamicFieldsArgs = {\n after?: InputMaybe<Scalars['String']['input']>;\n before?: InputMaybe<Scalars['String']['input']>;\n first?: InputMaybe<Scalars['Int']['input']>;\n last?: InputMaybe<Scalars['Int']['input']>;\n};\n\n\n/**\n * The representation of an object as a Move Object, which exposes additional\n * information (content, module that governs it, version, is transferrable,\n * etc.) about this object.\n */\nexport type MoveObjectDynamicObjectFieldArgs = {\n name: DynamicFieldName;\n};\n\n\n/**\n * The representation of an object as a Move Object, which exposes additional\n * information (content, module that governs it, version, is transferrable,\n * etc.) about this object.\n */\nexport type MoveObjectObjectsArgs = {\n after?: InputMaybe<Scalars['String']['input']>;\n before?: InputMaybe<Scalars['String']['input']>;\n filter?: InputMaybe<ObjectFilter>;\n first?: InputMaybe<Scalars['Int']['input']>;\n last?: InputMaybe<Scalars['Int']['input']>;\n};\n\n\n/**\n * The representation of an object as a Move Object, which exposes additional\n * information (content, module that governs it, version, is transferrable,\n * etc.) about this object.\n */\nexport type MoveObjectReceivedTransactionBlocksArgs = {\n after?: InputMaybe<Scalars['String']['input']>;\n before?: InputMaybe<Scalars['String']['input']>;\n filter?: InputMaybe<TransactionBlockFilter>;\n first?: InputMaybe<Scalars['Int']['input']>;\n last?: InputMaybe<Scalars['Int']['input']>;\n scanLimit?: InputMaybe<Scalars['Int']['input']>;\n};\n\n\n/**\n * The representation of an object as a Move Object, which exposes additional\n * information (content, module that governs it, version, is transferrable,\n * etc.) about this object.\n */\nexport type MoveObjectStakedIotasArgs = {\n after?: InputMaybe<Scalars['String']['input']>;\n before?: InputMaybe<Scalars['String']['input']>;\n first?: InputMaybe<Scalars['Int']['input']>;\n last?: InputMaybe<Scalars['Int']['input']>;\n};\n\nexport type MoveObjectConnection = {\n __typename?: 'MoveObjectConnection';\n /** A list of edges. */\n edges: Array<MoveObjectEdge>;\n /** A list of nodes. */\n nodes: Array<MoveObject>;\n /** Information to aid in pagination. */\n pageInfo: PageInfo;\n};\n\n/** An edge in a connection. */\nexport type MoveObjectEdge = {\n __typename?: 'MoveObjectEdge';\n /** A cursor for use in pagination */\n cursor: Scalars['String']['output'];\n /** The item at the end of the edge */\n node: MoveObject;\n};\n\n/**\n * A MovePackage is a kind of Move object that represents code that has been\n * published on chain. It exposes information about its modules, type\n * definitions, functions, and dependencies.\n */\nexport type MovePackage = IObject & IOwner & {\n __typename?: 'MovePackage';\n address: Scalars['IotaAddress']['output'];\n /**\n * Total balance of all coins with marker type owned by this package. If\n * type is not supplied, it defaults to `0x2::iota::IOTA`.\n *\n * Note that coins owned by a package are inaccessible, because packages\n * are immutable and cannot be owned by an address.\n */\n balance?: Maybe<Balance>;\n /**\n * The balances of all coin types owned by this package.\n *\n * Note that coins owned by a package are inaccessible, because packages\n * are immutable and cannot be owned by an address.\n */\n balances: BalanceConnection;\n /** The Base64-encoded BCS serialization of the package's content. */\n bcs?: Maybe<Scalars['Base64']['output']>;\n /**\n * The coin objects owned by this package.\n *\n * `type` is a filter on the coin's type parameter, defaulting to\n * `0x2::iota::IOTA`.\n *\n * Note that coins owned by a package are inaccessible, because packages\n * are immutable and cannot be owned by an address.\n */\n coins: CoinConnection;\n /**\n * 32-byte hash that identifies the package's contents, encoded as a Base58\n * string.\n */\n digest?: Maybe<Scalars['String']['output']>;\n /**\n * Fetch the latest version of this package (the package with the highest\n * `version` that shares this packages's original ID)\n */\n latestPackage: MovePackage;\n /** The transitive dependencies of this package. */\n linkage?: Maybe<Array<Linkage>>;\n /**\n * A representation of the module called `name` in this package, including\n * the structs and functions it defines.\n */\n module?: Maybe<MoveModule>;\n /**\n * BCS representation of the package's modules. Modules appear as a\n * sequence of pairs (module name, followed by module bytes), in\n * alphabetic order by module name.\n */\n moduleBcs?: Maybe<Scalars['Base64']['output']>;\n /** Paginate through the MoveModules defined in this package. */\n modules?: Maybe<MoveModuleConnection>;\n /**\n * Objects owned by this package, optionally `filter`-ed.\n *\n * Note that objects owned by a package are inaccessible, because packages\n * are immutable and cannot be owned by an address.\n */\n objects: MoveObjectConnection;\n /**\n * The owner type of this object: Immutable, Shared, Parent, Address\n * Packages are always Immutable.\n */\n owner?: Maybe<ObjectOwner>;\n /**\n * Fetch another version of this package (the package that shares this\n * package's original ID, but has the specified `version`).\n */\n packageAtVersion?: Maybe<MovePackage>;\n /**\n * Fetch all versions of this package (packages that share this package's\n * original ID), optionally bounding the versions exclusively from\n * below with `afterVersion`, or from above with `beforeVersion`.\n */\n packageVersions: MovePackageConnection;\n /** The transaction block that published or upgraded this package. */\n previousTransactionBlock?: Maybe<TransactionBlock>;\n /**\n * The transaction blocks that sent objects to this package.\n *\n * Note that objects that have been sent to a package become inaccessible.\n *\n * `scanLimit` restricts the number of candidate transactions scanned when\n * gathering a page of results. It is required for queries that apply\n * more than two complex filters (on function, kind, sender, recipient,\n * input object, changed object, or ids), and can be at most\n * `serviceConfig.maxScanLimit`.\n *\n * When the scan limit is reached the page will be returned even if it has\n * fewer than `first` results when paginating forward (`last` when\n * paginating backwards). If there are more transactions to scan,\n * `pageInfo.hasNextPage` (or `pageInfo.hasPreviousPage`) will be set to\n * `true`, and `PageInfo.endCursor` (or `PageInfo.startCursor`) will be set\n * to the last transaction that was scanned as opposed to the last (or\n * first) transaction in the page.\n *\n * Requesting the next (or previous) page after this cursor will resume the\n * search, scanning the next `scanLimit` many transactions in the\n * direction of pagination, and so on until all transactions in the\n * scanning range have been visited.\n *\n * By default, the scanning range includes all transactions known to\n * GraphQL, but it can be restricted by the `after` and `before`\n * cursors, and the `beforeCheckpoint`, `afterCheckpoint` and\n * `atCheckpoint` filters.\n */\n receivedTransactionBlocks: TransactionBlockConnection;\n /**\n * The `0x3::staking_pool::StakedIota` objects owned by this package.\n *\n * Note that objects owned by a package are inaccessible, because packages\n * are immutable and cannot be owned by an address.\n */\n stakedIotas: StakedIotaConnection;\n /**\n * The current status of the object as read from the off-chain store. The\n * possible states are: NOT_INDEXED, the object is loaded from\n * serialized data, such as the contents of a genesis or system package\n * upgrade transaction. LIVE, the version returned is the most recent for\n * the object, and it is not deleted or wrapped at that version.\n * HISTORICAL, the object was referenced at a specific version or\n * checkpoint, so is fetched from historical tables and may not be the\n * latest version of the object. WRAPPED_OR_DELETED, the object is deleted\n * or wrapped and only partial information can be loaded.\"\n */\n status: ObjectKind;\n /**\n * The amount of IOTA we would rebate if this object gets deleted or\n * mutated. This number is recalculated based on the present storage\n * gas price.\n *\n * Note that packages cannot be deleted or mutated, so this number is\n * provided purely for reference.\n */\n storageRebate?: Maybe<Scalars['BigInt']['output']>;\n /** The (previous) versions of this package that introduced its types. */\n typeOrigins?: Maybe<Array<TypeOrigin>>;\n version: Scalars['UInt53']['output'];\n};\n\n\n/**\n * A MovePackage is a kind of Move object that represents code that has been\n * published on chain. It exposes information about its modules, type\n * definitions, functions, and dependencies.\n */\nexport type MovePackageBalanceArgs = {\n type?: InputMaybe<Scalars['String']['input']>;\n};\n\n\n/**\n * A MovePackage is a kind of Move object that represents code that has been\n * published on chain. It exposes information about its modules, type\n * definitions, functions, and dependencies.\n */\nexport type MovePackageBalancesArgs = {\n after?: InputMaybe<Scalars['String']['input']>;\n before?: InputMaybe<Scalars['String']['input']>;\n first?: InputMaybe<Scalars['Int']['input']>;\n last?: InputMaybe<Scalars['Int']['input']>;\n};\n\n\n/**\n * A MovePackage is a kind of Move object that represents code that has been\n * published on chain. It exposes information about its modules, type\n * definitions, functions, and dependencies.\n */\nexport type MovePackageCoinsArgs = {\n after?: InputMaybe<Scalars['String']['input']>;\n before?: InputMaybe<Scalars['String']['input']>;\n first?: InputMaybe<Scalars['Int']['input']>;\n last?: InputMaybe<Scalars['Int']['input']>;\n type?: InputMaybe<Scalars['String']['input']>;\n};\n\n\n/**\n * A MovePackage is a kind of Move object that represents code that has been\n * published on chain. It exposes information about its modules, type\n * definitions, functions, and dependencies.\n */\nexport type MovePackageModuleArgs = {\n name: Scalars['String']['input'];\n};\n\n\n/**\n * A MovePackage is a kind of Move object that represents code that has been\n * published on chain. It exposes information about its modules, type\n * definitions, functions, and dependencies.\n */\nexport type MovePackageModulesArgs = {\n after?: InputMaybe<Scalars['String']['input']>;\n before?: InputMaybe<Scalars['String']['input']>;\n first?: InputMaybe<Scalars['Int']['input']>;\n last?: InputMaybe<Scalars['Int']['input']>;\n};\n\n\n/**\n * A MovePackage is a kind of Move object that represents code that has been\n * published on chain. It exposes information about its modules, type\n * definitions, functions, and dependencies.\n */\nexport type MovePackageObjectsArgs = {\n after?: InputMaybe<Scalars['String']['input']>;\n before?: InputMaybe<Scalars['String']['input']>;\n filter?: InputMaybe<ObjectFilter>;\n first?: InputMaybe<Scalars['Int']['input']>;\n last?: InputMaybe<Scalars['Int']['input']>;\n};\n\n\n/**\n * A MovePackage is a kind of Move object that represents code that has been\n * published on chain. It exposes information about its modules, type\n * definitions, functions, and dependencies.\n */\nexport type MovePackagePackageAtVersionArgs = {\n version: Scalars['Int']['input'];\n};\n\n\n/**\n * A MovePackage is a kind of Move object that represents code that has been\n * published on chain. It exposes information about its modules, type\n * definitions, functions, and dependencies.\n */\nexport type MovePackagePackageVersionsArgs = {\n after?: InputMaybe<Scalars['String']['input']>;\n before?: InputMaybe<Scalars['String']['input']>;\n filter?: InputMaybe<MovePackageVersionFilter>;\n first?: InputMaybe<Scalars['Int']['input']>;\n last?: InputMaybe<Scalars['Int']['input']>;\n};\n\n\n/**\n * A MovePackage is a kind of Move object that represents code that has been\n * published on chain. It exposes information about its modules, type\n * definitions, functions, and dependencies.\n */\nexport type MovePackageReceivedTransactionBlocksArgs = {\n after?: InputMaybe<Scalars['String']['input']>;\n before?: InputMaybe<Scalars['String']['input']>;\n filter?: InputMaybe<TransactionBlockFilter>;\n first?: InputMaybe<Scalars['Int']['input']>;\n last?: InputMaybe<Scalars['Int']['input']>;\n scanLimit?: InputMaybe<Scalars['Int']['input']>;\n};\n\n\n/**\n * A MovePackage is a kind of Move object that represents code that has been\n * published on chain. It exposes information about its modules, type\n * definitions, functions, and dependencies.\n */\nexport type MovePackageStakedIotasArgs = {\n after?: InputMaybe<Scalars['String']['input']>;\n before?: InputMaybe<Scalars['String']['input']>;\n first?: InputMaybe<Scalars['Int']['input']>;\n last?: InputMaybe<Scalars['Int']['input']>;\n};\n\n/**\n * Filter for paginating `MovePackage`s that were created within a range of\n * checkpoints.\n */\nexport type MovePackageCheckpointFilter = {\n /**\n * Fetch packages that were published strictly after this checkpoint.\n * Omitting this fetches packages published since genesis.\n */\n afterCheckpoint?: InputMaybe<Scalars['UInt53']['input']>;\n /**\n * Fetch packages that were published strictly before this checkpoint.\n * Omitting this fetches packages published up to the latest checkpoint\n * (inclusive).\n */\n beforeCheckpoint?: InputMaybe<Scalars['UInt53']['input']>;\n};\n\nexport type MovePackageConnection = {\n __typename?: 'MovePackageConnection';\n /** A list of edges. */\n edges: Array<MovePackageEdge>;\n /** A list of nodes. */\n nodes: Array<MovePackage>;\n /** Information to aid in pagination. */\n pageInfo: PageInfo;\n};\n\n/** An edge in a connection. */\nexport type MovePackageEdge = {\n __typename?: 'MovePackageEdge';\n /** A cursor for use in pagination */\n cursor: Scalars['String']['output'];\n /** The item at the end of the edge */\n node: MovePackage;\n};\n\n/** Filter for paginating versions of a given `MovePackage`. */\nexport type MovePackageVersionFilter = {\n /**\n * Fetch versions of this package that are strictly newer than this\n * version. Omitting this fetches versions since the original version.\n */\n afterVersion?: InputMaybe<Scalars['UInt53']['input']>;\n /**\n * Fetch versions of this package that are strictly older than this\n * version. Omitting this fetches versions up to the latest version\n * (inclusive).\n */\n beforeVersion?: InputMaybe<Scalars['UInt53']['input']>;\n};\n\n/** Description of a struct type, defined in a Move module. */\nexport type MoveStruct = IMoveDatatype & {\n __typename?: 'MoveStruct';\n /** Abilities this struct has. */\n abilities?: Maybe<Array<MoveAbility>>;\n /**\n * The names and types of the struct's fields. Field types reference type\n * parameters, by their index in the defining struct's `typeParameters`\n * list.\n */\n fields?: Maybe<Array<MoveField>>;\n /** The module this struct was originally defined in. */\n module: MoveModule;\n /** The struct's (unqualified) type name. */\n name: Scalars['String']['output'];\n /**\n * Constraints on the struct's formal type parameters. Move bytecode does\n * not name type parameters, so when they are referenced (e.g. in field\n * types) they are identified by their index in this list.\n */\n typeParameters?: Maybe<Array<MoveStructTypeParameter>>;\n};\n\nexport type MoveStructConnection = {\n __typename?: 'MoveStructConnection';\n /** A list of edges. */\n edges: Array<MoveStructEdge>;\n /** A list of nodes. */\n nodes: Array<MoveStruct>;\n /** Information to aid in pagination. */\n pageInfo: PageInfo;\n};\n\n/** An edge in a connection. */\nexport type MoveStructEdge = {\n __typename?: 'MoveStructEdge';\n /** A cursor for use in pagination */\n cursor: Scalars['String']['output'];\n /** The item at the end of the edge */\n node: MoveStruct;\n};\n\nexport type MoveStructTypeParameter = {\n __typename?: 'MoveStructTypeParameter';\n constraints: Array<MoveAbility>;\n isPhantom: Scalars['Boolean']['output'];\n};\n\n/** Represents concrete types (no type parameters, no references). */\nexport type MoveType = {\n __typename?: 'MoveType';\n /** The abilities this concrete type has. */\n abilities: Array<MoveAbility>;\n /** Structured representation of the \"shape\" of values that match this type. */\n layout: Scalars['MoveTypeLayout']['output'];\n /** Flat representation of the type signature, as a displayable string. */\n repr: Scalars['String']['output'];\n /** Structured representation of the type signature. */\n signature: Scalars['MoveTypeSignature']['output'];\n};\n\nexport type MoveValue = {\n __typename?: 'MoveValue';\n /** The BCS representation of this value, Base64 encoded. */\n bcs: Scalars['Base64']['output'];\n /** Structured contents of a Move value. */\n data: Scalars['MoveData']['output'];\n /**\n * Representation of a Move value in JSON, where:\n *\n * - Addresses, IDs, and UIDs are represented in canonical form, as JSON\n * strings.\n * - Bools are represented by JSON boolean literals.\n * - u8, u16, and u32 are represented as JSON numbers.\n * - u64, u128, and u256 are represented as JSON strings.\n * - Vectors are represented by JSON arrays.\n * - Structs are represented by JSON objects.\n * - Empty optional values are represented by `null`.\n *\n * This form is offered as a less verbose convenience in cases where the\n * layout of the type is known by the client.\n */\n json: Scalars['JSON']['output'];\n /** The value's Move type. */\n type: MoveType;\n};\n\n/**\n * The visibility modifier describes which modules can access this module\n * member. By default, a module member can be called only within the same\n * module.\n */\nexport enum MoveVisibility {\n /**\n * A friend member can be accessed in the module it is defined in and any\n * other module in its package that is explicitly specified in its\n * friend list.\n */\n Friend = 'FRIEND',\n /** A private member can be accessed in the module it is defined in. */\n Private = 'PRIVATE',\n /** A public member can be accessed by any module. */\n Public = 'PUBLIC'\n}\n\n/** Mutations are used to write to the IOTA network. */\nexport type Mutation = {\n __typename?: 'Mutation';\n /**\n * Execute a transaction, committing its effects on chain.\n *\n * - `txBytes` is a `TransactionData` struct that has been BCS-encoded and\n * then Base64-encoded.\n * - `signatures` are a list of `flag || signature || pubkey` bytes,\n * Base64-encoded.\n *\n * Waits until the transaction has reached finality on chain to return its\n * transaction digest, or returns the error that prevented finality if\n * that was not possible. A transaction is final when its effects are\n * guaranteed on chain (it cannot be revoked).\n *\n * There may be a delay between transaction finality and when GraphQL\n * requests (including the request that issued the transaction) reflect\n * its effects. As a result, queries that depend on indexing the state\n * of the chain (e.g. contents of output objects, address-level balance\n * information at the time of the transaction), must wait for indexing to\n * catch up by polling for the transaction digest using\n * `Query.transactionBlock`.\n */\n executeTransactionBlock: ExecutionResult;\n};\n\n\n/** Mutations are used to write to the IOTA network. */\nexport type MutationExecuteTransactionBlockArgs = {\n signatures: Array<Scalars['String']['input']>;\n txBytes: Scalars['String']['input'];\n};\n\n/**\n * An object in IOTA is a package (set of Move bytecode modules) or object\n * (typed data structure with fields) with additional metadata detailing its\n * id, version, transaction digest, owner field indicating how this object can\n * be accessed.\n */\nexport type Object = IObject & IOwner & {\n __typename?: 'Object';\n address: Scalars['IotaAddress']['output'];\n /** Attempts to convert the object into a MoveObject */\n asMoveObject?: Maybe<MoveObject>;\n /** Attempts to convert the object into a MovePackage */\n asMovePackage?: Maybe<MovePackage>;\n /**\n * Total balance of all coins with marker type owned by this object. If\n * type is not supplied, it defaults to `0x2::iota::IOTA`.\n */\n balance?: Maybe<Balance>;\n /** The balances of all coin types owned by this object. */\n balances: BalanceConnection;\n /** The Base64-encoded BCS serialization of the object's content. */\n bcs?: Maybe<Scalars['Base64']['output']>;\n /**\n * The coin objects for this object.\n *\n * `type` is a filter on the coin's type parameter, defaulting to\n * `0x2::iota::IOTA`.\n */\n coins: CoinConnection;\n /**\n * 32-byte hash that identifies the object's current contents, encoded as a\n * Base58 string.\n */\n digest?: Maybe<Scalars['String']['output']>;\n /**\n * The set of named templates defined on-chain for the type of this object,\n * to be handled off-chain. The server substitutes data from the object\n * into these templates to generate a display string per template.\n */\n display?: Maybe<Array<DisplayEntry>>;\n /**\n * Access a dynamic field on an object using its name. Names are arbitrary\n * Move values whose type have `copy`, `drop`, and `store`, and are\n * specified using their type, and their BCS contents, Base64 encoded.\n *\n * Dynamic fields on wrapped objects can be accessed by using the same API\n * under the Owner type.\n */\n dynamicField?: Maybe<DynamicField>;\n /**\n * The dynamic fields and dynamic object fields on an object.\n *\n * Dynamic fields on wrapped objects can be accessed by using the same API\n * under the Owner type.\n */\n dynamicFields: DynamicFieldConnection;\n /**\n * Access a dynamic object field on an object using its name. Names are\n * arbitrary Move values whose type have `copy`, `drop`, and `store`,\n * and are specified using their type, and their BCS contents, Base64\n * encoded. The value of a dynamic object field can also be accessed\n * off-chain directly via its address (e.g. using `Query.object`).\n *\n * Dynamic fields on wrapped objects can be accessed by using the same API\n * under the Owner type.\n */\n dynamicObjectField?: Maybe<DynamicField>;\n /** Objects owned by this object, optionally `filter`-ed. */\n objects: MoveObjectConnection;\n /**\n * The owner type of this object: Immutable, Shared, Parent, Address\n * Immutable and Shared Objects do not have owners.\n */\n owner?: Maybe<ObjectOwner>;\n /** The transaction block that created this version of the object. */\n previousTransactionBlock?: Maybe<TransactionBlock>;\n /**\n * The transaction blocks that sent objects to this object.\n *\n * `scanLimit` restricts the number of candidate transactions scanned when\n * gathering a page of results. It is required for queries that apply\n * more than two complex filters (on function, kind, sender, recipient,\n * input object, changed object, or ids), and can be at most\n * `serviceConfig.maxScanLimit`.\n *\n * When the scan limit is reached the page will be returned even if it has\n * fewer than `first` results when paginating forward (`last` when\n * paginating backwards). If there are more transactions to scan,\n * `pageInfo.hasNextPage` (or `pageInfo.hasPreviousPage`) will be set to\n * `true`, and `PageInfo.endCursor` (or `PageInfo.startCursor`) will be set\n * to the last transaction that was scanned as opposed to the last (or\n * first) transaction in the page.\n *\n * Requesting the next (or previous) page after this cursor will resume the\n * search, scanning the next `scanLimit` many transactions in the\n * direction of pagination, and so on until all transactions in the\n * scanning range have been visited.\n *\n * By default, the scanning range includes all transactions known to\n * GraphQL, but it can be restricted by the `after` and `before`\n * cursors, and the `beforeCheckpoint`, `afterCheckpoint` and\n * `atCheckpoint` filters.\n */\n receivedTransactionBlocks: TransactionBlockConnection;\n /** The `0x3::staking_pool::StakedIota` objects owned by this object. */\n stakedIotas: StakedIotaConnection;\n /**\n * The current status of the object as read from the off-chain store. The\n * possible states are: NOT_INDEXED, the object is loaded from\n * serialized data, such as the contents of a genesis or system package\n * upgrade transaction. LIVE, the version returned is the most recent for\n * the object, and it is not deleted or wrapped at that version.\n * HISTORICAL, the object was referenced at a specific version or\n * checkpoint, so is fetched from historical tables and may not be the\n * latest version of the object. WRAPPED_OR_DELETED, the object is deleted\n * or wrapped and only partial information can be loaded.\"\n */\n status: ObjectKind;\n /**\n * The amount of IOTA we would rebate if this object gets deleted or\n * mutated. This number is recalculated based on the present storage\n * gas price.\n */\n storageRebate?: Maybe<Scalars['BigInt']['output']>;\n version: Scalars['UInt53']['output'];\n};\n\n\n/**\n * An object in IOTA is a package (set of Move bytecode modules) or object\n * (typed data structure with fields) with additional metadata detailing its\n * id, version, transaction digest, owner field indicating how this object can\n * be accessed.\n */\nexport type ObjectBalanceArgs = {\n type?: InputMaybe<Scalars['String']['input']>;\n};\n\n\n/**\n * An object in IOTA is a package (set of Move bytecode modules) or object\n * (typed data structure with fields) with additional metadata detailing its\n * id, version, transaction digest, owner field indicating how this object can\n * be accessed.\n */\nexport type ObjectBalancesArgs = {\n after?: InputMaybe<Scalars['String']['input']>;\n before?: InputMaybe<Scalars['String']['input']>;\n first?: InputMaybe<Scalars['Int']['input']>;\n last?: InputMaybe<Scalars['Int']['input']>;\n};\n\n\n/**\n * An object in IOTA is a package (set of Move bytecode modules) or object\n * (typed data structure with fields) with additional metadata detailing its\n * id, version, transaction digest, owner field indicating how this object can\n * be accessed.\n */\nexport type ObjectCoinsArgs = {\n after?: InputMaybe<Scalars['String']['input']>;\n before?: InputMaybe<Scalars['String']['input']>;\n first?: InputMaybe<Scalars['Int']['input']>;\n last?: InputMaybe<Scalars['Int']['input']>;\n type?: InputMaybe<Scalars['String']['input']>;\n};\n\n\n/**\n * An object in IOTA is a package (set of Move bytecode modules) or object\n * (typed data structure with fields) with additional metadata detailing its\n * id, version, transaction digest, owner field indicating how this object can\n * be accessed.\n */\nexport type ObjectDynamicFieldArgs = {\n name: DynamicFieldName;\n};\n\n\n/**\n * An object in IOTA is a package (set of Move bytecode modules) or object\n * (typed data structure with fields) with additional metadata detailing its\n * id, version, transaction digest, owner field indicating how this object can\n * be accessed.\n */\nexport type ObjectDynamicFieldsArgs = {\n after?: InputMaybe<Scalars['String']['input']>;\n before?: InputMaybe<Scalars['String']['input']>;\n first?: InputMaybe<Scalars['Int']['input']>;\n last?: InputMaybe<Scalars['Int']['input']>;\n};\n\n\n/**\n * An object in IOTA is a package (set of Move bytecode modules) or object\n * (typed data structure with fields) with additional metadata detailing its\n * id, version, transaction digest, owner field indicating how this object can\n * be accessed.\n */\nexport type ObjectDynamicObjectFieldArgs = {\n name: DynamicFieldName;\n};\n\n\n/**\n * An object in IOTA is a package (set of Move bytecode modules) or object\n * (typed data structure with fields) with additional metadata detailing its\n * id, version, transaction digest, owner field indicating how this object can\n * be accessed.\n */\nexport type ObjectObjectsArgs = {\n after?: InputMaybe<Scalars['String']['input']>;\n before?: InputMaybe<Scalars['String']['input']>;\n filter?: InputMaybe<ObjectFilter>;\n first?: InputMaybe<Scalars['Int']['input']>;\n last?: InputMaybe<Scalars['Int']['input']>;\n};\n\n\n/**\n * An object in IOTA is a package (set of Move bytecode modules) or object\n * (typed data structure with fields) with additional metadata detailing its\n * id, version, transaction digest, owner field indicating how this object can\n * be accessed.\n */\nexport type ObjectReceivedTransactionBlocksArgs = {\n after?: InputMaybe<Scalars['String']['input']>;\n before?: InputMaybe<Scalars['String']['input']>;\n filter?: InputMaybe<TransactionBlockFilter>;\n first?: InputMaybe<Scalars['Int']['input']>;\n last?: InputMaybe<Scalars['Int']['input']>;\n scanLimit?: InputMaybe<Scalars['Int']['input']>;\n};\n\n\n/**\n * An object in IOTA is a package (set of Move bytecode modules) or object\n * (typed data structure with fields) with additional metadata detailing its\n * id, version, transaction digest, owner field indicating how this object can\n * be accessed.\n */\nexport type ObjectStakedIotasArgs = {\n after?: InputMaybe<Scalars['String']['input']>;\n before?: InputMaybe<Scalars['String']['input']>;\n first?: InputMaybe<Scalars['Int']['input']>;\n last?: InputMaybe<Scalars['Int']['input']>;\n};\n\n/** Effect on an individual Object (keyed by its ID). */\nexport type ObjectChange = {\n __typename?: 'ObjectChange';\n /** The address of the object that has changed. */\n address: Scalars['IotaAddress']['output'];\n /** Whether the ID was created in this transaction. */\n idCreated?: Maybe<Scalars['Boolean']['output']>;\n /** Whether the ID was deleted in this transaction. */\n idDeleted?: Maybe<Scalars['Boolean']['output']>;\n /** The contents of the object immediately before the transaction. */\n inputState?: Maybe<Object>;\n /** The contents of the object immediately after the transaction. */\n outputState?: Maybe<Object>;\n};\n\nexport type ObjectChangeConnection = {\n __typename?: 'ObjectChangeConnection';\n /** A list of edges. */\n edges: Array<ObjectChangeEdge>;\n /** A list of nodes. */\n nodes: Array<ObjectChange>;\n /** Information to aid in pagination. */\n pageInfo: PageInfo;\n};\n\n/** An edge in a connection. */\nexport type ObjectChangeEdge = {\n __typename?: 'ObjectChangeEdge';\n /** A cursor for use in pagination */\n cursor: Scalars['String']['output'];\n /** The item at the end of the edge */\n node: ObjectChange;\n};\n\nexport type ObjectConnection = {\n __typename?: 'ObjectConnection';\n /** A list of edges. */\n edges: Array<ObjectEdge>;\n /** A list of nodes. */\n nodes: Array<Object>;\n /** Information to aid in pagination. */\n pageInfo: PageInfo;\n};\n\n/** An edge in a connection. */\nexport type ObjectEdge = {\n __typename?: 'ObjectEdge';\n /** A cursor for use in pagination */\n cursor: Scalars['String']['output'];\n /** The item at the end of the edge */\n node: Object;\n};\n\n/**\n * Constrains the set of objects returned. All filters are optional, and the\n * resulting set of objects are ones whose\n *\n * - Type matches the `type` filter,\n * - AND, whose owner matches the `owner` filter,\n * - AND, whose ID is in `objectIds` OR whose ID and version is in\n * `objectKeys`.\n */\nexport type ObjectFilter = {\n /** Filter for live objects by their IDs. */\n objectIds?: InputMaybe<Array<Scalars['IotaAddress']['input']>>;\n /**\n * Filter for live or potentially historical objects by their ID and\n * version.\n */\n objectKeys?: InputMaybe<Array<ObjectKey>>;\n /** Filter for live objects by their current owners. */\n owner?: InputMaybe<Scalars['IotaAddress']['input']>;\n /**\n * This field is used to specify the type of objects that should be\n * included in the query results.\n *\n * Objects can be filtered by their type's package, package::module, or\n * their fully qualified type name.\n *\n * Generic types can be queried by either the generic type name, e.g.\n * `0x2::coin::Coin`, or by the full type name, such as\n * `0x2::coin::Coin<0x2::iota::IOTA>`.\n */\n type?: InputMaybe<Scalars['String']['input']>;\n};\n\nexport type ObjectKey = {\n objectId: Scalars['IotaAddress']['input'];\n version: Scalars['UInt53']['input'];\n};\n\nexport enum ObjectKind {\n /** The object is fetched from the index. */\n Indexed = 'INDEXED',\n /**\n * The object is loaded from serialized data, such as the contents of a\n * transaction that hasn't been indexed yet.\n */\n NotIndexed = 'NOT_INDEXED',\n /**\n * The object is deleted or wrapped and only partial information can be\n * loaded from the indexer.\n */\n WrappedOrDeleted = 'WRAPPED_OR_DELETED'\n}\n\n/** The object's owner type: Immutable, Shared, Parent, or Address. */\nexport type ObjectOwner = AddressOwner | Immutable | Parent | Shared;\n\nexport type ObjectRef = {\n /** ID of the object. */\n address: Scalars['IotaAddress']['input'];\n /** Digest of the object. */\n digest: Scalars['String']['input'];\n /** Version or sequence number of the object. */\n version: Scalars['UInt53']['input'];\n};\n\n/**\n * Represents types that could contain references or free type parameters.\n * Such types can appear as function parameters, in fields of structs, or as\n * actual type parameter.\n */\nexport type OpenMoveType = {\n __typename?: 'OpenMoveType';\n /** Flat representation of the type signature, as a displayable string. */\n repr: Scalars['String']['output'];\n /** Structured representation of the type signature. */\n signature: Scalars['OpenMoveTypeSignature']['output'];\n};\n\n/** A Move object, either immutable, or owned mutable. */\nexport type OwnedOrImmutable = {\n __typename?: 'OwnedOrImmutable';\n /** ID of the object being read. */\n address: Scalars['IotaAddress']['output'];\n /**\n * 32-byte hash that identifies the object's contents at this version,\n * encoded as a Base58 string.\n */\n digest: Scalars['String']['output'];\n /** The object at this version. May not be available due to pruning. */\n object?: Maybe<Object>;\n /** Version of the object being read. */\n version: Scalars['UInt53']['output'];\n};\n\n/**\n * An Owner is an entity that can own an object. Each Owner is identified by a\n * IotaAddress which represents either an Address (corresponding to a public\n * key of an account) or an Object, but never both (it is not known up-front\n * whether a given Owner is an Address or an Object).\n */\nexport type Owner = IOwner & {\n __typename?: 'Owner';\n address: Scalars['IotaAddress']['output'];\n asAddress?: Maybe<Address>;\n asObject?: Maybe<Object>;\n /**\n * Total balance of all coins with marker type owned by this object or\n * address. If type is not supplied, it defaults to `0x2::iota::IOTA`.\n */\n balance?: Maybe<Balance>;\n /** The balances of all coin types owned by this object or address. */\n balances: BalanceConnection;\n /**\n * The coin objects for this object or address.\n *\n * `type` is a filter on the coin's type parameter, defaulting to\n * `0x2::iota::IOTA`.\n */\n coins: CoinConnection;\n /**\n * Access a dynamic field on an object using its name. Names are arbitrary\n * Move values whose type have `copy`, `drop`, and `store`, and are\n * specified using their type, and their BCS contents, Base64 encoded.\n *\n * This field exists as a convenience when accessing a dynamic field on a\n * wrapped object.\n */\n dynamicField?: Maybe<DynamicField>;\n /**\n * The dynamic fields and dynamic object fields on an object.\n *\n * This field exists as a convenience when accessing a dynamic field on a\n * wrapped object.\n */\n dynamicFields: DynamicFieldConnection;\n /**\n * Access a dynamic object field on an object using its name. Names are\n * arbitrary Move values whose type have `copy`, `drop`, and `store`,\n * and are specified using their type, and their BCS contents, Base64\n * encoded. The value of a dynamic object field can also be accessed\n * off-chain directly via its address (e.g. using `Query.object`).\n *\n * This field exists as a convenience when accessing a dynamic field on a\n * wrapped object.\n */\n dynamicObjectField?: Maybe<DynamicField>;\n /** Objects owned by this object or address, optionally `filter`-ed. */\n objects: MoveObjectConnection;\n /**\n * The `0x3::staking_pool::StakedIota` objects owned by this object or\n * address.\n */\n stakedIotas: StakedIotaConnection;\n};\n\n\n/**\n * An Owner is an entity that can own an object. Each Owner is identified by a\n * IotaAddress which represents either an Address (corresponding to a public\n * key of an account) or an Object, but never both (it is not known up-front\n * whether a given Owner is an Address or an Object).\n */\nexport type OwnerBalanceArgs = {\n type?: InputMaybe<Scalars['String']['input']>;\n};\n\n\n/**\n * An Owner is an entity that can own an object. Each Owner is identified by a\n * IotaAddress which represents either an Address (corresponding to a public\n * key of an account) or an Object, but never both (it is not known up-front\n * whether a given Owner is an Address or an Object).\n */\nexport type OwnerBalancesArgs = {\n after?: InputMaybe<Scalars['String']['input']>;\n before?: InputMaybe<Scalars['String']['input']>;\n first?: InputMaybe<Scalars['Int']['input']>;\n last?: InputMaybe<Scalars['Int']['input']>;\n};\n\n\n/**\n * An Owner is an entity that can own an object. Each Owner is identified by a\n * IotaAddress which represents either an Address (corresponding to a public\n * key of an account) or an Object, but never both (it is not known up-front\n * whether a given Owner is an Address or an Object).\n */\nexport type OwnerCoinsArgs = {\n after?: InputMaybe<Scalars['String']['input']>;\n before?: InputMaybe<Scalars['String']['input']>;\n first?: InputMaybe<Scalars['Int']['input']>;\n last?: InputMaybe<Scalars['Int']['input']>;\n type?: InputMaybe<Scalars['String']['input']>;\n};\n\n\n/**\n * An Owner is an entity that can own an object. Each Owner is identified by a\n * IotaAddress which represents either an Address (corresponding to a public\n * key of an account) or an Object, but never both (it is not known up-front\n * whether a given Owner is an Address or an Object).\n */\nexport type OwnerDynamicFieldArgs = {\n name: DynamicFieldName;\n};\n\n\n/**\n * An Owner is an entity that can own an object. Each Owner is identified by a\n * IotaAddress which represents either an Address (corresponding to a public\n * key of an account) or an Object, but never both (it is not known up-front\n * whether a given Owner is an Address or an Object).\n */\nexport type OwnerDynamicFieldsArgs = {\n after?: InputMaybe<Scalars['String']['input']>;\n before?: InputMaybe<Scalars['String']['input']>;\n first?: InputMaybe<Scalars['Int']['input']>;\n last?: InputMaybe<Scalars['Int']['input']>;\n};\n\n\n/**\n * An Owner is an entity that can own an object. Each Owner is identified by a\n * IotaAddress which represents either an Address (corresponding to a public\n * key of an account) or an Object, but never both (it is not known up-front\n * whether a given Owner is an Address or an Object).\n */\nexport type OwnerDynamicObjectFieldArgs = {\n name: DynamicFieldName;\n};\n\n\n/**\n * An Owner is an entity that can own an object. Each Owner is identified by a\n * IotaAddress which represents either an Address (corresponding to a public\n * key of an account) or an Object, but never both (it is not known up-front\n * whether a given Owner is an Address or an Object).\n */\nexport type OwnerObjectsArgs = {\n after?: InputMaybe<Scalars['String']['input']>;\n before?: InputMaybe<Scalars['String']['input']>;\n filter?: InputMaybe<ObjectFilter>;\n first?: InputMaybe<Scalars['Int']['input']>;\n last?: InputMaybe<Scalars['Int']['input']>;\n};\n\n\n/**\n * An Owner is an entity that can own an object. Each Owner is identified by a\n * IotaAddress which represents either an Address (corresponding to a public\n * key of an account) or an Object, but never both (it is not known up-front\n * whether a given Owner is an Address or an Object).\n */\nexport type OwnerStakedIotasArgs = {\n after?: InputMaybe<Scalars['String']['input']>;\n before?: InputMaybe<Scalars['String']['input']>;\n first?: InputMaybe<Scalars['Int']['input']>;\n last?: InputMaybe<Scalars['Int']['input']>;\n};\n\n/** Information about pagination in a connection */\nexport type PageInfo = {\n __typename?: 'PageInfo';\n /** When paginating forwards, the cursor to continue. */\n endCursor?: Maybe<Scalars['String']['output']>;\n /** When paginating forwards, are there more items? */\n hasNextPage: Scalars['Boolean']['output'];\n /** When paginating backwards, are there more items? */\n hasPreviousPage: Scalars['Boolean']['output'];\n /** When paginating backwards, the cursor to continue. */\n startCursor?: Maybe<Scalars['String']['output']>;\n};\n\n/**\n * If the object's owner is a Parent, this object is part of a dynamic field\n * (it is the value of the dynamic field, or the intermediate Field object\n * itself). Also note that if the owner is a parent, then it's guaranteed to be\n * an object.\n */\nexport type Parent = {\n __typename?: 'Parent';\n parent?: Maybe<Object>;\n};\n\n/** A single transaction, or command, in the programmable transaction block. */\nexport type ProgrammableTransaction = MakeMoveVecTransaction | MergeCoinsTransaction | MoveCallTransaction | PublishTransaction | SplitCoinsTransaction | TransferObjectsTransaction | UpgradeTransaction;\n\n/**\n * A user transaction that allows the interleaving of native commands (like\n * transfer, split coins, merge coins, etc) and move calls, executed\n * atomically.\n */\nexport type ProgrammableTransactionBlock = {\n __typename?: 'ProgrammableTransactionBlock';\n /** Input objects or primitive values. */\n inputs: TransactionInputConnection;\n /** The transaction commands, executed sequentially. */\n transactions: ProgrammableTransactionConnection;\n};\n\n\n/**\n * A user transaction that allows the interleaving of native commands (like\n * transfer, split coins, merge coins, etc) and move calls, executed\n * atomically.\n */\nexport type ProgrammableTransactionBlockInputsArgs = {\n after?: InputMaybe<Scalars['String']['input']>;\n before?: InputMaybe<Scalars['String']['input']>;\n first?: InputMaybe<Scalars['Int']['input']>;\n last?: InputMaybe<Scalars['Int']['input']>;\n};\n\n\n/**\n * A user transaction that allows the interleaving of native commands (like\n * transfer, split coins, merge coins, etc) and move calls, executed\n * atomically.\n */\nexport type ProgrammableTransactionBlockTransactionsArgs = {\n after?: InputMaybe<Scalars['String']['input']>;\n before?: InputMaybe<Scalars['String']['input']>;\n first?: InputMaybe<Scalars['Int']['input']>;\n last?: InputMaybe<Scalars['Int']['input']>;\n};\n\nexport type ProgrammableTransactionConnection = {\n __typename?: 'ProgrammableTransactionConnection';\n /** A list of edges. */\n edges: Array<ProgrammableTransactionEdge>;\n /** A list of nodes. */\n nodes: Array<ProgrammableTransaction>;\n /** Information to aid in pagination. */\n pageInfo: PageInfo;\n};\n\n/** An edge in a connection. */\nexport type ProgrammableTransactionEdge = {\n __typename?: 'ProgrammableTransactionEdge';\n /** A cursor for use in pagination */\n cursor: Scalars['String']['output'];\n /** The item at the end of the edge */\n node: ProgrammableTransaction;\n};\n\n/** A single protocol configuration value. */\nexport type ProtocolConfigAttr = {\n __typename?: 'ProtocolConfigAttr';\n key: Scalars['String']['output'];\n value?: Maybe<Scalars['String']['output']>;\n};\n\n/** Whether or not a single feature is enabled in the protocol config. */\nexport type ProtocolConfigFeatureFlag = {\n __typename?: 'ProtocolConfigFeatureFlag';\n key: Scalars['String']['output'];\n value: Scalars['Boolean']['output'];\n};\n\n/**\n * Constants that control how the chain operates.\n *\n * These can only change during protocol upgrades which happen on epoch\n * boundaries.\n */\nexport type ProtocolConfigs = {\n __typename?: 'ProtocolConfigs';\n /** Query for the value of the configuration with name `key`. */\n config?: Maybe<ProtocolConfigAttr>;\n /**\n * List all available configurations and their values. These\n * configurations can take any value (but they will all be represented\n * in string form), and do not include feature flags.\n */\n configs: Array<ProtocolConfigAttr>;\n /** Query for the state of the feature flag with name `key`. */\n featureFlag?: Maybe<ProtocolConfigFeatureFlag>;\n /**\n * List all available feature flags and their values. Feature flags are a\n * form of boolean configuration that are usually used to gate features\n * while they are in development. Once a flag has been enabled, it is\n * rare for it to be disabled.\n */\n featureFlags: Array<ProtocolConfigFeatureFlag>;\n /**\n * The protocol is not required to change on every epoch boundary, so the\n * protocol version tracks which change to the protocol these configs\n * are from.\n */\n protocolVersion: Scalars['UInt53']['output'];\n};\n\n\n/**\n * Constants that control how the chain operates.\n *\n * These can only change during protocol upgrades which happen on epoch\n * boundaries.\n */\nexport type ProtocolConfigsConfigArgs = {\n key: Scalars['String']['input'];\n};\n\n\n/**\n * Constants that control how the chain operates.\n *\n * These can only change during protocol upgrades which happen on epoch\n * boundaries.\n */\nexport type ProtocolConfigsFeatureFlagArgs = {\n key: Scalars['String']['input'];\n};\n\n/** Publishes a Move Package. */\nexport type PublishTransaction = {\n __typename?: 'PublishTransaction';\n /** IDs of the transitive dependencies of the package to be published. */\n dependencies: Array<Scalars['IotaAddress']['output']>;\n /**\n * Bytecode for the modules to be published, BCS serialized and Base64\n * encoded.\n */\n modules: Array<Scalars['Base64']['output']>;\n};\n\n/** BCS encoded primitive value (not an object or Move struct). */\nexport type Pure = {\n __typename?: 'Pure';\n /** BCS serialized and Base64 encoded primitive value. */\n bytes: Scalars['Base64']['output'];\n};\n\nexport type Query = {\n __typename?: 'Query';\n /** Look-up an Account by its IotaAddress. */\n address?: Maybe<Address>;\n /**\n * Range of checkpoints that the RPC has data available for (for data\n * that can be tied to a particular checkpoint).\n */\n availableRange: AvailableRange;\n /**\n * First four bytes of the network's genesis checkpoint digest (uniquely\n * identifies the network).\n */\n chainIdentifier: Scalars['String']['output'];\n /**\n * Fetch checkpoint information by sequence number or digest (defaults to\n * the latest available checkpoint).\n */\n checkpoint?: Maybe<Checkpoint>;\n /** The checkpoints that exist in the network. */\n checkpoints: CheckpointConnection;\n /** The coin metadata associated with the given coin type. */\n coinMetadata?: Maybe<CoinMetadata>;\n /**\n * The coin objects that exist in the network.\n *\n * The type field is a string of the inner type of the coin by which to\n * filter (e.g. `0x2::iota::IOTA`). If no type is provided, it will\n * default to `0x2::iota::IOTA`.\n */\n coins: CoinConnection;\n /**\n * Simulate running a transaction to inspect its effects without\n * committing to them on-chain.\n *\n * `txBytes` either a `TransactionData` struct or a `TransactionKind`\n * struct, BCS-encoded and then Base64-encoded. The expected\n * type is controlled by the presence or absence of `txMeta`: If\n * present, `txBytes` is assumed to be a `TransactionKind`, if\n * absent, then `TransactionData`.\n *\n * `txMeta` the data that is missing from a `TransactionKind` to make\n * a `TransactionData` (sender address and gas information). All\n * its fields are nullable.\n *\n * `skipChecks` optional flag to disable the usual verification\n * checks that prevent access to objects that are owned by\n * addresses other than the sender, and calling non-public,\n * non-entry functions, and some other checks. Defaults to false.\n */\n dryRunTransactionBlock: DryRunResult;\n /** Fetch epoch information by ID (defaults to the latest epoch). */\n epoch?: Maybe<Epoch>;\n /**\n * Query events that are emitted in the network.\n * We currently do not support filtering by emitting module and event type\n * at the same time so if both are provided in one filter, the query will\n * error.\n */\n events: EventConnection;\n /**\n * The latest version of the package at `address`.\n *\n * This corresponds to the package with the highest `version` that shares\n * its original ID with the package at `address`.\n */\n latestPackage?: Maybe<MovePackage>;\n /**\n * The object corresponding to the given address at the (optionally) given\n * version. When no version is given, the latest version is returned.\n */\n object?: Maybe<Object>;\n /** The objects that exist in the network. */\n objects: ObjectConnection;\n /**\n * Look up an Owner by its IotaAddress.\n *\n * `rootVersion` represents the version of the root object in some nested\n * chain of dynamic fields. It allows consistent historical queries for\n * the case of wrapped objects, which don't have a version. For\n * example, if querying the dynamic field of a table wrapped in a parent\n * object, passing the parent object's version here will ensure we get the\n * dynamic field's state at the moment that parent's version was\n * created.\n *\n * Also, if this Owner is an object itself, `rootVersion` will be used to\n * bound its version from above when querying `Owner.asObject`. This\n * can be used, for example, to get the contents of a dynamic object\n * field when its parent was at `rootVersion`.\n *\n * If `rootVersion` is omitted, dynamic fields will be from a consistent\n * snapshot of the IOTA state at the latest checkpoint known to the\n * GraphQL RPC. Similarly, `Owner.asObject` will return the object's\n * version at the latest checkpoint.\n */\n owner?: Maybe<Owner>;\n /**\n * The package corresponding to the given address (at the optionally given\n * version).\n *\n * When no version is given, the package is loaded directly from the\n * address given. Otherwise, the address is translated before loading\n * to point to the package whose original ID matches the package at\n * `address`, but whose version is `version`. For non-system packages, this\n * might result in a different address than `address` because different\n * versions of a package, introduced by upgrades, exist at distinct\n * addresses.\n *\n * Note that this interpretation of `version` is different from a\n * historical object read (the interpretation of `version` for the\n * `object` query).\n */\n package?: Maybe<MovePackage>;\n /**\n * Fetch all versions of package at `address` (packages that share this\n * package's original ID), optionally bounding the versions exclusively\n * from below with `afterVersion`, or from above with `beforeVersion`.\n */\n packageVersions: MovePackageConnection;\n /**\n * The Move packages that exist in the network, optionally filtered to be\n * strictly before `beforeCheckpoint` and/or strictly after\n * `afterCheckpoint`.\n *\n * This query returns all versions of a given user package that appear\n * between the specified checkpoints, but only records the latest\n * versions of system packages.\n */\n packages: MovePackageConnection;\n /**\n * Fetch the protocol config by protocol version (defaults to the latest\n * protocol version known to the GraphQL service).\n */\n protocolConfig: ProtocolConfigs;\n /** Configuration for this RPC service */\n serviceConfig: ServiceConfig;\n /** Fetch a transaction block by its transaction digest. */\n transactionBlock?: Maybe<TransactionBlock>;\n /**\n * The transaction blocks that exist in the network.\n *\n * `scanLimit` restricts the number of candidate transactions scanned when\n * gathering a page of results. It is required for queries that apply\n * more than two complex filters (on function, kind, sender, recipient,\n * input object, changed object, or ids), and can be at most\n * `serviceConfig.maxScanLimit`.\n *\n * When the scan limit is reached the page will be returned even if it has\n * fewer than `first` results when paginating forward (`last` when\n * paginating backwards). If there are more transactions to scan,\n * `pageInfo.hasNextPage` (or `pageInfo.hasPreviousPage`) will be set to\n * `true`, and `PageInfo.endCursor` (or `PageInfo.startCursor`) will be set\n * to the last transaction that was scanned as opposed to the last (or\n * first) transaction in the page.\n *\n * Requesting the next (or previous) page after this cursor will resume the\n * search, scanning the next `scanLimit` many transactions in the\n * direction of pagination, and so on until all transactions in the\n * scanning range have been visited.\n *\n * By default, the scanning range includes all transactions known to\n * GraphQL, but it can be restricted by the `after` and `before`\n * cursors, and the `beforeCheckpoint`, `afterCheckpoint` and\n * `atCheckpoint` filters.\n */\n transactionBlocks: TransactionBlockConnection;\n /**\n * Fetch a structured representation of a concrete type, including its\n * layout information. Fails if the type is malformed.\n */\n type: MoveType;\n /**\n * Verify a zkLogin signature based on the provided transaction or personal\n * message based on current epoch, chain id, and latest JWKs fetched\n * on-chain. If the signature is valid, the function returns a\n * `ZkLoginVerifyResult` with success as true and an empty list of\n * errors. If the signature is invalid, the function returns\n * a `ZkLoginVerifyResult` with success as false with a list of errors.\n *\n * - `bytes` is either the personal message in raw bytes or transaction\n * data bytes in BCS-encoded and then Base64-encoded.\n * - `signature` is a serialized zkLogin signature that is Base64-encoded.\n * - `intentScope` is an enum that specifies the intent scope to be used to\n * parse bytes.\n * - `author` is the address of the signer of the transaction or personal\n * msg.\n */\n verifyZkloginSignature: ZkLoginVerifyResult;\n};\n\n\nexport type QueryAddressArgs = {\n address: Scalars['IotaAddress']['input'];\n};\n\n\nexport type QueryCheckpointArgs = {\n id?: InputMaybe<CheckpointId>;\n};\n\n\nexport type QueryCheckpointsArgs = {\n after?: InputMaybe<Scalars['String']['input']>;\n before?: InputMaybe<Scalars['String']['input']>;\n first?: InputMaybe<Scalars['Int']['input']>;\n last?: InputMaybe<Scalars['Int']['input']>;\n};\n\n\nexport type QueryCoinMetadataArgs = {\n coinType: Scalars['String']['input'];\n};\n\n\nexport type QueryCoinsArgs = {\n after?: InputMaybe<Scalars['String']['input']>;\n before?: InputMaybe<Scalars['String']['input']>;\n first?: InputMaybe<Scalars['Int']['input']>;\n last?: InputMaybe<Scalars['Int']['input']>;\n type?: InputMaybe<Scalars['String']['input']>;\n};\n\n\nexport type QueryDryRunTransactionBlockArgs = {\n skipChecks?: InputMaybe<Scalars['Boolean']['input']>;\n txBytes: Scalars['String']['input'];\n txMeta?: InputMaybe<TransactionMetadata>;\n};\n\n\nexport type QueryEpochArgs = {\n id?: InputMaybe<Scalars['UInt53']['input']>;\n};\n\n\nexport type QueryEventsArgs = {\n after?: InputMaybe<Scalars['String']['input']>;\n before?: InputMaybe<Scalars['String']['input']>;\n filter?: InputMaybe<EventFilter>;\n first?: InputMaybe<Scalars['Int']['input']>;\n last?: InputMaybe<Scalars['Int']['input']>;\n};\n\n\nexport type QueryLatestPackageArgs = {\n address: Scalars['IotaAddress']['input'];\n};\n\n\nexport type QueryObjectArgs = {\n address: Scalars['IotaAddress']['input'];\n version?: InputMaybe<Scalars['UInt53']['input']>;\n};\n\n\nexport type QueryObjectsArgs = {\n after?: InputMaybe<Scalars['String']['input']>;\n before?: InputMaybe<Scalars['String']['input']>;\n filter?: InputMaybe<ObjectFilter>;\n first?: InputMaybe<Scalars['Int']['input']>;\n last?: InputMaybe<Scalars['Int']['input']>;\n};\n\n\nexport type QueryOwnerArgs = {\n address: Scalars['IotaAddress']['input'];\n rootVersion?: InputMaybe<Scalars['UInt53']['input']>;\n};\n\n\nexport type QueryPackageArgs = {\n address: Scalars['IotaAddress']['input'];\n version?: InputMaybe<Scalars['UInt53']['input']>;\n};\n\n\nexport type QueryPackageVersionsArgs = {\n address: Scalars['IotaAddress']['input'];\n after?: InputMaybe<Scalars['String']['input']>;\n before?: InputMaybe<Scalars['String']['input']>;\n filter?: InputMaybe<MovePackageVersionFilter>;\n first?: InputMaybe<Scalars['Int']['input']>;\n last?: InputMaybe<Scalars['Int']['input']>;\n};\n\n\nexport type QueryPackagesArgs = {\n after?: InputMaybe<Scalars['String']['input']>;\n before?: InputMaybe<Scalars['String']['input']>;\n filter?: InputMaybe<MovePackageCheckpointFilter>;\n first?: InputMaybe<Scalars['Int']['input']>;\n last?: InputMaybe<Scalars['Int']['input']>;\n};\n\n\nexport type QueryProtocolConfigArgs = {\n protocolVersion?: InputMaybe<Scalars['UInt53']['input']>;\n};\n\n\nexport type QueryTransactionBlockArgs = {\n digest: Scalars['String']['input'];\n};\n\n\nexport type QueryTransactionBlocksArgs = {\n after?: InputMaybe<Scalars['String']['input']>;\n before?: InputMaybe<Scalars['String']['input']>;\n filter?: InputMaybe<TransactionBlockFilter>;\n first?: InputMaybe<Scalars['Int']['input']>;\n last?: InputMaybe<Scalars['Int']['input']>;\n scanLimit?: InputMaybe<Scalars['Int']['input']>;\n};\n\n\nexport type QueryTypeArgs = {\n type: Scalars['String']['input'];\n};\n\n\nexport type QueryVerifyZkloginSignatureArgs = {\n author: Scalars['IotaAddress']['input'];\n bytes: Scalars['Base64']['input'];\n intentScope: ZkLoginIntentScope;\n signature: Scalars['Base64']['input'];\n};\n\n/** System transaction to update the source of on-chain randomness. */\nexport type RandomnessStateUpdateTransaction = {\n __typename?: 'RandomnessStateUpdateTransaction';\n /** Epoch of the randomness state update transaction. */\n epoch?: Maybe<Epoch>;\n /** Updated random bytes, encoded as Base64. */\n randomBytes: Scalars['Base64']['output'];\n /** The initial version the randomness object was shared at. */\n randomnessObjInitialSharedVersion: Scalars['UInt53']['output'];\n /** Randomness round of the update. */\n randomnessRound: Scalars['UInt53']['output'];\n};\n\n/** A Move object that can be received in this transaction. */\nexport type Receiving = {\n __typename?: 'Receiving';\n /** ID of the object being read. */\n address: Scalars['IotaAddress']['output'];\n /**\n * 32-byte hash that identifies the object's contents at this version,\n * encoded as a Base58 string.\n */\n digest: Scalars['String']['output'];\n /** The object at this version. May not be available due to pruning. */\n object?: Maybe<Object>;\n /** Version of the object being read. */\n version: Scalars['UInt53']['output'];\n};\n\n/** The result of another transaction command. */\nexport type Result = {\n __typename?: 'Result';\n /** The index of the previous command (0-indexed) that returned this result. */\n cmd: Scalars['Int']['output'];\n /**\n * If the previous command returns multiple values, this is the index of\n * the individual result among the multiple results from that command\n * (also 0-indexed).\n */\n ix?: Maybe<Scalars['Int']['output']>;\n};\n\n/** Information about whether epoch changes are using safe mode. */\nexport type SafeMode = {\n __typename?: 'SafeMode';\n /**\n * Whether safe mode was used for the last epoch change. The system will\n * retry a full epoch change on every epoch boundary and automatically\n * reset this flag if so.\n */\n enabled?: Maybe<Scalars['Boolean']['output']>;\n /**\n * Accumulated fees for computation and cost that have not been added to\n * the various reward pools, because the full epoch change did not\n * happen.\n */\n gasSummary?: Maybe<GasCostSummary>;\n};\n\n/** The enabled features and service limits configured by the server. */\nexport type ServiceConfig = {\n __typename?: 'ServiceConfig';\n /** List the available versions for this GraphQL service. */\n availableVersions: Array<Scalars['String']['output']>;\n /** Default number of elements allowed on a single page of a connection. */\n defaultPageSize: Scalars['Int']['output'];\n /** List of all features that are enabled on this GraphQL service. */\n enabledFeatures: Array<Feature>;\n /** Check whether `feature` is enabled on this GraphQL service. */\n isEnabled: Scalars['Boolean']['output'];\n /**\n * Maximum estimated cost of a database query used to serve a GraphQL\n * request. This is measured in the same units that the database uses\n * in EXPLAIN queries.\n */\n maxDbQueryCost: Scalars['Int']['output'];\n /**\n * Maximum nesting allowed in struct fields when calculating the layout of\n * a single Move Type.\n */\n maxMoveValueDepth: Scalars['Int']['output'];\n /**\n * The maximum number of output nodes in a GraphQL response.\n *\n * Non-connection nodes have a count of 1, while connection nodes are\n * counted as the specified 'first' or 'last' number of items, or the\n * default_page_size as set by the server if those arguments are not\n * set.\n *\n * Counts accumulate multiplicatively down the query tree. For example, if\n * a query starts with a connection of first: 10 and has a field to a\n * connection with last: 20, the count at the second level would be 200\n * nodes. This is then summed to the count of 10 nodes at the first\n * level, for a total of 210 nodes.\n */\n maxOutputNodes: Scalars['Int']['output'];\n /** Maximum number of elements allowed on a single page of a connection. */\n maxPageSize: Scalars['Int']['output'];\n /** The maximum depth a GraphQL query can be to be accepted by this service. */\n maxQueryDepth: Scalars['Int']['output'];\n /**\n * The maximum number of nodes (field names) the service will accept in a\n * single query.\n */\n maxQueryNodes: Scalars['Int']['output'];\n /** Maximum length of a query payload string. */\n maxQueryPayloadSize: Scalars['Int']['output'];\n /** Maximum number of candidates to scan when gathering a page of results. */\n maxScanLimit: Scalars['Int']['output'];\n /**\n * Maximum number of transaction ids that can be passed to a\n * `TransactionBlockFilter`.\n */\n maxTransactionIds: Scalars['Int']['output'];\n /**\n * Maximum nesting allowed in type arguments in Move Types resolved by this\n * service.\n */\n maxTypeArgumentDepth: Scalars['Int']['output'];\n /**\n * Maximum number of type arguments passed into a generic instantiation of\n * a Move Type resolved by this service.\n */\n maxTypeArgumentWidth: Scalars['Int']['output'];\n /**\n * Maximum number of structs that need to be processed when calculating the\n * layout of a single Move Type.\n */\n maxTypeNodes: Scalars['Int']['output'];\n /**\n * Maximum time in milliseconds spent waiting for a response from fullnode\n * after issuing a a transaction to execute. Note that the transaction\n * may still succeed even in the case of a timeout. Transactions are\n * idempotent, so a transaction that times out should be resubmitted\n * until the network returns a definite response (success or failure, not\n * timeout).\n */\n mutationTimeoutMs: Scalars['Int']['output'];\n /**\n * Maximum time in milliseconds that will be spent to serve one query\n * request.\n */\n requestTimeoutMs: Scalars['Int']['output'];\n};\n\n\n/** The enabled features and service limits configured by the server. */\nexport type ServiceConfigIsEnabledArgs = {\n feature: Feature;\n};\n\n/**\n * A shared object is an object that is shared using the\n * 0x2::transfer::share_object function. Unlike owned objects, once an object\n * is shared, it stays mutable and is accessible by anyone.\n */\nexport type Shared = {\n __typename?: 'Shared';\n initialSharedVersion: Scalars['UInt53']['output'];\n};\n\n/** A Move object that's shared. */\nexport type SharedInput = {\n __typename?: 'SharedInput';\n address: Scalars['IotaAddress']['output'];\n /** The version that this this object was shared at. */\n initialSharedVersion: Scalars['UInt53']['output'];\n /**\n * Controls whether the transaction block can reference the shared object\n * as a mutable reference or by value. This has implications for\n * scheduling: Transactions that just read shared objects at a certain\n * version (mutable = false) can be executed concurrently, while\n * transactions that write shared objects (mutable = true) must be executed\n * serially with respect to each other.\n */\n mutable: Scalars['Boolean']['output'];\n};\n\n/**\n * The transaction accepted a shared object as input, but its execution was\n * cancelled.\n */\nexport type SharedObjectCancelled = {\n __typename?: 'SharedObjectCancelled';\n /** ID of the shared object. */\n address: Scalars['IotaAddress']['output'];\n /**\n * The assigned shared object version. It is a special version indicating\n * transaction cancellation reason.\n */\n version: Scalars['UInt53']['output'];\n};\n\n/**\n * The transaction accepted a shared object as input, but it was deleted before\n * the transaction executed.\n */\nexport type SharedObjectDelete = {\n __typename?: 'SharedObjectDelete';\n /** ID of the shared object. */\n address: Scalars['IotaAddress']['output'];\n /**\n * Whether this transaction intended to use this shared object mutably or\n * not. See `SharedInput.mutable` for further details.\n */\n mutable: Scalars['Boolean']['output'];\n /**\n * The version of the shared object that was assigned to this transaction\n * during by consensus, during sequencing.\n */\n version: Scalars['UInt53']['output'];\n};\n\n/** The transaction accepted a shared object as input, but only to read it. */\nexport type SharedObjectRead = {\n __typename?: 'SharedObjectRead';\n /** ID of the object being read. */\n address: Scalars['IotaAddress']['output'];\n /**\n * 32-byte hash that identifies the object's contents at this version,\n * encoded as a Base58 string.\n */\n digest: Scalars['String']['output'];\n /** The object at this version. May not be available due to pruning. */\n object?: Maybe<Object>;\n /** Version of the object being read. */\n version: Scalars['UInt53']['output'];\n};\n\n/**\n * Splits off coins with denominations in `amounts` from `coin`, returning\n * multiple results (as many as there are amounts.)\n */\nexport type SplitCoinsTransaction = {\n __typename?: 'SplitCoinsTransaction';\n /** The denominations to split off from the coin. */\n amounts: Array<TransactionArgument>;\n /** The coin to split. */\n coin: TransactionArgument;\n};\n\n/** The stake's possible status: active, pending, or unstaked. */\nexport enum StakeStatus {\n /**\n * The stake object is active in a staking pool and it is generating\n * rewards.\n */\n Active = 'ACTIVE',\n /** The stake awaits to join a staking pool in the next epoch. */\n Pending = 'PENDING',\n /** The stake is no longer active in any staking pool. */\n Unstaked = 'UNSTAKED'\n}\n\n/** Represents a `0x3::staking_pool::StakedIota` Move object on-chain. */\nexport type StakedIota = IMoveObject & IObject & IOwner & {\n __typename?: 'StakedIota';\n /** The epoch at which this stake became active. */\n activatedEpoch?: Maybe<Epoch>;\n address: Scalars['IotaAddress']['output'];\n /**\n * Total balance of all coins with marker type owned by this object. If\n * type is not supplied, it defaults to `0x2::iota::IOTA`.\n */\n balance?: Maybe<Balance>;\n /** The balances of all coin types owned by this object. */\n balances: BalanceConnection;\n /** The Base64-encoded BCS serialization of the object's content. */\n bcs?: Maybe<Scalars['Base64']['output']>;\n /**\n * The coin objects for this object.\n *\n * `type` is a filter on the coin's type parameter, defaulting to\n * `0x2::iota::IOTA`.\n */\n coins: CoinConnection;\n /**\n * Displays the contents of the Move object in a JSON string and through\n * GraphQL types. Also provides the flat representation of the type\n * signature, and the BCS of the corresponding data.\n */\n contents?: Maybe<MoveValue>;\n /**\n * 32-byte hash that identifies the object's contents, encoded as a Base58\n * string.\n */\n digest?: Maybe<Scalars['String']['output']>;\n /**\n * The set of named templates defined on-chain for the type of this object,\n * to be handled off-chain. The server substitutes data from the object\n * into these templates to generate a display string per template.\n */\n display?: Maybe<Array<DisplayEntry>>;\n /**\n * Access a dynamic field on an object using its name. Names are arbitrary\n * Move values whose type have `copy`, `drop`, and `store`, and are\n * specified using their type, and their BCS contents, Base64 encoded.\n *\n * Dynamic fields on wrapped objects can be accessed by using the same API\n * under the Owner type.\n */\n dynamicField?: Maybe<DynamicField>;\n /**\n * The dynamic fields and dynamic object fields on an object.\n *\n * Dynamic fields on wrapped objects can be accessed by using the same API\n * under the Owner type.\n */\n dynamicFields: DynamicFieldConnection;\n /**\n * Access a dynamic object field on an object using its name. Names are\n * arbitrary Move values whose type have `copy`, `drop`, and `store`,\n * and are specified using their type, and their BCS contents, Base64\n * encoded. The value of a dynamic object field can also be accessed\n * off-chain directly via its address (e.g. using `Query.object`).\n *\n * Dynamic fields on wrapped objects can be accessed by using the same API\n * under the Owner type.\n */\n dynamicObjectField?: Maybe<DynamicField>;\n /**\n * The estimated reward for this stake object, calculated as:\n *\n * principal * (initial_stake_rate / current_stake_rate - 1.0)\n *\n * Or 0, if this value is negative, where:\n *\n * - `initial_stake_rate` is the stake rate at the epoch this stake was\n * activated at.\n * - `current_stake_rate` is the stake rate in the current epoch.\n *\n * This value is only available if the stake is active.\n */\n estimatedReward?: Maybe<Scalars['BigInt']['output']>;\n /** Objects owned by this object, optionally `filter`-ed. */\n objects: MoveObjectConnection;\n /** The owner type of this object: Immutable, Shared, Parent, Address */\n owner?: Maybe<ObjectOwner>;\n /** The object id of the validator staking pool this stake belongs to. */\n poolId?: Maybe<Scalars['IotaAddress']['output']>;\n /** The transaction block that created this version of the object. */\n previousTransactionBlock?: Maybe<TransactionBlock>;\n /** The IOTA that was initially staked. */\n principal?: Maybe<Scalars['BigInt']['output']>;\n /**\n * The transaction blocks that sent objects to this object.\n *\n * `scanLimit` restricts the number of candidate transactions scanned when\n * gathering a page of results. It is required for queries that apply\n * more than two complex filters (on function, kind, sender, recipient,\n * input object, changed object, or ids), and can be at most\n * `serviceConfig.maxScanLimit`.\n *\n * When the scan limit is reached the page will be returned even if it has\n * fewer than `first` results when paginating forward (`last` when\n * paginating backwards). If there are more transactions to scan,\n * `pageInfo.hasNextPage` (or `pageInfo.hasPreviousPage`) will be set to\n * `true`, and `PageInfo.endCursor` (or `PageInfo.startCursor`) will be set\n * to the last transaction that was scanned as opposed to the last (or\n * first) transaction in the page.\n *\n * Requesting the next (or previous) page after this cursor will resume the\n * search, scanning the next `scanLimit` many transactions in the\n * direction of pagination, and so on until all transactions in the\n * scanning range have been visited.\n *\n * By default, the scanning range includes all transactions known to\n * GraphQL, but it can be restricted by the `after` and `before`\n * cursors, and the `beforeCheckpoint`, `afterCheckpoint` and\n * `atCheckpoint` filters.\n */\n receivedTransactionBlocks: TransactionBlockConnection;\n /** The epoch at which this object was requested to join a stake pool. */\n requestedEpoch?: Maybe<Epoch>;\n /** A stake can be pending, active, or unstaked */\n stakeStatus: StakeStatus;\n /** The `0x3::staking_pool::StakedIota` objects owned by this object. */\n stakedIotas: StakedIotaConnection;\n /**\n * The current status of the object as read from the off-chain store. The\n * possible states are: NOT_INDEXED, the object is loaded from\n * serialized data, such as the contents of a genesis or system package\n * upgrade transaction. LIVE, the version returned is the most recent for\n * the object, and it is not deleted or wrapped at that version.\n * HISTORICAL, the object was referenced at a specific version or\n * checkpoint, so is fetched from historical tables and may not be the\n * latest version of the object. WRAPPED_OR_DELETED, the object is deleted\n * or wrapped and only partial information can be loaded.\"\n */\n status: ObjectKind;\n /**\n * The amount of IOTA we would rebate if this object gets deleted or\n * mutated. This number is recalculated based on the present storage\n * gas price.\n */\n storageRebate?: Maybe<Scalars['BigInt']['output']>;\n version: Scalars['UInt53']['output'];\n};\n\n\n/** Represents a `0x3::staking_pool::StakedIota` Move object on-chain. */\nexport type StakedIotaBalanceArgs = {\n type?: InputMaybe<Scalars['String']['input']>;\n};\n\n\n/** Represents a `0x3::staking_pool::StakedIota` Move object on-chain. */\nexport type StakedIotaBalancesArgs = {\n after?: InputMaybe<Scalars['String']['input']>;\n before?: InputMaybe<Scalars['String']['input']>;\n first?: InputMaybe<Scalars['Int']['input']>;\n last?: InputMaybe<Scalars['Int']['input']>;\n};\n\n\n/** Represents a `0x3::staking_pool::StakedIota` Move object on-chain. */\nexport type StakedIotaCoinsArgs = {\n after?: InputMaybe<Scalars['String']['input']>;\n before?: InputMaybe<Scalars['String']['input']>;\n first?: InputMaybe<Scalars['Int']['input']>;\n last?: InputMaybe<Scalars['Int']['input']>;\n type?: InputMaybe<Scalars['String']['input']>;\n};\n\n\n/** Represents a `0x3::staking_pool::StakedIota` Move object on-chain. */\nexport type StakedIotaDynamicFieldArgs = {\n name: DynamicFieldName;\n};\n\n\n/** Represents a `0x3::staking_pool::StakedIota` Move object on-chain. */\nexport type StakedIotaDynamicFieldsArgs = {\n after?: InputMaybe<Scalars['String']['input']>;\n before?: InputMaybe<Scalars['String']['input']>;\n first?: InputMaybe<Scalars['Int']['input']>;\n last?: InputMaybe<Scalars['Int']['input']>;\n};\n\n\n/** Represents a `0x3::staking_pool::StakedIota` Move object on-chain. */\nexport type StakedIotaDynamicObjectFieldArgs = {\n name: DynamicFieldName;\n};\n\n\n/** Represents a `0x3::staking_pool::StakedIota` Move object on-chain. */\nexport type StakedIotaObjectsArgs = {\n after?: InputMaybe<Scalars['String']['input']>;\n before?: InputMaybe<Scalars['String']['input']>;\n filter?: InputMaybe<ObjectFilter>;\n first?: InputMaybe<Scalars['Int']['input']>;\n last?: InputMaybe<Scalars['Int']['input']>;\n};\n\n\n/** Represents a `0x3::staking_pool::StakedIota` Move object on-chain. */\nexport type StakedIotaReceivedTransactionBlocksArgs = {\n after?: InputMaybe<Scalars['String']['input']>;\n before?: InputMaybe<Scalars['String']['input']>;\n filter?: InputMaybe<TransactionBlockFilter>;\n first?: InputMaybe<Scalars['Int']['input']>;\n last?: InputMaybe<Scalars['Int']['input']>;\n scanLimit?: InputMaybe<Scalars['Int']['input']>;\n};\n\n\n/** Represents a `0x3::staking_pool::StakedIota` Move object on-chain. */\nexport type StakedIotaStakedIotasArgs = {\n after?: InputMaybe<Scalars['String']['input']>;\n before?: InputMaybe<Scalars['String']['input']>;\n first?: InputMaybe<Scalars['Int']['input']>;\n last?: InputMaybe<Scalars['Int']['input']>;\n};\n\nexport type StakedIotaConnection = {\n __typename?: 'StakedIotaConnection';\n /** A list of edges. */\n edges: Array<StakedIotaEdge>;\n /** A list of nodes. */\n nodes: Array<StakedIota>;\n /** Information to aid in pagination. */\n pageInfo: PageInfo;\n};\n\n/** An edge in a connection. */\nexport type StakedIotaEdge = {\n __typename?: 'StakedIotaEdge';\n /** A cursor for use in pagination */\n cursor: Scalars['String']['output'];\n /** The item at the end of the edge */\n node: StakedIota;\n};\n\n/** IOTA set aside to account for objects stored on-chain. */\nexport type StorageFund = {\n __typename?: 'StorageFund';\n /**\n * The portion of the storage fund that will never be refunded through\n * storage rebates.\n *\n * The system maintains an invariant that the sum of all storage fees into\n * the storage fund is equal to the sum of of all storage rebates out,\n * the total storage rebates remaining, and the non-refundable balance.\n */\n nonRefundableBalance?: Maybe<Scalars['BigInt']['output']>;\n /** Sum of storage rebates of live objects on chain. */\n totalObjectStorageRebates?: Maybe<Scalars['BigInt']['output']>;\n};\n\n/** Details of the system that are decided during genesis. */\nexport type SystemParameters = {\n __typename?: 'SystemParameters';\n /** Target duration of an epoch, in milliseconds. */\n durationMs?: Maybe<Scalars['BigInt']['output']>;\n /** The maximum number of active validators that the system supports. */\n maxValidatorCount?: Maybe<Scalars['Int']['output']>;\n /** The minimum number of active validators that the system supports. */\n minValidatorCount?: Maybe<Scalars['Int']['output']>;\n /** Minimum stake needed to become a new validator. */\n minValidatorJoiningStake?: Maybe<Scalars['BigInt']['output']>;\n /**\n * The number of epochs that a validator has to recover from having less\n * than `validatorLowStakeThreshold` stake.\n */\n validatorLowStakeGracePeriod?: Maybe<Scalars['BigInt']['output']>;\n /**\n * Validators with stake below this threshold will enter the grace period\n * (see `validatorLowStakeGracePeriod`), after which they are removed\n * from the active validator set.\n */\n validatorLowStakeThreshold?: Maybe<Scalars['BigInt']['output']>;\n /**\n * Validators with stake below this threshold will be removed from the\n * active validator set at the next epoch boundary, without a grace\n * period.\n */\n validatorVeryLowStakeThreshold?: Maybe<Scalars['BigInt']['output']>;\n};\n\n/** An argument to a programmable transaction command. */\nexport type TransactionArgument = GasCoin | Input | Result;\n\nexport type TransactionBlock = {\n __typename?: 'TransactionBlock';\n /**\n * Serialized form of this transaction's `SenderSignedData`, BCS serialized\n * and Base64 encoded.\n */\n bcs?: Maybe<Scalars['Base64']['output']>;\n /**\n * A 32-byte hash that uniquely identifies the transaction block contents,\n * encoded in Base58. This serves as a unique id for the block on\n * chain.\n */\n digest?: Maybe<Scalars['String']['output']>;\n /**\n * The effects field captures the results to the chain of executing this\n * transaction.\n */\n effects?: Maybe<TransactionBlockEffects>;\n /**\n * This field is set by senders of a transaction block. It is an epoch\n * reference that sets a deadline after which validators will no longer\n * consider the transaction valid. By default, there is no deadline for\n * when a transaction must execute.\n */\n expiration?: Maybe<Epoch>;\n /**\n * The gas input field provides information on what objects were used as\n * gas as well as the owner of the gas object(s) and information on the\n * gas price and budget.\n *\n * If the owner of the gas object(s) is not the same as the sender, the\n * transaction block is a sponsored transaction block.\n */\n gasInput?: Maybe<GasInput>;\n /**\n * The type of this transaction as well as the commands and/or parameters\n * comprising the transaction of this kind.\n */\n kind?: Maybe<TransactionBlockKind>;\n /**\n * The address corresponding to the public key that signed this\n * transaction. System transactions do not have senders.\n */\n sender?: Maybe<Address>;\n /**\n * A list of all signatures, Base64-encoded, from senders, and potentially\n * the gas owner if this is a sponsored transaction.\n */\n signatures?: Maybe<Array<Scalars['Base64']['output']>>;\n};\n\nexport type TransactionBlockConnection = {\n __typename?: 'TransactionBlockConnection';\n /** A list of edges. */\n edges: Array<TransactionBlockEdge>;\n /** A list of nodes. */\n nodes: Array<TransactionBlock>;\n /** Information to aid in pagination. */\n pageInfo: PageInfo;\n};\n\n/** An edge in a connection. */\nexport type TransactionBlockEdge = {\n __typename?: 'TransactionBlockEdge';\n /** A cursor for use in pagination */\n cursor: Scalars['String']['output'];\n /** The item at the end of the edge */\n node: TransactionBlock;\n};\n\n/** The effects representing the result of executing a transaction block. */\nexport type TransactionBlockEffects = {\n __typename?: 'TransactionBlockEffects';\n /**\n * The effect this transaction had on the balances (sum of coin values per\n * coin type) of addresses and objects.\n */\n balanceChanges: BalanceChangeConnection;\n /** Base64 encoded bcs serialization of the on-chain transaction effects. */\n bcs: Scalars['Base64']['output'];\n /** The checkpoint this transaction was finalized in. */\n checkpoint?: Maybe<Checkpoint>;\n /** Transactions whose outputs this transaction depends upon. */\n dependencies: DependencyConnection;\n /** The epoch this transaction was finalized in. */\n epoch?: Maybe<Epoch>;\n /**\n * The reason for a transaction failure, if it did fail.\n * If the error is a Move abort, the error message will be resolved to a\n * human-readable form if possible, otherwise it will fall back to\n * displaying the abort code and location.\n */\n errors?: Maybe<Scalars['String']['output']>;\n /** Events emitted by this transaction block. */\n events: EventConnection;\n /** Effects to the gas object. */\n gasEffects?: Maybe<GasEffects>;\n /**\n * The latest version of all objects (apart from packages) that have been\n * created or modified by this transaction, immediately following this\n * transaction.\n */\n lamportVersion: Scalars['UInt53']['output'];\n /** The effect this transaction had on objects on-chain. */\n objectChanges: ObjectChangeConnection;\n /** Whether the transaction executed successfully or not. */\n status?: Maybe<ExecutionStatus>;\n /**\n * Timestamp corresponding to the checkpoint this transaction was finalized\n * in.\n */\n timestamp?: Maybe<Scalars['DateTime']['output']>;\n /** The transaction that ran to produce these effects. */\n transactionBlock?: Maybe<TransactionBlock>;\n /**\n * Shared objects that are referenced by but not changed by this\n * transaction.\n */\n unchangedSharedObjects: UnchangedSharedObjectConnection;\n};\n\n\n/** The effects representing the result of executing a transaction block. */\nexport type TransactionBlockEffectsBalanceChangesArgs = {\n after?: InputMaybe<Scalars['String']['input']>;\n before?: InputMaybe<Scalars['String']['input']>;\n first?: InputMaybe<Scalars['Int']['input']>;\n last?: InputMaybe<Scalars['Int']['input']>;\n};\n\n\n/** The effects representing the result of executing a transaction block. */\nexport type TransactionBlockEffectsDependenciesArgs = {\n after?: InputMaybe<Scalars['String']['input']>;\n before?: InputMaybe<Scalars['String']['input']>;\n first?: InputMaybe<Scalars['Int']['input']>;\n last?: InputMaybe<Scalars['Int']['input']>;\n};\n\n\n/** The effects representing the result of executing a transaction block. */\nexport type TransactionBlockEffectsEventsArgs = {\n after?: InputMaybe<Scalars['String']['input']>;\n before?: InputMaybe<Scalars['String']['input']>;\n first?: InputMaybe<Scalars['Int']['input']>;\n last?: InputMaybe<Scalars['Int']['input']>;\n};\n\n\n/** The effects representing the result of executing a transaction block. */\nexport type TransactionBlockEffectsObjectChangesArgs = {\n after?: InputMaybe<Scalars['String']['input']>;\n before?: InputMaybe<Scalars['String']['input']>;\n first?: InputMaybe<Scalars['Int']['input']>;\n last?: InputMaybe<Scalars['Int']['input']>;\n};\n\n\n/** The effects representing the result of executing a transaction block. */\nexport type TransactionBlockEffectsUnchangedSharedObjectsArgs = {\n after?: InputMaybe<Scalars['String']['input']>;\n before?: InputMaybe<Scalars['String']['input']>;\n first?: InputMaybe<Scalars['Int']['input']>;\n last?: InputMaybe<Scalars['Int']['input']>;\n};\n\nexport type TransactionBlockFilter = {\n afterCheckpoint?: InputMaybe<Scalars['UInt53']['input']>;\n atCheckpoint?: InputMaybe<Scalars['UInt53']['input']>;\n beforeCheckpoint?: InputMaybe<Scalars['UInt53']['input']>;\n changedObject?: InputMaybe<Scalars['IotaAddress']['input']>;\n function?: InputMaybe<Scalars['String']['input']>;\n inputObject?: InputMaybe<Scalars['IotaAddress']['input']>;\n /**\n * An input filter selecting for either system or programmable\n * transactions.\n */\n kind?: InputMaybe<TransactionBlockKindInput>;\n recvAddress?: InputMaybe<Scalars['IotaAddress']['input']>;\n signAddress?: InputMaybe<Scalars['IotaAddress']['input']>;\n transactionIds?: InputMaybe<Array<Scalars['String']['input']>>;\n};\n\n/**\n * The kind of transaction block, either a programmable transaction or a system\n * transaction.\n */\nexport type TransactionBlockKind = AuthenticatorStateUpdateTransaction | ConsensusCommitPrologueTransaction | EndOfEpochTransaction | GenesisTransaction | ProgrammableTransactionBlock | RandomnessStateUpdateTransaction;\n\n/** An input filter selecting for either system or programmable transactions. */\nexport enum TransactionBlockKindInput {\n /** A user submitted transaction block. */\n ProgrammableTx = 'PROGRAMMABLE_TX',\n /**\n * A system transaction can be one of several types of transactions.\n * See [unions/transaction-block-kind] for more details.\n */\n SystemTx = 'SYSTEM_TX'\n}\n\nexport type TransactionInput = OwnedOrImmutable | Pure | Receiving | SharedInput;\n\nexport type TransactionInputConnection = {\n __typename?: 'TransactionInputConnection';\n /** A list of edges. */\n edges: Array<TransactionInputEdge>;\n /** A list of nodes. */\n nodes: Array<TransactionInput>;\n /** Information to aid in pagination. */\n pageInfo: PageInfo;\n};\n\n/** An edge in a connection. */\nexport type TransactionInputEdge = {\n __typename?: 'TransactionInputEdge';\n /** A cursor for use in pagination */\n cursor: Scalars['String']['output'];\n /** The item at the end of the edge */\n node: TransactionInput;\n};\n\n/**\n * The optional extra data a user can provide to a transaction dry run.\n * `sender` defaults to `0x0`. If gasObjects` is not present, or is an empty\n * list, it is substituted with a mock Coin object, `gasPrice` defaults to the\n * reference gas price, `gasBudget` defaults to the max gas budget and\n * `gasSponsor` defaults to the sender.\n */\nexport type TransactionMetadata = {\n gasBudget?: InputMaybe<Scalars['UInt53']['input']>;\n gasObjects?: InputMaybe<Array<ObjectRef>>;\n gasPrice?: InputMaybe<Scalars['UInt53']['input']>;\n gasSponsor?: InputMaybe<Scalars['IotaAddress']['input']>;\n sender?: InputMaybe<Scalars['IotaAddress']['input']>;\n};\n\n/**\n * Transfers `inputs` to `address`. All inputs must have the `store` ability\n * (allows public transfer) and must not be previously immutable or shared.\n */\nexport type TransferObjectsTransaction = {\n __typename?: 'TransferObjectsTransaction';\n /** The address to transfer to. */\n address: TransactionArgument;\n /** The objects to transfer. */\n inputs: Array<TransactionArgument>;\n};\n\n/** Information about which previous versions of a package introduced its types. */\nexport type TypeOrigin = {\n __typename?: 'TypeOrigin';\n /** The storage ID of the package that first defined this type. */\n definingId: Scalars['IotaAddress']['output'];\n /** Module defining the type. */\n module: Scalars['String']['output'];\n /** Name of the struct. */\n struct: Scalars['String']['output'];\n};\n\n/**\n * Details pertaining to shared objects that are referenced by but not changed\n * by a transaction. This information is considered part of the effects,\n * because although the transaction specifies the shared object as input,\n * consensus must schedule it and pick the version that is actually used.\n */\nexport type UnchangedSharedObject = SharedObjectCancelled | SharedObjectDelete | SharedObjectRead;\n\nexport type UnchangedSharedObjectConnection = {\n __typename?: 'UnchangedSharedObjectConnection';\n /** A list of edges. */\n edges: Array<UnchangedSharedObjectEdge>;\n /** A list of nodes. */\n nodes: Array<UnchangedSharedObject>;\n /** Information to aid in pagination. */\n pageInfo: PageInfo;\n};\n\n/** An edge in a connection. */\nexport type UnchangedSharedObjectEdge = {\n __typename?: 'UnchangedSharedObjectEdge';\n /** A cursor for use in pagination */\n cursor: Scalars['String']['output'];\n /** The item at the end of the edge */\n node: UnchangedSharedObject;\n};\n\n/** Upgrades a Move Package. */\nexport type UpgradeTransaction = {\n __typename?: 'UpgradeTransaction';\n /** ID of the package being upgraded. */\n currentPackage: Scalars['IotaAddress']['output'];\n /** IDs of the transitive dependencies of the package to be published. */\n dependencies: Array<Scalars['IotaAddress']['output']>;\n /**\n * Bytecode for the modules to be published, BCS serialized and Base64\n * encoded.\n */\n modules: Array<Scalars['Base64']['output']>;\n /** The `UpgradeTicket` authorizing the upgrade. */\n upgradeTicket: TransactionArgument;\n};\n\nexport type Validator = {\n __typename?: 'Validator';\n /** The validator's address. */\n address: Address;\n /**\n * The APY of this validator in basis points. To get the APY in\n * percentage, divide by 100.\n */\n apy?: Maybe<Scalars['Int']['output']>;\n /**\n * The number of epochs for which this validator has been below the\n * low stake threshold.\n */\n atRisk?: Maybe<Scalars['UInt53']['output']>;\n /** The fee charged by the validator for staking services. */\n commissionRate?: Maybe<Scalars['Int']['output']>;\n /**\n * Validator's set of credentials such as public keys, network addresses\n * and others.\n */\n credentials?: Maybe<ValidatorCredentials>;\n /** Validator's description. */\n description?: Maybe<Scalars['String']['output']>;\n /**\n * The validator's current exchange object. The exchange rate is used to\n * determine the amount of IOTA tokens that each past IOTA staker can\n * withdraw in the future.\n * @deprecated The exchange object is a wrapped object. Access its dynamic fields through the `exchangeRatesTable` query.\n */\n exchangeRates?: Maybe<MoveObject>;\n /** Number of exchange rates in the table. */\n exchangeRatesSize?: Maybe<Scalars['UInt53']['output']>;\n /**\n * A wrapped object containing the validator's exchange rates. This is a\n * table from epoch number to `PoolTokenExchangeRate` value. The\n * exchange rate is used to determine the amount of IOTA tokens that\n * each past IOTA staker can withdraw in the future.\n */\n exchangeRatesTable?: Maybe<Owner>;\n /** The reference gas price for this epoch. */\n gasPrice?: Maybe<Scalars['BigInt']['output']>;\n /** Validator's url containing their custom image. */\n imageUrl?: Maybe<Scalars['String']['output']>;\n /** Validator's name. */\n name?: Maybe<Scalars['String']['output']>;\n /** The proposed next epoch fee for the validator's staking services. */\n nextEpochCommissionRate?: Maybe<Scalars['Int']['output']>;\n /** Validator's set of credentials for the next epoch. */\n nextEpochCredentials?: Maybe<ValidatorCredentials>;\n /** The validator's gas price quote for the next epoch. */\n nextEpochGasPrice?: Maybe<Scalars['BigInt']['output']>;\n /**\n * The total number of IOTA tokens in this pool plus\n * the pending stake amount for this epoch.\n */\n nextEpochStake?: Maybe<Scalars['BigInt']['output']>;\n /**\n * The validator's current valid `Cap` object. Validators can delegate\n * the operation ability to another address. The address holding this `Cap`\n * object can then update the reference gas price and tallying rule on\n * behalf of the validator.\n */\n operationCap?: Maybe<MoveObject>;\n /**\n * Pending pool token withdrawn during the current epoch, emptied at epoch\n * boundaries.\n */\n pendingPoolTokenWithdraw?: Maybe<Scalars['BigInt']['output']>;\n /** Pending stake amount for this epoch. */\n pendingStake?: Maybe<Scalars['BigInt']['output']>;\n /**\n * Pending stake withdrawn during the current epoch, emptied at epoch\n * boundaries.\n */\n pendingTotalIotaWithdraw?: Maybe<Scalars['BigInt']['output']>;\n /** Total number of pool tokens issued by the pool. */\n poolTokenBalance?: Maybe<Scalars['BigInt']['output']>;\n /** Validator's homepage URL. */\n projectUrl?: Maybe<Scalars['String']['output']>;\n /** The addresses of other validators this validator has reported. */\n reportRecords: AddressConnection;\n /** The epoch stake rewards will be added here at the end of each epoch. */\n rewardsPool?: Maybe<Scalars['BigInt']['output']>;\n /**\n * The validator's current staking pool object, used to track the amount of\n * stake and to compound staking rewards.\n * @deprecated The staking pool is a wrapped object. Access its fields directly on the `Validator` type.\n */\n stakingPool?: Maybe<MoveObject>;\n /** The epoch at which this pool became active. */\n stakingPoolActivationEpoch?: Maybe<Scalars['UInt53']['output']>;\n /** The ID of this validator's `0x3::staking_pool::StakingPoolV1`. */\n stakingPoolId: Scalars['IotaAddress']['output'];\n /** The total number of IOTA tokens in this pool. */\n stakingPoolIotaBalance?: Maybe<Scalars['BigInt']['output']>;\n /**\n * The voting power of this validator in basis points (e.g., 100 = 1%\n * voting power).\n */\n votingPower?: Maybe<Scalars['Int']['output']>;\n};\n\n\nexport type ValidatorReportRecordsArgs = {\n after?: InputMaybe<Scalars['String']['input']>;\n before?: InputMaybe<Scalars['String']['input']>;\n first?: InputMaybe<Scalars['Int']['input']>;\n last?: InputMaybe<Scalars['Int']['input']>;\n};\n\nexport type ValidatorConnection = {\n __typename?: 'ValidatorConnection';\n /** A list of edges. */\n edges: Array<ValidatorEdge>;\n /** A list of nodes. */\n nodes: Array<Validator>;\n /** Information to aid in pagination. */\n pageInfo: PageInfo;\n};\n\n/** The credentials related fields associated with a validator. */\nexport type ValidatorCredentials = {\n __typename?: 'ValidatorCredentials';\n authorityPubKey?: Maybe<Scalars['Base64']['output']>;\n netAddress?: Maybe<Scalars['String']['output']>;\n networkPubKey?: Maybe<Scalars['Base64']['output']>;\n p2PAddress?: Maybe<Scalars['String']['output']>;\n primaryAddress?: Maybe<Scalars['String']['output']>;\n proofOfPossession?: Maybe<Scalars['Base64']['output']>;\n protocolPubKey?: Maybe<Scalars['Base64']['output']>;\n};\n\n/** An edge in a connection. */\nexport type ValidatorEdge = {\n __typename?: 'ValidatorEdge';\n /** A cursor for use in pagination */\n cursor: Scalars['String']['output'];\n /** The item at the end of the edge */\n node: Validator;\n};\n\n/** Representation of `0x3::validator_set::ValidatorSet`. */\nexport type ValidatorSet = {\n __typename?: 'ValidatorSet';\n /** The current set of active validators. */\n activeValidators: ValidatorConnection;\n /** Object ID of the `Table` storing the inactive staking pools. */\n inactivePoolsId?: Maybe<Scalars['IotaAddress']['output']>;\n /** Size of the inactive pools `Table`. */\n inactivePoolsSize?: Maybe<Scalars['Int']['output']>;\n /**\n * Object ID of the wrapped object `TableVec` storing the pending active\n * validators.\n */\n pendingActiveValidatorsId?: Maybe<Scalars['IotaAddress']['output']>;\n /** Size of the pending active validators table. */\n pendingActiveValidatorsSize?: Maybe<Scalars['Int']['output']>;\n /**\n * Validators that are pending removal from the active validator set,\n * expressed as indices in to `activeValidators`.\n */\n pendingRemovals?: Maybe<Array<Scalars['Int']['output']>>;\n /**\n * Object ID of the `Table` storing the mapping from staking pool ids to\n * the addresses of the corresponding validators. This is needed\n * because a validator's address can potentially change but the object\n * ID of its pool will not.\n */\n stakingPoolMappingsId?: Maybe<Scalars['IotaAddress']['output']>;\n /** Size of the stake pool mappings `Table`. */\n stakingPoolMappingsSize?: Maybe<Scalars['Int']['output']>;\n /**\n * Total amount of stake for all active validators at the beginning of the\n * epoch.\n */\n totalStake?: Maybe<Scalars['BigInt']['output']>;\n /** Object ID of the `Table` storing the validator candidates. */\n validatorCandidatesId?: Maybe<Scalars['IotaAddress']['output']>;\n /** Size of the validator candidates `Table`. */\n validatorCandidatesSize?: Maybe<Scalars['Int']['output']>;\n};\n\n\n/** Representation of `0x3::validator_set::ValidatorSet`. */\nexport type ValidatorSetActiveValidatorsArgs = {\n after?: InputMaybe<Scalars['String']['input']>;\n before?: InputMaybe<Scalars['String']['input']>;\n first?: InputMaybe<Scalars['Int']['input']>;\n last?: InputMaybe<Scalars['Int']['input']>;\n};\n\n/**\n * An enum that specifies the intent scope to be used to parse the bytes for\n * signature verification.\n */\nexport enum ZkLoginIntentScope {\n /** Indicates that the bytes are to be parsed as a personal message. */\n PersonalMessage = 'PERSONAL_MESSAGE',\n /** Indicates that the bytes are to be parsed as transaction data bytes. */\n TransactionData = 'TRANSACTION_DATA'\n}\n\n/** The result of the zkLogin signature verification. */\nexport type ZkLoginVerifyResult = {\n __typename?: 'ZkLoginVerifyResult';\n /** The errors field captures any verification error */\n errors: Array<Scalars['String']['output']>;\n /** The boolean result of the verification. If true, errors should be empty. */\n success: Scalars['Boolean']['output'];\n};\n\nexport type GetCheckpointQueryVariables = Exact<{\n id?: InputMaybe<CheckpointId>;\n}>;\n\n\nexport type GetCheckpointQuery = { __typename?: 'Query', checkpoint?: { __typename?: 'Checkpoint', digest: string, networkTotalTransactions?: any | null, previousCheckpointDigest?: string | null, sequenceNumber: any, timestamp: any, validatorSignatures: any, epoch?: { __typename?: 'Epoch', epochId: any } | null, rollingGasSummary?: { __typename?: 'GasCostSummary', computationCost?: any | null, computationCostBurned?: any | null, storageCost?: any | null, storageRebate?: any | null, nonRefundableStorageFee?: any | null } | null, transactionBlocks: { __typename?: 'TransactionBlockConnection', pageInfo: { __typename?: 'PageInfo', hasNextPage: boolean, endCursor?: string | null }, nodes: Array<{ __typename?: 'TransactionBlock', digest?: string | null }> }, endOfEpoch: { __typename?: 'TransactionBlockConnection', nodes: Array<{ __typename?: 'TransactionBlock', kind?: { __typename: 'AuthenticatorStateUpdateTransaction' } | { __typename: 'ConsensusCommitPrologueTransaction' } | { __typename: 'EndOfEpochTransaction', transactions: { __typename?: 'EndOfEpochTransactionKindConnection', nodes: Array<{ __typename: 'AuthenticatorStateCreateTransaction' } | { __typename: 'AuthenticatorStateExpireTransaction' } | { __typename: 'BridgeCommitteeInitTransaction' } | { __typename: 'BridgeStateCreateTransaction' } | { __typename: 'ChangeEpochTransaction', epoch?: { __typename?: 'Epoch', epochId: any, validatorSet?: { __typename?: 'ValidatorSet', activeValidators: { __typename?: 'ValidatorConnection', pageInfo: { __typename?: 'PageInfo', hasNextPage: boolean, endCursor?: string | null }, nodes: Array<{ __typename?: 'Validator', votingPower?: number | null, credentials?: { __typename?: 'ValidatorCredentials', protocolPubKey?: any | null } | null }> } } | null, protocolConfigs: { __typename?: 'ProtocolConfigs', protocolVersion: any } } | null }> } } | { __typename: 'GenesisTransaction' } | { __typename: 'ProgrammableTransactionBlock' } | { __typename: 'RandomnessStateUpdateTransaction' } | null }> } } | null };\n\nexport type GetCheckpointsQueryVariables = Exact<{\n first?: InputMaybe<Scalars['Int']['input']>;\n before?: InputMaybe<Scalars['String']['input']>;\n last?: InputMaybe<Scalars['Int']['input']>;\n after?: InputMaybe<Scalars['String']['input']>;\n}>;\n\n\nexport type GetCheckpointsQuery = { __typename?: 'Query', checkpoints: { __typename?: 'CheckpointConnection', pageInfo: { __typename?: 'PageInfo', startCursor?: string | null, endCursor?: string | null, hasNextPage: boolean, hasPreviousPage: boolean }, nodes: Array<{ __typename?: 'Checkpoint', digest: string, networkTotalTransactions?: any | null, previousCheckpointDigest?: string | null, sequenceNumber: any, timestamp: any, validatorSignatures: any, epoch?: { __typename?: 'Epoch', epochId: any } | null, rollingGasSummary?: { __typename?: 'GasCostSummary', computationCost?: any | null, computationCostBurned?: any | null, storageCost?: any | null, storageRebate?: any | null, nonRefundableStorageFee?: any | null } | null, transactionBlocks: { __typename?: 'TransactionBlockConnection', pageInfo: { __typename?: 'PageInfo', hasNextPage: boolean, endCursor?: string | null }, nodes: Array<{ __typename?: 'TransactionBlock', digest?: string | null }> }, endOfEpoch: { __typename?: 'TransactionBlockConnection', nodes: Array<{ __typename?: 'TransactionBlock', kind?: { __typename: 'AuthenticatorStateUpdateTransaction' } | { __typename: 'ConsensusCommitPrologueTransaction' } | { __typename: 'EndOfEpochTransaction', transactions: { __typename?: 'EndOfEpochTransactionKindConnection', nodes: Array<{ __typename: 'AuthenticatorStateCreateTransaction' } | { __typename: 'AuthenticatorStateExpireTransaction' } | { __typename: 'BridgeCommitteeInitTransaction' } | { __typename: 'BridgeStateCreateTransaction' } | { __typename: 'ChangeEpochTransaction', epoch?: { __typename?: 'Epoch', epochId: any, validatorSet?: { __typename?: 'ValidatorSet', activeValidators: { __typename?: 'ValidatorConnection', pageInfo: { __typename?: 'PageInfo', hasNextPage: boolean, endCursor?: string | null }, nodes: Array<{ __typename?: 'Validator', votingPower?: number | null, credentials?: { __typename?: 'ValidatorCredentials', protocolPubKey?: any | null } | null }> } } | null, protocolConfigs: { __typename?: 'ProtocolConfigs', protocolVersion: any } } | null }> } } | { __typename: 'GenesisTransaction' } | { __typename: 'ProgrammableTransactionBlock' } | { __typename: 'RandomnessStateUpdateTransaction' } | null }> } }> } };\n\nexport type PaginateCheckpointTransactionBlocksQueryVariables = Exact<{\n id?: InputMaybe<CheckpointId>;\n after?: InputMaybe<Scalars['String']['input']>;\n}>;\n\n\nexport type PaginateCheckpointTransactionBlocksQuery = { __typename?: 'Query', checkpoint?: { __typename?: 'Checkpoint', transactionBlocks: { __typename?: 'TransactionBlockConnection', pageInfo: { __typename?: 'PageInfo', hasNextPage: boolean, endCursor?: string | null }, nodes: Array<{ __typename?: 'TransactionBlock', digest?: string | null }> } } | null };\n\nexport type Rpc_Checkpoint_FieldsFragment = { __typename?: 'Checkpoint', digest: string, networkTotalTransactions?: any | null, previousCheckpointDigest?: string | null, sequenceNumber: any, timestamp: any, validatorSignatures: any, epoch?: { __typename?: 'Epoch', epochId: any } | null, rollingGasSummary?: { __typename?: 'GasCostSummary', computationCost?: any | null, computationCostBurned?: any | null, storageCost?: any | null, storageRebate?: any | null, nonRefundableStorageFee?: any | null } | null, transactionBlocks: { __typename?: 'TransactionBlockConnection', pageInfo: { __typename?: 'PageInfo', hasNextPage: boolean, endCursor?: string | null }, nodes: Array<{ __typename?: 'TransactionBlock', digest?: string | null }> }, endOfEpoch: { __typename?: 'TransactionBlockConnection', nodes: Array<{ __typename?: 'TransactionBlock', kind?: { __typename: 'AuthenticatorStateUpdateTransaction' } | { __typename: 'ConsensusCommitPrologueTransaction' } | { __typename: 'EndOfEpochTransaction', transactions: { __typename?: 'EndOfEpochTransactionKindConnection', nodes: Array<{ __typename: 'AuthenticatorStateCreateTransaction' } | { __typename: 'AuthenticatorStateExpireTransaction' } | { __typename: 'BridgeCommitteeInitTransaction' } | { __typename: 'BridgeStateCreateTransaction' } | { __typename: 'ChangeEpochTransaction', epoch?: { __typename?: 'Epoch', epochId: any, validatorSet?: { __typename?: 'ValidatorSet', activeValidators: { __typename?: 'ValidatorConnection', pageInfo: { __typename?: 'PageInfo', hasNextPage: boolean, endCursor?: string | null }, nodes: Array<{ __typename?: 'Validator', votingPower?: number | null, credentials?: { __typename?: 'ValidatorCredentials', protocolPubKey?: any | null } | null }> } } | null, protocolConfigs: { __typename?: 'ProtocolConfigs', protocolVersion: any } } | null }> } } | { __typename: 'GenesisTransaction' } | { __typename: 'ProgrammableTransactionBlock' } | { __typename: 'RandomnessStateUpdateTransaction' } | null }> } };\n\nexport type DevInspectTransactionBlockQueryVariables = Exact<{\n txBytes: Scalars['String']['input'];\n txMeta: TransactionMetadata;\n showBalanceChanges?: InputMaybe<Scalars['Boolean']['input']>;\n showEffects?: InputMaybe<Scalars['Boolean']['input']>;\n showRawEffects?: InputMaybe<Scalars['Boolean']['input']>;\n showEvents?: InputMaybe<Scalars['Boolean']['input']>;\n showInput?: InputMaybe<Scalars['Boolean']['input']>;\n showObjectChanges?: InputMaybe<Scalars['Boolean']['input']>;\n showRawInput?: InputMaybe<Scalars['Boolean']['input']>;\n}>;\n\n\nexport type DevInspectTransactionBlockQuery = { __typename?: 'Query', dryRunTransactionBlock: { __typename?: 'DryRunResult', error?: string | null, results?: Array<{ __typename?: 'DryRunEffect', mutatedReferences?: Array<{ __typename?: 'DryRunMutation', bcs: any, input: { __typename: 'GasCoin' } | { __typename: 'Input', inputIndex: number } | { __typename: 'Result', cmd: number, resultIndex?: number | null }, type: { __typename?: 'MoveType', repr: string } }> | null, returnValues?: Array<{ __typename?: 'DryRunReturn', bcs: any, type: { __typename?: 'MoveType', repr: string } }> | null }> | null, transaction?: { __typename?: 'TransactionBlock', digest?: string | null, signatures?: Array<any> | null, rawTransaction?: any | null, sender?: { __typename?: 'Address', address: any } | null, effects?: { __typename?: 'TransactionBlockEffects', bcs?: any, timestamp?: any | null, events?: { __typename?: 'EventConnection', pageInfo: { __typename?: 'PageInfo', hasNextPage: boolean, endCursor?: string | null }, nodes: Array<{ __typename?: 'Event', json: any, bcs: any, timestamp?: any | null, sendingModule?: { __typename?: 'MoveModule', name: string, package: { __typename?: 'MovePackage', address: any } } | null, sender?: { __typename?: 'Address', address: any } | null, type: { __typename?: 'MoveType', repr: string } }> }, checkpoint?: { __typename?: 'Checkpoint', sequenceNumber: any } | null, balanceChanges?: { __typename?: 'BalanceChangeConnection', pageInfo: { __typename?: 'PageInfo', hasNextPage: boolean, endCursor?: string | null }, nodes: Array<{ __typename?: 'BalanceChange', amount?: any | null, coinType?: { __typename?: 'MoveType', repr: string } | null, owner?: { __typename?: 'Owner', asObject?: { __typename?: 'Object', address: any } | null, asAddress?: { __typename?: 'Address', address: any } | null } | null }> }, objectChanges?: { __typename?: 'ObjectChangeConnection', pageInfo: { __typename?: 'PageInfo', hasNextPage: boolean, endCursor?: string | null }, nodes: Array<{ __typename?: 'ObjectChange', address: any, inputState?: { __typename?: 'Object', version: any, asMoveObject?: { __typename?: 'MoveObject', contents?: { __typename?: 'MoveValue', type: { __typename?: 'MoveType', repr: string } } | null } | null } | null, outputState?: { __typename?: 'Object', asMoveObject?: { __typename?: 'MoveObject', contents?: { __typename?: 'MoveValue', type: { __typename?: 'MoveType', repr: string } } | null } | null, asMovePackage?: { __typename?: 'MovePackage', modules?: { __typename?: 'MoveModuleConnection', nodes: Array<{ __typename?: 'MoveModule', name: string }> } | null } | null } | null }> } } | null } | null } };\n\nexport type DryRunTransactionBlockQueryVariables = Exact<{\n txBytes: Scalars['String']['input'];\n showBalanceChanges?: InputMaybe<Scalars['Boolean']['input']>;\n showEffects?: InputMaybe<Scalars['Boolean']['input']>;\n showRawEffects?: InputMaybe<Scalars['Boolean']['input']>;\n showEvents?: InputMaybe<Scalars['Boolean']['input']>;\n showInput?: InputMaybe<Scalars['Boolean']['input']>;\n showObjectChanges?: InputMaybe<Scalars['Boolean']['input']>;\n showRawInput?: InputMaybe<Scalars['Boolean']['input']>;\n}>;\n\n\nexport type DryRunTransactionBlockQuery = { __typename?: 'Query', dryRunTransactionBlock: { __typename?: 'DryRunResult', error?: string | null, transaction?: { __typename?: 'TransactionBlock', digest?: string | null, signatures?: Array<any> | null, rawTransaction?: any | null, sender?: { __typename?: 'Address', address: any } | null, effects?: { __typename?: 'TransactionBlockEffects', bcs?: any, timestamp?: any | null, events?: { __typename?: 'EventConnection', pageInfo: { __typename?: 'PageInfo', hasNextPage: boolean, endCursor?: string | null }, nodes: Array<{ __typename?: 'Event', json: any, bcs: any, timestamp?: any | null, sendingModule?: { __typename?: 'MoveModule', name: string, package: { __typename?: 'MovePackage', address: any } } | null, sender?: { __typename?: 'Address', address: any } | null, type: { __typename?: 'MoveType', repr: string } }> }, checkpoint?: { __typename?: 'Checkpoint', sequenceNumber: any } | null, balanceChanges?: { __typename?: 'BalanceChangeConnection', pageInfo: { __typename?: 'PageInfo', hasNextPage: boolean, endCursor?: string | null }, nodes: Array<{ __typename?: 'BalanceChange', amount?: any | null, coinType?: { __typename?: 'MoveType', repr: string } | null, owner?: { __typename?: 'Owner', asObject?: { __typename?: 'Object', address: any } | null, asAddress?: { __typename?: 'Address', address: any } | null } | null }> }, objectChanges?: { __typename?: 'ObjectChangeConnection', pageInfo: { __typename?: 'PageInfo', hasNextPage: boolean, endCursor?: string | null }, nodes: Array<{ __typename?: 'ObjectChange', address: any, inputState?: { __typename?: 'Object', version: any, asMoveObject?: { __typename?: 'MoveObject', contents?: { __typename?: 'MoveValue', type: { __typename?: 'MoveType', repr: string } } | null } | null } | null, outputState?: { __typename?: 'Object', asMoveObject?: { __typename?: 'MoveObject', contents?: { __typename?: 'MoveValue', type: { __typename?: 'MoveType', repr: string } } | null } | null, asMovePackage?: { __typename?: 'MovePackage', modules?: { __typename?: 'MoveModuleConnection', nodes: Array<{ __typename?: 'MoveModule', name: string }> } | null } | null } | null }> } } | null } | null } };\n\nexport type ExecuteTransactionBlockMutationVariables = Exact<{\n txBytes: Scalars['String']['input'];\n signatures: Array<Scalars['String']['input']> | Scalars['String']['input'];\n showBalanceChanges?: InputMaybe<Scalars['Boolean']['input']>;\n showEffects?: InputMaybe<Scalars['Boolean']['input']>;\n showRawEffects?: InputMaybe<Scalars['Boolean']['input']>;\n showEvents?: InputMaybe<Scalars['Boolean']['input']>;\n showInput?: InputMaybe<Scalars['Boolean']['input']>;\n showObjectChanges?: InputMaybe<Scalars['Boolean']['input']>;\n showRawInput?: InputMaybe<Scalars['Boolean']['input']>;\n}>;\n\n\nexport type ExecuteTransactionBlockMutation = { __typename?: 'Mutation', executeTransactionBlock: { __typename?: 'ExecutionResult', errors?: Array<string> | null, effects: { __typename?: 'TransactionBlockEffects', transactionBlock?: { __typename?: 'TransactionBlock', digest?: string | null, signatures?: Array<any> | null, rawTransaction?: any | null, sender?: { __typename?: 'Address', address: any } | null, effects?: { __typename?: 'TransactionBlockEffects', bcs?: any, timestamp?: any | null, events?: { __typename?: 'EventConnection', pageInfo: { __typename?: 'PageInfo', hasNextPage: boolean, endCursor?: string | null }, nodes: Array<{ __typename?: 'Event', json: any, bcs: any, timestamp?: any | null, sendingModule?: { __typename?: 'MoveModule', name: string, package: { __typename?: 'MovePackage', address: any } } | null, sender?: { __typename?: 'Address', address: any } | null, type: { __typename?: 'MoveType', repr: string } }> }, checkpoint?: { __typename?: 'Checkpoint', sequenceNumber: any } | null, balanceChanges?: { __typename?: 'BalanceChangeConnection', pageInfo: { __typename?: 'PageInfo', hasNextPage: boolean, endCursor?: string | null }, nodes: Array<{ __typename?: 'BalanceChange', amount?: any | null, coinType?: { __typename?: 'MoveType', repr: string } | null, owner?: { __typename?: 'Owner', asObject?: { __typename?: 'Object', address: any } | null, asAddress?: { __typename?: 'Address', address: any } | null } | null }> }, objectChanges?: { __typename?: 'ObjectChangeConnection', pageInfo: { __typename?: 'PageInfo', hasNextPage: boolean, endCursor?: string | null }, nodes: Array<{ __typename?: 'ObjectChange', address: any, inputState?: { __typename?: 'Object', version: any, asMoveObject?: { __typename?: 'MoveObject', contents?: { __typename?: 'MoveValue', type: { __typename?: 'MoveType', repr: string } } | null } | null } | null, outputState?: { __typename?: 'Object', asMoveObject?: { __typename?: 'MoveObject', contents?: { __typename?: 'MoveValue', type: { __typename?: 'MoveType', repr: string } } | null } | null, asMovePackage?: { __typename?: 'MovePackage', modules?: { __typename?: 'MoveModuleConnection', nodes: Array<{ __typename?: 'MoveModule', name: string }> } | null } | null } | null }> } } | null } | null } } };\n\nexport type GetAllBalancesQueryVariables = Exact<{\n owner: Scalars['IotaAddress']['input'];\n limit?: InputMaybe<Scalars['Int']['input']>;\n cursor?: InputMaybe<Scalars['String']['input']>;\n}>;\n\n\nexport type GetAllBalancesQuery = { __typename?: 'Query', address?: { __typename?: 'Address', balances: { __typename?: 'BalanceConnection', pageInfo: { __typename?: 'PageInfo', hasNextPage: boolean, endCursor?: string | null }, nodes: Array<{ __typename?: 'Balance', coinObjectCount?: any | null, totalBalance?: any | null, coinType: { __typename?: 'MoveType', repr: string } }> } } | null };\n\nexport type GetBalanceQueryVariables = Exact<{\n owner: Scalars['IotaAddress']['input'];\n type?: InputMaybe<Scalars['String']['input']>;\n}>;\n\n\nexport type GetBalanceQuery = { __typename?: 'Query', address?: { __typename?: 'Address', balance?: { __typename?: 'Balance', coinObjectCount?: any | null, totalBalance?: any | null, coinType: { __typename?: 'MoveType', repr: string } } | null } | null };\n\nexport type GetChainIdentifierQueryVariables = Exact<{ [key: string]: never; }>;\n\n\nexport type GetChainIdentifierQuery = { __typename?: 'Query', chainIdentifier: string };\n\nexport type GetCoinMetadataQueryVariables = Exact<{\n coinType: Scalars['String']['input'];\n}>;\n\n\nexport type GetCoinMetadataQuery = { __typename?: 'Query', coinMetadata?: { __typename?: 'CoinMetadata', decimals?: number | null, name?: string | null, symbol?: string | null, description?: string | null, iconUrl?: string | null, address: any } | null };\n\nexport type GetCoinsQueryVariables = Exact<{\n owner: Scalars['IotaAddress']['input'];\n first?: InputMaybe<Scalars['Int']['input']>;\n cursor?: InputMaybe<Scalars['String']['input']>;\n type?: InputMaybe<Scalars['String']['input']>;\n}>;\n\n\nexport type GetCoinsQuery = { __typename?: 'Query', address?: { __typename?: 'Address', address: any, coins: { __typename?: 'CoinConnection', pageInfo: { __typename?: 'PageInfo', hasNextPage: boolean, endCursor?: string | null }, nodes: Array<{ __typename?: 'Coin', coinBalance?: any | null, address: any, version: any, digest?: string | null, contents?: { __typename?: 'MoveValue', type: { __typename?: 'MoveType', repr: string } } | null, previousTransactionBlock?: { __typename?: 'TransactionBlock', digest?: string | null } | null }> } } | null };\n\nexport type GetCommitteeInfoQueryVariables = Exact<{\n epochId?: InputMaybe<Scalars['UInt53']['input']>;\n after?: InputMaybe<Scalars['String']['input']>;\n}>;\n\n\nexport type GetCommitteeInfoQuery = { __typename?: 'Query', epoch?: { __typename?: 'Epoch', epochId: any, validatorSet?: { __typename?: 'ValidatorSet', activeValidators: { __typename?: 'ValidatorConnection', pageInfo: { __typename?: 'PageInfo', hasNextPage: boolean, endCursor?: string | null }, nodes: Array<{ __typename?: 'Validator', votingPower?: number | null, credentials?: { __typename?: 'ValidatorCredentials', authorityPubKey?: any | null } | null }> } } | null } | null };\n\nexport type GetCurrentEpochQueryVariables = Exact<{ [key: string]: never; }>;\n\n\nexport type GetCurrentEpochQuery = { __typename?: 'Query', epoch?: { __typename?: 'Epoch', epochId: any, totalTransactions?: any | null, startTimestamp: any, endTimestamp?: any | null, referenceGasPrice?: any | null, validatorSet?: { __typename?: 'ValidatorSet', activeValidators: { __typename?: 'ValidatorConnection', pageInfo: { __typename?: 'PageInfo', hasNextPage: boolean, endCursor?: string | null }, nodes: Array<{ __typename?: 'Validator', atRisk?: any | null, commissionRate?: number | null, exchangeRatesSize?: any | null, description?: string | null, gasPrice?: any | null, imageUrl?: string | null, name?: string | null, nextEpochCommissionRate?: number | null, nextEpochGasPrice?: any | null, nextEpochStake?: any | null, pendingPoolTokenWithdraw?: any | null, pendingStake?: any | null, pendingTotalIotaWithdraw?: any | null, poolTokenBalance?: any | null, projectUrl?: string | null, rewardsPool?: any | null, stakingPoolActivationEpoch?: any | null, stakingPoolIotaBalance?: any | null, votingPower?: number | null, exchangeRates?: { __typename?: 'MoveObject', address: any, contents?: { __typename?: 'MoveValue', json: any } | null } | null, credentials?: { __typename?: 'ValidatorCredentials', netAddress?: string | null, networkPubKey?: any | null, p2PAddress?: string | null, primaryAddress?: string | null, authorityPubKey?: any | null, proofOfPossession?: any | null, protocolPubKey?: any | null } | null, nextEpochCredentials?: { __typename?: 'ValidatorCredentials', netAddress?: string | null, networkPubKey?: any | null, p2PAddress?: string | null, primaryAddress?: string | null, authorityPubKey?: any | null, proofOfPossession?: any | null, protocolPubKey?: any | null } | null, operationCap?: { __typename?: 'MoveObject', address: any } | null, stakingPool?: { __typename?: 'MoveObject', address: any } | null, address: { __typename?: 'Address', address: any } }> } } | null, firstCheckpoint: { __typename?: 'CheckpointConnection', nodes: Array<{ __typename?: 'Checkpoint', sequenceNumber: any }> } } | null };\n\nexport type PaginateEpochValidatorsQueryVariables = Exact<{\n id: Scalars['UInt53']['input'];\n after?: InputMaybe<Scalars['String']['input']>;\n}>;\n\n\nexport type PaginateEpochValidatorsQuery = { __typename?: 'Query', epoch?: { __typename?: 'Epoch', validatorSet?: { __typename?: 'ValidatorSet', activeValidators: { __typename?: 'ValidatorConnection', pageInfo: { __typename?: 'PageInfo', hasNextPage: boolean, endCursor?: string | null }, nodes: Array<{ __typename?: 'Validator', atRisk?: any | null, commissionRate?: number | null, exchangeRatesSize?: any | null, description?: string | null, gasPrice?: any | null, imageUrl?: string | null, name?: string | null, nextEpochCommissionRate?: number | null, nextEpochGasPrice?: any | null, nextEpochStake?: any | null, pendingPoolTokenWithdraw?: any | null, pendingStake?: any | null, pendingTotalIotaWithdraw?: any | null, poolTokenBalance?: any | null, projectUrl?: string | null, rewardsPool?: any | null, stakingPoolActivationEpoch?: any | null, stakingPoolIotaBalance?: any | null, votingPower?: number | null, exchangeRates?: { __typename?: 'MoveObject', address: any, contents?: { __typename?: 'MoveValue', json: any } | null } | null, credentials?: { __typename?: 'ValidatorCredentials', netAddress?: string | null, networkPubKey?: any | null, p2PAddress?: string | null, primaryAddress?: string | null, authorityPubKey?: any | null, proofOfPossession?: any | null, protocolPubKey?: any | null } | null, nextEpochCredentials?: { __typename?: 'ValidatorCredentials', netAddress?: string | null, networkPubKey?: any | null, p2PAddress?: string | null, primaryAddress?: string | null, authorityPubKey?: any | null, proofOfPossession?: any | null, protocolPubKey?: any | null } | null, operationCap?: { __typename?: 'MoveObject', address: any } | null, stakingPool?: { __typename?: 'MoveObject', address: any } | null, address: { __typename?: 'Address', address: any } }> } } | null } | null };\n\nexport type Rpc_Validator_FieldsFragment = { __typename?: 'Validator', atRisk?: any | null, commissionRate?: number | null, exchangeRatesSize?: any | null, description?: string | null, gasPrice?: any | null, imageUrl?: string | null, name?: string | null, nextEpochCommissionRate?: number | null, nextEpochGasPrice?: any | null, nextEpochStake?: any | null, pendingPoolTokenWithdraw?: any | null, pendingStake?: any | null, pendingTotalIotaWithdraw?: any | null, poolTokenBalance?: any | null, projectUrl?: string | null, rewardsPool?: any | null, stakingPoolActivationEpoch?: any | null, stakingPoolIotaBalance?: any | null, votingPower?: number | null, exchangeRates?: { __typename?: 'MoveObject', address: any, contents?: { __typename?: 'MoveValue', json: any } | null } | null, credentials?: { __typename?: 'ValidatorCredentials', netAddress?: string | null, networkPubKey?: any | null, p2PAddress?: string | null, primaryAddress?: string | null, authorityPubKey?: any | null, proofOfPossession?: any | null, protocolPubKey?: any | null } | null, nextEpochCredentials?: { __typename?: 'ValidatorCredentials', netAddress?: string | null, networkPubKey?: any | null, p2PAddress?: string | null, primaryAddress?: string | null, authorityPubKey?: any | null, proofOfPossession?: any | null, protocolPubKey?: any | null } | null, operationCap?: { __typename?: 'MoveObject', address: any } | null, stakingPool?: { __typename?: 'MoveObject', address: any } | null, address: { __typename?: 'Address', address: any } };\n\nexport type Rpc_Credential_FieldsFragment = { __typename?: 'ValidatorCredentials', netAddress?: string | null, networkPubKey?: any | null, p2PAddress?: string | null, primaryAddress?: string | null, authorityPubKey?: any | null, proofOfPossession?: any | null, protocolPubKey?: any | null };\n\nexport type GetTypeLayoutQueryVariables = Exact<{\n type: Scalars['String']['input'];\n}>;\n\n\nexport type GetTypeLayoutQuery = { __typename?: 'Query', type: { __typename?: 'MoveType', layout: any } };\n\nexport type GetDynamicFieldObjectQueryVariables = Exact<{\n parentId: Scalars['IotaAddress']['input'];\n name: DynamicFieldName;\n}>;\n\n\nexport type GetDynamicFieldObjectQuery = { __typename?: 'Query', owner?: { __typename?: 'Owner', dynamicObjectField?: { __typename?: 'DynamicField', value?: { __typename: 'MoveObject', owner?: { __typename: 'AddressOwner' } | { __typename: 'Immutable' } | { __typename: 'Parent', parent?: { __typename?: 'Object', address: any, digest?: string | null, version: any, storageRebate?: any | null, owner?: { __typename: 'AddressOwner' } | { __typename: 'Immutable' } | { __typename: 'Parent', parent?: { __typename?: 'Object', address: any } | null } | { __typename: 'Shared' } | null, previousTransactionBlock?: { __typename?: 'TransactionBlock', digest?: string | null } | null, asMoveObject?: { __typename?: 'MoveObject', contents?: { __typename?: 'MoveValue', data: any, type: { __typename?: 'MoveType', repr: string, layout: any } } | null } | null } | null } | { __typename: 'Shared' } | null } | { __typename: 'MoveValue' } | null } | null } | null };\n\nexport type GetDynamicFieldsQueryVariables = Exact<{\n parentId: Scalars['IotaAddress']['input'];\n first?: InputMaybe<Scalars['Int']['input']>;\n cursor?: InputMaybe<Scalars['String']['input']>;\n}>;\n\n\nexport type GetDynamicFieldsQuery = { __typename?: 'Query', owner?: { __typename?: 'Owner', dynamicFields: { __typename?: 'DynamicFieldConnection', pageInfo: { __typename?: 'PageInfo', hasNextPage: boolean, endCursor?: string | null }, nodes: Array<{ __typename?: 'DynamicField', name?: { __typename?: 'MoveValue', bcs: any, json: any, type: { __typename?: 'MoveType', layout: any, repr: string } } | null, value?: { __typename: 'MoveObject', address: any, digest?: string | null, version: any, contents?: { __typename?: 'MoveValue', json: any, type: { __typename?: 'MoveType', repr: string } } | null } | { __typename: 'MoveValue', json: any, type: { __typename?: 'MoveType', repr: string } } | null }> } } | null };\n\nexport type GetLatestCheckpointSequenceNumberQueryVariables = Exact<{ [key: string]: never; }>;\n\n\nexport type GetLatestCheckpointSequenceNumberQuery = { __typename?: 'Query', checkpoint?: { __typename?: 'Checkpoint', sequenceNumber: any } | null };\n\nexport type GetLatestIotaSystemStateQueryVariables = Exact<{ [key: string]: never; }>;\n\n\nexport type GetLatestIotaSystemStateQuery = { __typename?: 'Query', epoch?: { __typename?: 'Epoch', epochId: any, startTimestamp: any, endTimestamp?: any | null, referenceGasPrice?: any | null, systemStateVersion?: any | null, iotaTotalSupply?: number | null, iotaTreasuryCapId?: any | null, safeMode?: { __typename?: 'SafeMode', enabled?: boolean | null, gasSummary?: { __typename?: 'GasCostSummary', computationCost?: any | null, computationCostBurned?: any | null, nonRefundableStorageFee?: any | null, storageCost?: any | null, storageRebate?: any | null } | null } | null, storageFund?: { __typename?: 'StorageFund', nonRefundableBalance?: any | null, totalObjectStorageRebates?: any | null } | null, systemParameters?: { __typename?: 'SystemParameters', minValidatorCount?: number | null, maxValidatorCount?: number | null, minValidatorJoiningStake?: any | null, durationMs?: any | null, validatorLowStakeThreshold?: any | null, validatorLowStakeGracePeriod?: any | null, validatorVeryLowStakeThreshold?: any | null } | null, protocolConfigs: { __typename?: 'ProtocolConfigs', protocolVersion: any }, validatorSet?: { __typename?: 'ValidatorSet', inactivePoolsSize?: number | null, pendingActiveValidatorsSize?: number | null, stakingPoolMappingsSize?: number | null, validatorCandidatesSize?: number | null, pendingRemovals?: Array<number> | null, totalStake?: any | null, stakingPoolMappingsId?: any | null, pendingActiveValidatorsId?: any | null, validatorCandidatesId?: any | null, inactivePoolsId?: any | null, activeValidators: { __typename?: 'ValidatorConnection', pageInfo: { __typename?: 'PageInfo', hasNextPage: boolean, endCursor?: string | null }, nodes: Array<{ __typename?: 'Validator', atRisk?: any | null, commissionRate?: number | null, exchangeRatesSize?: any | null, description?: string | null, gasPrice?: any | null, imageUrl?: string | null, name?: string | null, nextEpochCommissionRate?: number | null, nextEpochGasPrice?: any | null, nextEpochStake?: any | null, pendingPoolTokenWithdraw?: any | null, pendingStake?: any | null, pendingTotalIotaWithdraw?: any | null, poolTokenBalance?: any | null, projectUrl?: string | null, rewardsPool?: any | null, stakingPoolActivationEpoch?: any | null, stakingPoolIotaBalance?: any | null, votingPower?: number | null, exchangeRates?: { __typename?: 'MoveObject', address: any, contents?: { __typename?: 'MoveValue', json: any } | null } | null, credentials?: { __typename?: 'ValidatorCredentials', netAddress?: string | null, networkPubKey?: any | null, p2PAddress?: string | null, primaryAddress?: string | null, authorityPubKey?: any | null, proofOfPossession?: any | null, protocolPubKey?: any | null } | null, nextEpochCredentials?: { __typename?: 'ValidatorCredentials', netAddress?: string | null, networkPubKey?: any | null, p2PAddress?: string | null, primaryAddress?: string | null, authorityPubKey?: any | null, proofOfPossession?: any | null, protocolPubKey?: any | null } | null, operationCap?: { __typename?: 'MoveObject', address: any } | null, stakingPool?: { __typename?: 'MoveObject', address: any } | null, address: { __typename?: 'Address', address: any } }> } } | null } | null };\n\nexport type GetMoveFunctionArgTypesQueryVariables = Exact<{\n packageId: Scalars['IotaAddress']['input'];\n module: Scalars['String']['input'];\n function: Scalars['String']['input'];\n}>;\n\n\nexport type GetMoveFunctionArgTypesQuery = { __typename?: 'Query', object?: { __typename?: 'Object', asMovePackage?: { __typename?: 'MovePackage', module?: { __typename?: 'MoveModule', fileFormatVersion: number, function?: { __typename?: 'MoveFunction', parameters?: Array<{ __typename?: 'OpenMoveType', signature: any }> | null } | null } | null } | null } | null };\n\nexport type GetNormalizedMoveFunctionQueryVariables = Exact<{\n packageId: Scalars['IotaAddress']['input'];\n module: Scalars['String']['input'];\n function: Scalars['String']['input'];\n}>;\n\n\nexport type GetNormalizedMoveFunctionQuery = { __typename?: 'Query', object?: { __typename?: 'Object', address: any, asMovePackage?: { __typename?: 'MovePackage', module?: { __typename?: 'MoveModule', fileFormatVersion: number, function?: { __typename?: 'MoveFunction', name: string, visibility?: MoveVisibility | null, isEntry?: boolean | null, parameters?: Array<{ __typename?: 'OpenMoveType', signature: any }> | null, typeParameters?: Array<{ __typename?: 'MoveFunctionTypeParameter', constraints: Array<MoveAbility> }> | null, return?: Array<{ __typename?: 'OpenMoveType', repr: string, signature: any }> | null } | null } | null } | null } | null };\n\nexport type Rpc_Move_Function_FieldsFragment = { __typename?: 'MoveFunction', name: string, visibility?: MoveVisibility | null, isEntry?: boolean | null, parameters?: Array<{ __typename?: 'OpenMoveType', signature: any }> | null, typeParameters?: Array<{ __typename?: 'MoveFunctionTypeParameter', constraints: Array<MoveAbility> }> | null, return?: Array<{ __typename?: 'OpenMoveType', repr: string, signature: any }> | null };\n\nexport type GetNormalizedMoveModuleQueryVariables = Exact<{\n packageId: Scalars['IotaAddress']['input'];\n module: Scalars['String']['input'];\n}>;\n\n\nexport type GetNormalizedMoveModuleQuery = { __typename?: 'Query', object?: { __typename?: 'Object', asMovePackage?: { __typename?: 'MovePackage', module?: { __typename?: 'MoveModule', name: string, fileFormatVersion: number, friends: { __typename?: 'MoveModuleConnection', pageInfo: { __typename?: 'PageInfo', hasNextPage: boolean, endCursor?: string | null }, nodes: Array<{ __typename?: 'MoveModule', name: string, package: { __typename?: 'MovePackage', address: any } }> }, structs?: { __typename?: 'MoveStructConnection', pageInfo: { __typename?: 'PageInfo', hasNextPage: boolean, endCursor?: string | null }, nodes: Array<{ __typename?: 'MoveStruct', name: string, abilities?: Array<MoveAbility> | null, fields?: Array<{ __typename?: 'MoveField', name: string, type?: { __typename?: 'OpenMoveType', signature: any } | null }> | null, typeParameters?: Array<{ __typename?: 'MoveStructTypeParameter', isPhantom: boolean, constraints: Array<MoveAbility> }> | null }> } | null, functions?: { __typename?: 'MoveFunctionConnection', pageInfo: { __typename?: 'PageInfo', hasNextPage: boolean, endCursor?: string | null }, nodes: Array<{ __typename?: 'MoveFunction', name: string, visibility?: MoveVisibility | null, isEntry?: boolean | null, parameters?: Array<{ __typename?: 'OpenMoveType', signature: any }> | null, typeParameters?: Array<{ __typename?: 'MoveFunctionTypeParameter', constraints: Array<MoveAbility> }> | null, return?: Array<{ __typename?: 'OpenMoveType', repr: string, signature: any }> | null }> } | null } | null } | null } | null };\n\nexport type PaginateMoveModuleListsQueryVariables = Exact<{\n packageId: Scalars['IotaAddress']['input'];\n module: Scalars['String']['input'];\n hasMoreFriends: Scalars['Boolean']['input'];\n hasMoreStructs: Scalars['Boolean']['input'];\n hasMoreFunctions: Scalars['Boolean']['input'];\n afterFriends?: InputMaybe<Scalars['String']['input']>;\n afterStructs?: InputMaybe<Scalars['String']['input']>;\n afterFunctions?: InputMaybe<Scalars['String']['input']>;\n}>;\n\n\nexport type PaginateMoveModuleListsQuery = { __typename?: 'Query', object?: { __typename?: 'Object', asMovePackage?: { __typename?: 'MovePackage', module?: { __typename?: 'MoveModule', friends?: { __typename?: 'MoveModuleConnection', pageInfo: { __typename?: 'PageInfo', hasNextPage: boolean, endCursor?: string | null }, nodes: Array<{ __typename?: 'MoveModule', name: string, package: { __typename?: 'MovePackage', address: any } }> }, structs?: { __typename?: 'MoveStructConnection', pageInfo: { __typename?: 'PageInfo', hasNextPage: boolean, endCursor?: string | null }, nodes: Array<{ __typename?: 'MoveStruct', name: string, abilities?: Array<MoveAbility> | null, fields?: Array<{ __typename?: 'MoveField', name: string, type?: { __typename?: 'OpenMoveType', signature: any } | null }> | null, typeParameters?: Array<{ __typename?: 'MoveStructTypeParameter', isPhantom: boolean, constraints: Array<MoveAbility> }> | null }> } | null, functions?: { __typename?: 'MoveFunctionConnection', pageInfo: { __typename?: 'PageInfo', hasNextPage: boolean, endCursor?: string | null }, nodes: Array<{ __typename?: 'MoveFunction', name: string, visibility?: MoveVisibility | null, isEntry?: boolean | null, parameters?: Array<{ __typename?: 'OpenMoveType', signature: any }> | null, typeParameters?: Array<{ __typename?: 'MoveFunctionTypeParameter', constraints: Array<MoveAbility> }> | null, return?: Array<{ __typename?: 'OpenMoveType', repr: string, signature: any }> | null }> } | null } | null } | null } | null };\n\nexport type Rpc_Move_Module_FieldsFragment = { __typename?: 'MoveModule', name: string, fileFormatVersion: number, friends: { __typename?: 'MoveModuleConnection', pageInfo: { __typename?: 'PageInfo', hasNextPage: boolean, endCursor?: string | null }, nodes: Array<{ __typename?: 'MoveModule', name: string, package: { __typename?: 'MovePackage', address: any } }> }, structs?: { __typename?: 'MoveStructConnection', pageInfo: { __typename?: 'PageInfo', hasNextPage: boolean, endCursor?: string | null }, nodes: Array<{ __typename?: 'MoveStruct', name: string, abilities?: Array<MoveAbility> | null, fields?: Array<{ __typename?: 'MoveField', name: string, type?: { __typename?: 'OpenMoveType', signature: any } | null }> | null, typeParameters?: Array<{ __typename?: 'MoveStructTypeParameter', isPhantom: boolean, constraints: Array<MoveAbility> }> | null }> } | null, functions?: { __typename?: 'MoveFunctionConnection', pageInfo: { __typename?: 'PageInfo', hasNextPage: boolean, endCursor?: string | null }, nodes: Array<{ __typename?: 'MoveFunction', name: string, visibility?: MoveVisibility | null, isEntry?: boolean | null, parameters?: Array<{ __typename?: 'OpenMoveType', signature: any }> | null, typeParameters?: Array<{ __typename?: 'MoveFunctionTypeParameter', constraints: Array<MoveAbility> }> | null, return?: Array<{ __typename?: 'OpenMoveType', repr: string, signature: any }> | null }> } | null };\n\nexport type GetNormalizedMoveModulesByPackageQueryVariables = Exact<{\n packageId: Scalars['IotaAddress']['input'];\n cursor?: InputMaybe<Scalars['String']['input']>;\n}>;\n\n\nexport type GetNormalizedMoveModulesByPackageQuery = { __typename?: 'Query', object?: { __typename?: 'Object', asMovePackage?: { __typename?: 'MovePackage', address: any, modules?: { __typename?: 'MoveModuleConnection', pageInfo: { __typename?: 'PageInfo', hasNextPage: boolean, endCursor?: string | null }, nodes: Array<{ __typename?: 'MoveModule', name: string, fileFormatVersion: number, friends: { __typename?: 'MoveModuleConnection', pageInfo: { __typename?: 'PageInfo', hasNextPage: boolean, endCursor?: string | null }, nodes: Array<{ __typename?: 'MoveModule', name: string, package: { __typename?: 'MovePackage', address: any } }> }, structs?: { __typename?: 'MoveStructConnection', pageInfo: { __typename?: 'PageInfo', hasNextPage: boolean, endCursor?: string | null }, nodes: Array<{ __typename?: 'MoveStruct', name: string, abilities?: Array<MoveAbility> | null, fields?: Array<{ __typename?: 'MoveField', name: string, type?: { __typename?: 'OpenMoveType', signature: any } | null }> | null, typeParameters?: Array<{ __typename?: 'MoveStructTypeParameter', isPhantom: boolean, constraints: Array<MoveAbility> }> | null }> } | null, functions?: { __typename?: 'MoveFunctionConnection', pageInfo: { __typename?: 'PageInfo', hasNextPage: boolean, endCursor?: string | null }, nodes: Array<{ __typename?: 'MoveFunction', name: string, visibility?: MoveVisibility | null, isEntry?: boolean | null, parameters?: Array<{ __typename?: 'OpenMoveType', signature: any }> | null, typeParameters?: Array<{ __typename?: 'MoveFunctionTypeParameter', constraints: Array<MoveAbility> }> | null, return?: Array<{ __typename?: 'OpenMoveType', repr: string, signature: any }> | null }> } | null }> } | null } | null } | null };\n\nexport type GetNormalizedMoveStructQueryVariables = Exact<{\n packageId: Scalars['IotaAddress']['input'];\n module: Scalars['String']['input'];\n struct: Scalars['String']['input'];\n}>;\n\n\nexport type GetNormalizedMoveStructQuery = { __typename?: 'Query', object?: { __typename?: 'Object', asMovePackage?: { __typename?: 'MovePackage', address: any, module?: { __typename?: 'MoveModule', fileFormatVersion: number, struct?: { __typename?: 'MoveStruct', name: string, abilities?: Array<MoveAbility> | null, fields?: Array<{ __typename?: 'MoveField', name: string, type?: { __typename?: 'OpenMoveType', signature: any } | null }> | null, typeParameters?: Array<{ __typename?: 'MoveStructTypeParameter', isPhantom: boolean, constraints: Array<MoveAbility> }> | null } | null } | null } | null } | null };\n\nexport type Rpc_Move_Struct_FieldsFragment = { __typename?: 'MoveStruct', name: string, abilities?: Array<MoveAbility> | null, fields?: Array<{ __typename?: 'MoveField', name: string, type?: { __typename?: 'OpenMoveType', signature: any } | null }> | null, typeParameters?: Array<{ __typename?: 'MoveStructTypeParameter', isPhantom: boolean, constraints: Array<MoveAbility> }> | null };\n\nexport type GetProtocolConfigQueryVariables = Exact<{\n protocolVersion?: InputMaybe<Scalars['UInt53']['input']>;\n}>;\n\n\nexport type GetProtocolConfigQuery = { __typename?: 'Query', protocolConfig: { __typename?: 'ProtocolConfigs', protocolVersion: any, configs: Array<{ __typename?: 'ProtocolConfigAttr', key: string, value?: string | null }>, featureFlags: Array<{ __typename?: 'ProtocolConfigFeatureFlag', key: string, value: boolean }> } };\n\nexport type GetReferenceGasPriceQueryVariables = Exact<{ [key: string]: never; }>;\n\n\nexport type GetReferenceGasPriceQuery = { __typename?: 'Query', epoch?: { __typename?: 'Epoch', referenceGasPrice?: any | null } | null };\n\nexport type GetTotalSupplyQueryVariables = Exact<{\n coinType: Scalars['String']['input'];\n}>;\n\n\nexport type GetTotalSupplyQuery = { __typename?: 'Query', coinMetadata?: { __typename?: 'CoinMetadata', supply?: any | null, decimals?: number | null } | null };\n\nexport type GetTotalTransactionBlocksQueryVariables = Exact<{ [key: string]: never; }>;\n\n\nexport type GetTotalTransactionBlocksQuery = { __typename?: 'Query', checkpoint?: { __typename?: 'Checkpoint', networkTotalTransactions?: any | null } | null };\n\nexport type GetValidatorsApyQueryVariables = Exact<{ [key: string]: never; }>;\n\n\nexport type GetValidatorsApyQuery = { __typename?: 'Query', epoch?: { __typename?: 'Epoch', epochId: any, validatorSet?: { __typename?: 'ValidatorSet', activeValidators: { __typename?: 'ValidatorConnection', pageInfo: { __typename?: 'PageInfo', hasNextPage: boolean, endCursor?: string | null }, nodes: Array<{ __typename?: 'Validator', apy?: number | null, address: { __typename?: 'Address', address: any } }> } } | null } | null };\n\nexport type GetOwnedObjectsQueryVariables = Exact<{\n owner: Scalars['IotaAddress']['input'];\n limit?: InputMaybe<Scalars['Int']['input']>;\n cursor?: InputMaybe<Scalars['String']['input']>;\n showBcs?: InputMaybe<Scalars['Boolean']['input']>;\n showContent?: InputMaybe<Scalars['Boolean']['input']>;\n showDisplay?: InputMaybe<Scalars['Boolean']['input']>;\n showType?: InputMaybe<Scalars['Boolean']['input']>;\n showOwner?: InputMaybe<Scalars['Boolean']['input']>;\n showPreviousTransaction?: InputMaybe<Scalars['Boolean']['input']>;\n showStorageRebate?: InputMaybe<Scalars['Boolean']['input']>;\n filter?: InputMaybe<ObjectFilter>;\n}>;\n\n\nexport type GetOwnedObjectsQuery = { __typename?: 'Query', address?: { __typename?: 'Address', objects: { __typename?: 'MoveObjectConnection', pageInfo: { __typename?: 'PageInfo', hasNextPage: boolean, endCursor?: string | null }, nodes: Array<{ __typename?: 'MoveObject', bcs?: any | null, storageRebate?: any | null, digest?: string | null, version: any, objectId: any, contents?: { __typename?: 'MoveValue', data: any, bcs: any, type: { __typename?: 'MoveType', repr: string, layout: any, signature: any } } | null, owner?: { __typename: 'AddressOwner', owner?: { __typename?: 'Owner', asObject?: { __typename?: 'Object', address: any } | null, asAddress?: { __typename?: 'Address', address: any } | null } | null } | { __typename: 'Immutable' } | { __typename: 'Parent', parent?: { __typename?: 'Object', address: any } | null } | { __typename: 'Shared', initialSharedVersion: any } | null, previousTransactionBlock?: { __typename?: 'TransactionBlock', digest?: string | null } | null, display?: Array<{ __typename?: 'DisplayEntry', key: string, value?: string | null, error?: string | null }> | null }> } } | null };\n\nexport type GetObjectQueryVariables = Exact<{\n id: Scalars['IotaAddress']['input'];\n showBcs?: InputMaybe<Scalars['Boolean']['input']>;\n showOwner?: InputMaybe<Scalars['Boolean']['input']>;\n showPreviousTransaction?: InputMaybe<Scalars['Boolean']['input']>;\n showContent?: InputMaybe<Scalars['Boolean']['input']>;\n showDisplay?: InputMaybe<Scalars['Boolean']['input']>;\n showType?: InputMaybe<Scalars['Boolean']['input']>;\n showStorageRebate?: InputMaybe<Scalars['Boolean']['input']>;\n}>;\n\n\nexport type GetObjectQuery = { __typename?: 'Query', object?: { __typename?: 'Object', version: any, storageRebate?: any | null, digest?: string | null, objectId: any, asMoveObject?: { __typename?: 'MoveObject', contents?: { __typename?: 'MoveValue', data: any, bcs: any, type: { __typename?: 'MoveType', repr: string, layout: any, signature: any } } | null } | null, owner?: { __typename: 'AddressOwner', owner?: { __typename?: 'Owner', asObject?: { __typename?: 'Object', address: any } | null, asAddress?: { __typename?: 'Address', address: any } | null } | null } | { __typename: 'Immutable' } | { __typename: 'Parent', parent?: { __typename?: 'Object', address: any } | null } | { __typename: 'Shared', initialSharedVersion: any } | null, previousTransactionBlock?: { __typename?: 'TransactionBlock', digest?: string | null } | null, display?: Array<{ __typename?: 'DisplayEntry', key: string, value?: string | null, error?: string | null }> | null } | null };\n\nexport type TryGetPastObjectQueryVariables = Exact<{\n id: Scalars['IotaAddress']['input'];\n version?: InputMaybe<Scalars['UInt53']['input']>;\n showBcs?: InputMaybe<Scalars['Boolean']['input']>;\n showOwner?: InputMaybe<Scalars['Boolean']['input']>;\n showPreviousTransaction?: InputMaybe<Scalars['Boolean']['input']>;\n showContent?: InputMaybe<Scalars['Boolean']['input']>;\n showDisplay?: InputMaybe<Scalars['Boolean']['input']>;\n showType?: InputMaybe<Scalars['Boolean']['input']>;\n showStorageRebate?: InputMaybe<Scalars['Boolean']['input']>;\n}>;\n\n\nexport type TryGetPastObjectQuery = { __typename?: 'Query', current?: { __typename?: 'Object', address: any, version: any } | null, object?: { __typename?: 'Object', version: any, storageRebate?: any | null, digest?: string | null, objectId: any, asMoveObject?: { __typename?: 'MoveObject', contents?: { __typename?: 'MoveValue', data: any, bcs: any, type: { __typename?: 'MoveType', repr: string, layout: any, signature: any } } | null } | null, owner?: { __typename: 'AddressOwner', owner?: { __typename?: 'Owner', asObject?: { __typename?: 'Object', address: any } | null, asAddress?: { __typename?: 'Address', address: any } | null } | null } | { __typename: 'Immutable' } | { __typename: 'Parent', parent?: { __typename?: 'Object', address: any } | null } | { __typename: 'Shared', initialSharedVersion: any } | null, previousTransactionBlock?: { __typename?: 'TransactionBlock', digest?: string | null } | null, display?: Array<{ __typename?: 'DisplayEntry', key: string, value?: string | null, error?: string | null }> | null } | null };\n\nexport type MultiGetObjectsQueryVariables = Exact<{\n ids: Array<Scalars['IotaAddress']['input']> | Scalars['IotaAddress']['input'];\n limit?: InputMaybe<Scalars['Int']['input']>;\n cursor?: InputMaybe<Scalars['String']['input']>;\n showBcs?: InputMaybe<Scalars['Boolean']['input']>;\n showContent?: InputMaybe<Scalars['Boolean']['input']>;\n showDisplay?: InputMaybe<Scalars['Boolean']['input']>;\n showType?: InputMaybe<Scalars['Boolean']['input']>;\n showOwner?: InputMaybe<Scalars['Boolean']['input']>;\n showPreviousTransaction?: InputMaybe<Scalars['Boolean']['input']>;\n showStorageRebate?: InputMaybe<Scalars['Boolean']['input']>;\n}>;\n\n\nexport type MultiGetObjectsQuery = { __typename?: 'Query', objects: { __typename?: 'ObjectConnection', pageInfo: { __typename?: 'PageInfo', hasNextPage: boolean, endCursor?: string | null }, nodes: Array<{ __typename?: 'Object', version: any, storageRebate?: any | null, digest?: string | null, objectId: any, asMoveObject?: { __typename?: 'MoveObject', contents?: { __typename?: 'MoveValue', data: any, bcs: any, type: { __typename?: 'MoveType', repr: string, layout: any, signature: any } } | null } | null, owner?: { __typename: 'AddressOwner', owner?: { __typename?: 'Owner', asObject?: { __typename?: 'Object', address: any } | null, asAddress?: { __typename?: 'Address', address: any } | null } | null } | { __typename: 'Immutable' } | { __typename: 'Parent', parent?: { __typename?: 'Object', address: any } | null } | { __typename: 'Shared', initialSharedVersion: any } | null, previousTransactionBlock?: { __typename?: 'TransactionBlock', digest?: string | null } | null, display?: Array<{ __typename?: 'DisplayEntry', key: string, value?: string | null, error?: string | null }> | null }> } };\n\nexport type Rpc_Object_FieldsFragment = { __typename?: 'Object', version: any, storageRebate?: any | null, digest?: string | null, objectId: any, asMoveObject?: { __typename?: 'MoveObject', contents?: { __typename?: 'MoveValue', data: any, bcs: any, type: { __typename?: 'MoveType', repr: string, layout: any, signature: any } } | null } | null, owner?: { __typename: 'AddressOwner', owner?: { __typename?: 'Owner', asObject?: { __typename?: 'Object', address: any } | null, asAddress?: { __typename?: 'Address', address: any } | null } | null } | { __typename: 'Immutable' } | { __typename: 'Parent', parent?: { __typename?: 'Object', address: any } | null } | { __typename: 'Shared', initialSharedVersion: any } | null, previousTransactionBlock?: { __typename?: 'TransactionBlock', digest?: string | null } | null, display?: Array<{ __typename?: 'DisplayEntry', key: string, value?: string | null, error?: string | null }> | null };\n\nexport type Rpc_Move_Object_FieldsFragment = { __typename?: 'MoveObject', bcs?: any | null, storageRebate?: any | null, digest?: string | null, version: any, objectId: any, contents?: { __typename?: 'MoveValue', data: any, bcs: any, type: { __typename?: 'MoveType', repr: string, layout: any, signature: any } } | null, owner?: { __typename: 'AddressOwner', owner?: { __typename?: 'Owner', asObject?: { __typename?: 'Object', address: any } | null, asAddress?: { __typename?: 'Address', address: any } | null } | null } | { __typename: 'Immutable' } | { __typename: 'Parent', parent?: { __typename?: 'Object', address: any } | null } | { __typename: 'Shared', initialSharedVersion: any } | null, previousTransactionBlock?: { __typename?: 'TransactionBlock', digest?: string | null } | null, display?: Array<{ __typename?: 'DisplayEntry', key: string, value?: string | null, error?: string | null }> | null };\n\ntype Rpc_Object_Owner_Fields_AddressOwner_Fragment = { __typename: 'AddressOwner', owner?: { __typename?: 'Owner', asObject?: { __typename?: 'Object', address: any } | null, asAddress?: { __typename?: 'Address', address: any } | null } | null };\n\ntype Rpc_Object_Owner_Fields_Immutable_Fragment = { __typename: 'Immutable' };\n\ntype Rpc_Object_Owner_Fields_Parent_Fragment = { __typename: 'Parent', parent?: { __typename?: 'Object', address: any } | null };\n\ntype Rpc_Object_Owner_Fields_Shared_Fragment = { __typename: 'Shared', initialSharedVersion: any };\n\nexport type Rpc_Object_Owner_FieldsFragment = Rpc_Object_Owner_Fields_AddressOwner_Fragment | Rpc_Object_Owner_Fields_Immutable_Fragment | Rpc_Object_Owner_Fields_Parent_Fragment | Rpc_Object_Owner_Fields_Shared_Fragment;\n\nexport type QueryEventsQueryVariables = Exact<{\n filter: EventFilter;\n before?: InputMaybe<Scalars['String']['input']>;\n after?: InputMaybe<Scalars['String']['input']>;\n first?: InputMaybe<Scalars['Int']['input']>;\n last?: InputMaybe<Scalars['Int']['input']>;\n}>;\n\n\nexport type QueryEventsQuery = { __typename?: 'Query', events: { __typename?: 'EventConnection', pageInfo: { __typename?: 'PageInfo', hasNextPage: boolean, hasPreviousPage: boolean, endCursor?: string | null, startCursor?: string | null }, nodes: Array<{ __typename?: 'Event', json: any, bcs: any, timestamp?: any | null, sendingModule?: { __typename?: 'MoveModule', name: string, package: { __typename?: 'MovePackage', address: any } } | null, sender?: { __typename?: 'Address', address: any } | null, type: { __typename?: 'MoveType', repr: string } }> } };\n\nexport type Rpc_Events_FieldsFragment = { __typename?: 'Event', json: any, bcs: any, timestamp?: any | null, sendingModule?: { __typename?: 'MoveModule', name: string, package: { __typename?: 'MovePackage', address: any } } | null, sender?: { __typename?: 'Address', address: any } | null, type: { __typename?: 'MoveType', repr: string } };\n\nexport type GetStakesQueryVariables = Exact<{\n owner: Scalars['IotaAddress']['input'];\n limit?: InputMaybe<Scalars['Int']['input']>;\n cursor?: InputMaybe<Scalars['String']['input']>;\n}>;\n\n\nexport type GetStakesQuery = { __typename?: 'Query', address?: { __typename?: 'Address', stakedIotas: { __typename?: 'StakedIotaConnection', pageInfo: { __typename?: 'PageInfo', hasNextPage: boolean, endCursor?: string | null }, nodes: Array<{ __typename?: 'StakedIota', principal?: any | null, stakeStatus: StakeStatus, address: any, estimatedReward?: any | null, activatedEpoch?: { __typename?: 'Epoch', epochId: any, referenceGasPrice?: any | null } | null, requestedEpoch?: { __typename?: 'Epoch', epochId: any } | null, contents?: { __typename?: 'MoveValue', json: any } | null }> } } | null };\n\nexport type GetStakesByIdsQueryVariables = Exact<{\n ids: Array<Scalars['IotaAddress']['input']> | Scalars['IotaAddress']['input'];\n limit?: InputMaybe<Scalars['Int']['input']>;\n cursor?: InputMaybe<Scalars['String']['input']>;\n}>;\n\n\nexport type GetStakesByIdsQuery = { __typename?: 'Query', objects: { __typename?: 'ObjectConnection', pageInfo: { __typename?: 'PageInfo', hasNextPage: boolean, endCursor?: string | null }, nodes: Array<{ __typename?: 'Object', asMoveObject?: { __typename?: 'MoveObject', asStakedIota?: { __typename?: 'StakedIota', principal?: any | null, stakeStatus: StakeStatus, address: any, estimatedReward?: any | null, activatedEpoch?: { __typename?: 'Epoch', epochId: any, referenceGasPrice?: any | null } | null, requestedEpoch?: { __typename?: 'Epoch', epochId: any } | null, contents?: { __typename?: 'MoveValue', json: any } | null } | null } | null }> } };\n\nexport type Rpc_Stake_FieldsFragment = { __typename?: 'StakedIota', principal?: any | null, stakeStatus: StakeStatus, address: any, estimatedReward?: any | null, activatedEpoch?: { __typename?: 'Epoch', epochId: any, referenceGasPrice?: any | null } | null, requestedEpoch?: { __typename?: 'Epoch', epochId: any } | null, contents?: { __typename?: 'MoveValue', json: any } | null };\n\nexport type QueryTransactionBlocksQueryVariables = Exact<{\n first?: InputMaybe<Scalars['Int']['input']>;\n last?: InputMaybe<Scalars['Int']['input']>;\n before?: InputMaybe<Scalars['String']['input']>;\n after?: InputMaybe<Scalars['String']['input']>;\n showBalanceChanges?: InputMaybe<Scalars['Boolean']['input']>;\n showEffects?: InputMaybe<Scalars['Boolean']['input']>;\n showRawEffects?: InputMaybe<Scalars['Boolean']['input']>;\n showEvents?: InputMaybe<Scalars['Boolean']['input']>;\n showInput?: InputMaybe<Scalars['Boolean']['input']>;\n showObjectChanges?: InputMaybe<Scalars['Boolean']['input']>;\n showRawInput?: InputMaybe<Scalars['Boolean']['input']>;\n filter?: InputMaybe<TransactionBlockFilter>;\n}>;\n\n\nexport type QueryTransactionBlocksQuery = { __typename?: 'Query', transactionBlocks: { __typename?: 'TransactionBlockConnection', pageInfo: { __typename?: 'PageInfo', hasNextPage: boolean, hasPreviousPage: boolean, startCursor?: string | null, endCursor?: string | null }, nodes: Array<{ __typename?: 'TransactionBlock', digest?: string | null, signatures?: Array<any> | null, rawTransaction?: any | null, sender?: { __typename?: 'Address', address: any } | null, effects?: { __typename?: 'TransactionBlockEffects', bcs?: any, timestamp?: any | null, events?: { __typename?: 'EventConnection', pageInfo: { __typename?: 'PageInfo', hasNextPage: boolean, endCursor?: string | null }, nodes: Array<{ __typename?: 'Event', json: any, bcs: any, timestamp?: any | null, sendingModule?: { __typename?: 'MoveModule', name: string, package: { __typename?: 'MovePackage', address: any } } | null, sender?: { __typename?: 'Address', address: any } | null, type: { __typename?: 'MoveType', repr: string } }> }, checkpoint?: { __typename?: 'Checkpoint', sequenceNumber: any } | null, balanceChanges?: { __typename?: 'BalanceChangeConnection', pageInfo: { __typename?: 'PageInfo', hasNextPage: boolean, endCursor?: string | null }, nodes: Array<{ __typename?: 'BalanceChange', amount?: any | null, coinType?: { __typename?: 'MoveType', repr: string } | null, owner?: { __typename?: 'Owner', asObject?: { __typename?: 'Object', address: any } | null, asAddress?: { __typename?: 'Address', address: any } | null } | null }> }, objectChanges?: { __typename?: 'ObjectChangeConnection', pageInfo: { __typename?: 'PageInfo', hasNextPage: boolean, endCursor?: string | null }, nodes: Array<{ __typename?: 'ObjectChange', address: any, inputState?: { __typename?: 'Object', version: any, asMoveObject?: { __typename?: 'MoveObject', contents?: { __typename?: 'MoveValue', type: { __typename?: 'MoveType', repr: string } } | null } | null } | null, outputState?: { __typename?: 'Object', asMoveObject?: { __typename?: 'MoveObject', contents?: { __typename?: 'MoveValue', type: { __typename?: 'MoveType', repr: string } } | null } | null, asMovePackage?: { __typename?: 'MovePackage', modules?: { __typename?: 'MoveModuleConnection', nodes: Array<{ __typename?: 'MoveModule', name: string }> } | null } | null } | null }> } } | null }> } };\n\nexport type GetTransactionBlockQueryVariables = Exact<{\n digest: Scalars['String']['input'];\n showBalanceChanges?: InputMaybe<Scalars['Boolean']['input']>;\n showEffects?: InputMaybe<Scalars['Boolean']['input']>;\n showRawEffects?: InputMaybe<Scalars['Boolean']['input']>;\n showEvents?: InputMaybe<Scalars['Boolean']['input']>;\n showInput?: InputMaybe<Scalars['Boolean']['input']>;\n showObjectChanges?: InputMaybe<Scalars['Boolean']['input']>;\n showRawInput?: InputMaybe<Scalars['Boolean']['input']>;\n}>;\n\n\nexport type GetTransactionBlockQuery = { __typename?: 'Query', transactionBlock?: { __typename?: 'TransactionBlock', digest?: string | null, signatures?: Array<any> | null, rawTransaction?: any | null, sender?: { __typename?: 'Address', address: any } | null, effects?: { __typename?: 'TransactionBlockEffects', bcs?: any, timestamp?: any | null, events?: { __typename?: 'EventConnection', pageInfo: { __typename?: 'PageInfo', hasNextPage: boolean, endCursor?: string | null }, nodes: Array<{ __typename?: 'Event', json: any, bcs: any, timestamp?: any | null, sendingModule?: { __typename?: 'MoveModule', name: string, package: { __typename?: 'MovePackage', address: any } } | null, sender?: { __typename?: 'Address', address: any } | null, type: { __typename?: 'MoveType', repr: string } }> }, checkpoint?: { __typename?: 'Checkpoint', sequenceNumber: any } | null, balanceChanges?: { __typename?: 'BalanceChangeConnection', pageInfo: { __typename?: 'PageInfo', hasNextPage: boolean, endCursor?: string | null }, nodes: Array<{ __typename?: 'BalanceChange', amount?: any | null, coinType?: { __typename?: 'MoveType', repr: string } | null, owner?: { __typename?: 'Owner', asObject?: { __typename?: 'Object', address: any } | null, asAddress?: { __typename?: 'Address', address: any } | null } | null }> }, objectChanges?: { __typename?: 'ObjectChangeConnection', pageInfo: { __typename?: 'PageInfo', hasNextPage: boolean, endCursor?: string | null }, nodes: Array<{ __typename?: 'ObjectChange', address: any, inputState?: { __typename?: 'Object', version: any, asMoveObject?: { __typename?: 'MoveObject', contents?: { __typename?: 'MoveValue', type: { __typename?: 'MoveType', repr: string } } | null } | null } | null, outputState?: { __typename?: 'Object', asMoveObject?: { __typename?: 'MoveObject', contents?: { __typename?: 'MoveValue', type: { __typename?: 'MoveType', repr: string } } | null } | null, asMovePackage?: { __typename?: 'MovePackage', modules?: { __typename?: 'MoveModuleConnection', nodes: Array<{ __typename?: 'MoveModule', name: string }> } | null } | null } | null }> } } | null } | null };\n\nexport type MultiGetTransactionBlocksQueryVariables = Exact<{\n digests: Array<Scalars['String']['input']> | Scalars['String']['input'];\n limit?: InputMaybe<Scalars['Int']['input']>;\n cursor?: InputMaybe<Scalars['String']['input']>;\n showBalanceChanges?: InputMaybe<Scalars['Boolean']['input']>;\n showEffects?: InputMaybe<Scalars['Boolean']['input']>;\n showRawEffects?: InputMaybe<Scalars['Boolean']['input']>;\n showEvents?: InputMaybe<Scalars['Boolean']['input']>;\n showInput?: InputMaybe<Scalars['Boolean']['input']>;\n showObjectChanges?: InputMaybe<Scalars['Boolean']['input']>;\n showRawInput?: InputMaybe<Scalars['Boolean']['input']>;\n}>;\n\n\nexport type MultiGetTransactionBlocksQuery = { __typename?: 'Query', transactionBlocks: { __typename?: 'TransactionBlockConnection', pageInfo: { __typename?: 'PageInfo', hasNextPage: boolean, hasPreviousPage: boolean, startCursor?: string | null, endCursor?: string | null }, nodes: Array<{ __typename?: 'TransactionBlock', digest?: string | null, signatures?: Array<any> | null, rawTransaction?: any | null, sender?: { __typename?: 'Address', address: any } | null, effects?: { __typename?: 'TransactionBlockEffects', bcs?: any, timestamp?: any | null, events?: { __typename?: 'EventConnection', pageInfo: { __typename?: 'PageInfo', hasNextPage: boolean, endCursor?: string | null }, nodes: Array<{ __typename?: 'Event', json: any, bcs: any, timestamp?: any | null, sendingModule?: { __typename?: 'MoveModule', name: string, package: { __typename?: 'MovePackage', address: any } } | null, sender?: { __typename?: 'Address', address: any } | null, type: { __typename?: 'MoveType', repr: string } }> }, checkpoint?: { __typename?: 'Checkpoint', sequenceNumber: any } | null, balanceChanges?: { __typename?: 'BalanceChangeConnection', pageInfo: { __typename?: 'PageInfo', hasNextPage: boolean, endCursor?: string | null }, nodes: Array<{ __typename?: 'BalanceChange', amount?: any | null, coinType?: { __typename?: 'MoveType', repr: string } | null, owner?: { __typename?: 'Owner', asObject?: { __typename?: 'Object', address: any } | null, asAddress?: { __typename?: 'Address', address: any } | null } | null }> }, objectChanges?: { __typename?: 'ObjectChangeConnection', pageInfo: { __typename?: 'PageInfo', hasNextPage: boolean, endCursor?: string | null }, nodes: Array<{ __typename?: 'ObjectChange', address: any, inputState?: { __typename?: 'Object', version: any, asMoveObject?: { __typename?: 'MoveObject', contents?: { __typename?: 'MoveValue', type: { __typename?: 'MoveType', repr: string } } | null } | null } | null, outputState?: { __typename?: 'Object', asMoveObject?: { __typename?: 'MoveObject', contents?: { __typename?: 'MoveValue', type: { __typename?: 'MoveType', repr: string } } | null } | null, asMovePackage?: { __typename?: 'MovePackage', modules?: { __typename?: 'MoveModuleConnection', nodes: Array<{ __typename?: 'MoveModule', name: string }> } | null } | null } | null }> } } | null }> } };\n\nexport type PaginateTransactionBlockListsQueryVariables = Exact<{\n digest: Scalars['String']['input'];\n hasMoreEvents: Scalars['Boolean']['input'];\n hasMoreBalanceChanges: Scalars['Boolean']['input'];\n hasMoreObjectChanges: Scalars['Boolean']['input'];\n afterEvents?: InputMaybe<Scalars['String']['input']>;\n afterBalanceChanges?: InputMaybe<Scalars['String']['input']>;\n afterObjectChanges?: InputMaybe<Scalars['String']['input']>;\n}>;\n\n\nexport type PaginateTransactionBlockListsQuery = { __typename?: 'Query', transactionBlock?: { __typename?: 'TransactionBlock', effects?: { __typename?: 'TransactionBlockEffects', events?: { __typename?: 'EventConnection', pageInfo: { __typename?: 'PageInfo', hasNextPage: boolean, endCursor?: string | null }, nodes: Array<{ __typename?: 'Event', json: any, bcs: any, timestamp?: any | null, sendingModule?: { __typename?: 'MoveModule', name: string, package: { __typename?: 'MovePackage', address: any } } | null, sender?: { __typename?: 'Address', address: any } | null, type: { __typename?: 'MoveType', repr: string } }> }, balanceChanges?: { __typename?: 'BalanceChangeConnection', pageInfo: { __typename?: 'PageInfo', hasNextPage: boolean, endCursor?: string | null }, nodes: Array<{ __typename?: 'BalanceChange', amount?: any | null, coinType?: { __typename?: 'MoveType', repr: string } | null, owner?: { __typename?: 'Owner', asObject?: { __typename?: 'Object', address: any } | null, asAddress?: { __typename?: 'Address', address: any } | null } | null }> }, objectChanges?: { __typename?: 'ObjectChangeConnection', pageInfo: { __typename?: 'PageInfo', hasNextPage: boolean, endCursor?: string | null }, nodes: Array<{ __typename?: 'ObjectChange', address: any, inputState?: { __typename?: 'Object', version: any, asMoveObject?: { __typename?: 'MoveObject', contents?: { __typename?: 'MoveValue', type: { __typename?: 'MoveType', repr: string } } | null } | null } | null, outputState?: { __typename?: 'Object', asMoveObject?: { __typename?: 'MoveObject', contents?: { __typename?: 'MoveValue', type: { __typename?: 'MoveType', repr: string } } | null } | null, asMovePackage?: { __typename?: 'MovePackage', modules?: { __typename?: 'MoveModuleConnection', nodes: Array<{ __typename?: 'MoveModule', name: string }> } | null } | null } | null }> } } | null } | null };\n\nexport type Paginate_Transaction_ListsFragment = { __typename?: 'TransactionBlock', effects?: { __typename?: 'TransactionBlockEffects', events?: { __typename?: 'EventConnection', pageInfo: { __typename?: 'PageInfo', hasNextPage: boolean, endCursor?: string | null }, nodes: Array<{ __typename?: 'Event', json: any, bcs: any, timestamp?: any | null, sendingModule?: { __typename?: 'MoveModule', name: string, package: { __typename?: 'MovePackage', address: any } } | null, sender?: { __typename?: 'Address', address: any } | null, type: { __typename?: 'MoveType', repr: string } }> }, balanceChanges?: { __typename?: 'BalanceChangeConnection', pageInfo: { __typename?: 'PageInfo', hasNextPage: boolean, endCursor?: string | null }, nodes: Array<{ __typename?: 'BalanceChange', amount?: any | null, coinType?: { __typename?: 'MoveType', repr: string } | null, owner?: { __typename?: 'Owner', asObject?: { __typename?: 'Object', address: any } | null, asAddress?: { __typename?: 'Address', address: any } | null } | null }> }, objectChanges?: { __typename?: 'ObjectChangeConnection', pageInfo: { __typename?: 'PageInfo', hasNextPage: boolean, endCursor?: string | null }, nodes: Array<{ __typename?: 'ObjectChange', address: any, inputState?: { __typename?: 'Object', version: any, asMoveObject?: { __typename?: 'MoveObject', contents?: { __typename?: 'MoveValue', type: { __typename?: 'MoveType', repr: string } } | null } | null } | null, outputState?: { __typename?: 'Object', asMoveObject?: { __typename?: 'MoveObject', contents?: { __typename?: 'MoveValue', type: { __typename?: 'MoveType', repr: string } } | null } | null, asMovePackage?: { __typename?: 'MovePackage', modules?: { __typename?: 'MoveModuleConnection', nodes: Array<{ __typename?: 'MoveModule', name: string }> } | null } | null } | null }> } } | null };\n\nexport type Rpc_Transaction_FieldsFragment = { __typename?: 'TransactionBlock', digest?: string | null, signatures?: Array<any> | null, rawTransaction?: any | null, sender?: { __typename?: 'Address', address: any } | null, effects?: { __typename?: 'TransactionBlockEffects', bcs?: any, timestamp?: any | null, events?: { __typename?: 'EventConnection', pageInfo: { __typename?: 'PageInfo', hasNextPage: boolean, endCursor?: string | null }, nodes: Array<{ __typename?: 'Event', json: any, bcs: any, timestamp?: any | null, sendingModule?: { __typename?: 'MoveModule', name: string, package: { __typename?: 'MovePackage', address: any } } | null, sender?: { __typename?: 'Address', address: any } | null, type: { __typename?: 'MoveType', repr: string } }> }, checkpoint?: { __typename?: 'Checkpoint', sequenceNumber: any } | null, balanceChanges?: { __typename?: 'BalanceChangeConnection', pageInfo: { __typename?: 'PageInfo', hasNextPage: boolean, endCursor?: string | null }, nodes: Array<{ __typename?: 'BalanceChange', amount?: any | null, coinType?: { __typename?: 'MoveType', repr: string } | null, owner?: { __typename?: 'Owner', asObject?: { __typename?: 'Object', address: any } | null, asAddress?: { __typename?: 'Address', address: any } | null } | null }> }, objectChanges?: { __typename?: 'ObjectChangeConnection', pageInfo: { __typename?: 'PageInfo', hasNextPage: boolean, endCursor?: string | null }, nodes: Array<{ __typename?: 'ObjectChange', address: any, inputState?: { __typename?: 'Object', version: any, asMoveObject?: { __typename?: 'MoveObject', contents?: { __typename?: 'MoveValue', type: { __typename?: 'MoveType', repr: string } } | null } | null } | null, outputState?: { __typename?: 'Object', asMoveObject?: { __typename?: 'MoveObject', contents?: { __typename?: 'MoveValue', type: { __typename?: 'MoveType', repr: string } } | null } | null, asMovePackage?: { __typename?: 'MovePackage', modules?: { __typename?: 'MoveModuleConnection', nodes: Array<{ __typename?: 'MoveModule', name: string }> } | null } | null } | null }> } } | null };\n\nexport class TypedDocumentString<TResult, TVariables>\n extends String\n implements DocumentTypeDecoration<TResult, TVariables>\n{\n __apiType?: DocumentTypeDecoration<TResult, TVariables>['__apiType'];\n\n constructor(private value: string, public __meta__?: Record<string, any>) {\n super(value);\n }\n\n toString(): string & DocumentTypeDecoration<TResult, TVariables> {\n return this.value;\n }\n}\nexport const Rpc_Checkpoint_FieldsFragmentDoc = new TypedDocumentString(`\n fragment RPC_Checkpoint_Fields on Checkpoint {\n digest\n epoch {\n epochId\n }\n rollingGasSummary {\n computationCost\n computationCostBurned\n storageCost\n storageRebate\n nonRefundableStorageFee\n }\n networkTotalTransactions\n previousCheckpointDigest\n sequenceNumber\n timestamp\n validatorSignatures\n transactionBlocks {\n pageInfo {\n hasNextPage\n endCursor\n }\n nodes {\n digest\n }\n }\n endOfEpoch: transactionBlocks(last: 1, filter: {kind: SYSTEM_TX}) {\n nodes {\n kind {\n __typename\n ... on EndOfEpochTransaction {\n transactions(last: 1) {\n nodes {\n __typename\n ... on ChangeEpochTransaction {\n epoch {\n validatorSet {\n activeValidators {\n pageInfo {\n hasNextPage\n endCursor\n }\n nodes {\n credentials {\n protocolPubKey\n }\n votingPower\n }\n }\n }\n protocolConfigs {\n protocolVersion\n }\n epochId\n }\n }\n }\n }\n }\n }\n }\n }\n}\n `, {\"fragmentName\":\"RPC_Checkpoint_Fields\"}) as unknown as TypedDocumentString<Rpc_Checkpoint_FieldsFragment, unknown>;\nexport const Rpc_Credential_FieldsFragmentDoc = new TypedDocumentString(`\n fragment RPC_CREDENTIAL_FIELDS on ValidatorCredentials {\n netAddress\n networkPubKey\n p2PAddress\n primaryAddress\n authorityPubKey\n proofOfPossession\n protocolPubKey\n}\n `, {\"fragmentName\":\"RPC_CREDENTIAL_FIELDS\"}) as unknown as TypedDocumentString<Rpc_Credential_FieldsFragment, unknown>;\nexport const Rpc_Validator_FieldsFragmentDoc = new TypedDocumentString(`\n fragment RPC_VALIDATOR_FIELDS on Validator {\n atRisk\n commissionRate\n exchangeRatesSize\n exchangeRates {\n contents {\n json\n }\n address\n }\n description\n gasPrice\n imageUrl\n name\n credentials {\n ...RPC_CREDENTIAL_FIELDS\n }\n nextEpochCommissionRate\n nextEpochGasPrice\n nextEpochCredentials {\n ...RPC_CREDENTIAL_FIELDS\n }\n nextEpochStake\n nextEpochCommissionRate\n operationCap {\n address\n }\n pendingPoolTokenWithdraw\n pendingStake\n pendingTotalIotaWithdraw\n poolTokenBalance\n projectUrl\n rewardsPool\n stakingPool {\n address\n }\n stakingPoolActivationEpoch\n stakingPoolIotaBalance\n address {\n address\n }\n votingPower\n}\n fragment RPC_CREDENTIAL_FIELDS on ValidatorCredentials {\n netAddress\n networkPubKey\n p2PAddress\n primaryAddress\n authorityPubKey\n proofOfPossession\n protocolPubKey\n}`, {\"fragmentName\":\"RPC_VALIDATOR_FIELDS\"}) as unknown as TypedDocumentString<Rpc_Validator_FieldsFragment, unknown>;\nexport const Rpc_Move_Struct_FieldsFragmentDoc = new TypedDocumentString(`\n fragment RPC_MOVE_STRUCT_FIELDS on MoveStruct {\n name\n abilities\n fields {\n name\n type {\n signature\n }\n }\n typeParameters {\n isPhantom\n constraints\n }\n}\n `, {\"fragmentName\":\"RPC_MOVE_STRUCT_FIELDS\"}) as unknown as TypedDocumentString<Rpc_Move_Struct_FieldsFragment, unknown>;\nexport const Rpc_Move_Function_FieldsFragmentDoc = new TypedDocumentString(`\n fragment RPC_MOVE_FUNCTION_FIELDS on MoveFunction {\n name\n visibility\n isEntry\n parameters {\n signature\n }\n typeParameters {\n constraints\n }\n return {\n repr\n signature\n }\n}\n `, {\"fragmentName\":\"RPC_MOVE_FUNCTION_FIELDS\"}) as unknown as TypedDocumentString<Rpc_Move_Function_FieldsFragment, unknown>;\nexport const Rpc_Move_Module_FieldsFragmentDoc = new TypedDocumentString(`\n fragment RPC_MOVE_MODULE_FIELDS on MoveModule {\n name\n friends {\n pageInfo {\n hasNextPage\n endCursor\n }\n nodes {\n name\n package {\n address\n }\n }\n }\n structs {\n pageInfo {\n hasNextPage\n endCursor\n }\n nodes {\n ...RPC_MOVE_STRUCT_FIELDS\n }\n }\n fileFormatVersion\n functions {\n pageInfo {\n hasNextPage\n endCursor\n }\n nodes {\n ...RPC_MOVE_FUNCTION_FIELDS\n }\n }\n}\n fragment RPC_MOVE_FUNCTION_FIELDS on MoveFunction {\n name\n visibility\n isEntry\n parameters {\n signature\n }\n typeParameters {\n constraints\n }\n return {\n repr\n signature\n }\n}\nfragment RPC_MOVE_STRUCT_FIELDS on MoveStruct {\n name\n abilities\n fields {\n name\n type {\n signature\n }\n }\n typeParameters {\n isPhantom\n constraints\n }\n}`, {\"fragmentName\":\"RPC_MOVE_MODULE_FIELDS\"}) as unknown as TypedDocumentString<Rpc_Move_Module_FieldsFragment, unknown>;\nexport const Rpc_Object_Owner_FieldsFragmentDoc = new TypedDocumentString(`\n fragment RPC_OBJECT_OWNER_FIELDS on ObjectOwner {\n __typename\n ... on AddressOwner {\n owner {\n asObject {\n address\n }\n asAddress {\n address\n }\n }\n }\n ... on Parent {\n parent {\n address\n }\n }\n ... on Shared {\n initialSharedVersion\n }\n}\n `, {\"fragmentName\":\"RPC_OBJECT_OWNER_FIELDS\"}) as unknown as TypedDocumentString<Rpc_Object_Owner_FieldsFragment, unknown>;\nexport const Rpc_Object_FieldsFragmentDoc = new TypedDocumentString(`\n fragment RPC_OBJECT_FIELDS on Object {\n objectId: address\n version\n asMoveObject @include(if: $showType) {\n contents {\n type {\n repr\n }\n }\n }\n asMoveObject @include(if: $showContent) {\n contents {\n data\n type {\n repr\n layout\n signature\n }\n }\n }\n asMoveObject @include(if: $showBcs) {\n contents {\n bcs\n type {\n repr\n }\n }\n }\n owner @include(if: $showOwner) {\n ...RPC_OBJECT_OWNER_FIELDS\n }\n previousTransactionBlock @include(if: $showPreviousTransaction) {\n digest\n }\n storageRebate @include(if: $showStorageRebate)\n digest\n version\n display @include(if: $showDisplay) {\n key\n value\n error\n }\n}\n fragment RPC_OBJECT_OWNER_FIELDS on ObjectOwner {\n __typename\n ... on AddressOwner {\n owner {\n asObject {\n address\n }\n asAddress {\n address\n }\n }\n }\n ... on Parent {\n parent {\n address\n }\n }\n ... on Shared {\n initialSharedVersion\n }\n}`, {\"fragmentName\":\"RPC_OBJECT_FIELDS\"}) as unknown as TypedDocumentString<Rpc_Object_FieldsFragment, unknown>;\nexport const Rpc_Move_Object_FieldsFragmentDoc = new TypedDocumentString(`\n fragment RPC_MOVE_OBJECT_FIELDS on MoveObject {\n objectId: address\n bcs @include(if: $showBcs)\n contents @include(if: $showType) {\n type {\n repr\n }\n }\n contents @include(if: $showContent) {\n data\n type {\n repr\n layout\n signature\n }\n }\n contents @include(if: $showBcs) {\n bcs\n type {\n repr\n }\n }\n owner @include(if: $showOwner) {\n ...RPC_OBJECT_OWNER_FIELDS\n }\n previousTransactionBlock @include(if: $showPreviousTransaction) {\n digest\n }\n storageRebate @include(if: $showStorageRebate)\n digest\n version\n display @include(if: $showDisplay) {\n key\n value\n error\n }\n}\n fragment RPC_OBJECT_OWNER_FIELDS on ObjectOwner {\n __typename\n ... on AddressOwner {\n owner {\n asObject {\n address\n }\n asAddress {\n address\n }\n }\n }\n ... on Parent {\n parent {\n address\n }\n }\n ... on Shared {\n initialSharedVersion\n }\n}`, {\"fragmentName\":\"RPC_MOVE_OBJECT_FIELDS\"}) as unknown as TypedDocumentString<Rpc_Move_Object_FieldsFragment, unknown>;\nexport const Rpc_Stake_FieldsFragmentDoc = new TypedDocumentString(`\n fragment RPC_STAKE_FIELDS on StakedIota {\n principal\n activatedEpoch {\n epochId\n referenceGasPrice\n }\n stakeStatus\n requestedEpoch {\n epochId\n }\n activatedEpoch {\n epochId\n }\n contents {\n json\n }\n address\n estimatedReward\n}\n `, {\"fragmentName\":\"RPC_STAKE_FIELDS\"}) as unknown as TypedDocumentString<Rpc_Stake_FieldsFragment, unknown>;\nexport const Rpc_Events_FieldsFragmentDoc = new TypedDocumentString(`\n fragment RPC_EVENTS_FIELDS on Event {\n sendingModule {\n package {\n address\n }\n name\n }\n sender {\n address\n }\n type {\n repr\n }\n json\n bcs\n timestamp\n}\n `, {\"fragmentName\":\"RPC_EVENTS_FIELDS\"}) as unknown as TypedDocumentString<Rpc_Events_FieldsFragment, unknown>;\nexport const Paginate_Transaction_ListsFragmentDoc = new TypedDocumentString(`\n fragment PAGINATE_TRANSACTION_LISTS on TransactionBlock {\n effects {\n events(after: $afterEvents) @include(if: $hasMoreEvents) {\n pageInfo {\n hasNextPage\n endCursor\n }\n nodes {\n ...RPC_EVENTS_FIELDS\n }\n }\n balanceChanges(after: $afterBalanceChanges) @include(if: $hasMoreBalanceChanges) {\n pageInfo {\n hasNextPage\n endCursor\n }\n nodes {\n coinType {\n repr\n }\n owner {\n asObject {\n address\n }\n asAddress {\n address\n }\n }\n amount\n }\n }\n objectChanges(after: $afterObjectChanges) @include(if: $hasMoreObjectChanges) {\n pageInfo {\n hasNextPage\n endCursor\n }\n nodes {\n address\n inputState {\n version\n asMoveObject {\n contents {\n type {\n repr\n }\n }\n }\n }\n outputState {\n asMoveObject {\n contents {\n type {\n repr\n }\n }\n }\n asMovePackage {\n modules(first: 10) {\n nodes {\n name\n }\n }\n }\n }\n }\n }\n }\n}\n fragment RPC_EVENTS_FIELDS on Event {\n sendingModule {\n package {\n address\n }\n name\n }\n sender {\n address\n }\n type {\n repr\n }\n json\n bcs\n timestamp\n}`, {\"fragmentName\":\"PAGINATE_TRANSACTION_LISTS\"}) as unknown as TypedDocumentString<Paginate_Transaction_ListsFragment, unknown>;\nexport const Rpc_Transaction_FieldsFragmentDoc = new TypedDocumentString(`\n fragment RPC_TRANSACTION_FIELDS on TransactionBlock {\n digest\n rawTransaction: bcs @include(if: $showInput)\n rawTransaction: bcs @include(if: $showRawInput)\n sender {\n address\n }\n signatures\n effects {\n bcs @include(if: $showEffects)\n bcs @include(if: $showObjectChanges)\n bcs @include(if: $showRawEffects)\n events @include(if: $showEvents) {\n pageInfo {\n hasNextPage\n endCursor\n }\n nodes {\n ...RPC_EVENTS_FIELDS\n }\n }\n checkpoint {\n sequenceNumber\n }\n timestamp\n balanceChanges @include(if: $showBalanceChanges) {\n pageInfo {\n hasNextPage\n endCursor\n }\n nodes {\n coinType {\n repr\n }\n owner {\n asObject {\n address\n }\n asAddress {\n address\n }\n }\n amount\n }\n }\n objectChanges @include(if: $showObjectChanges) {\n pageInfo {\n hasNextPage\n endCursor\n }\n nodes {\n address\n inputState {\n version\n asMoveObject {\n contents {\n type {\n repr\n }\n }\n }\n }\n outputState {\n asMoveObject {\n contents {\n type {\n repr\n }\n }\n }\n asMovePackage {\n modules(first: 10) {\n nodes {\n name\n }\n }\n }\n }\n }\n }\n }\n}\n fragment RPC_EVENTS_FIELDS on Event {\n sendingModule {\n package {\n address\n }\n name\n }\n sender {\n address\n }\n type {\n repr\n }\n json\n bcs\n timestamp\n}`, {\"fragmentName\":\"RPC_TRANSACTION_FIELDS\"}) as unknown as TypedDocumentString<Rpc_Transaction_FieldsFragment, unknown>;\nexport const GetCheckpointDocument = new TypedDocumentString(`\n query getCheckpoint($id: CheckpointId) {\n checkpoint(id: $id) {\n ...RPC_Checkpoint_Fields\n }\n}\n fragment RPC_Checkpoint_Fields on Checkpoint {\n digest\n epoch {\n epochId\n }\n rollingGasSummary {\n computationCost\n computationCostBurned\n storageCost\n storageRebate\n nonRefundableStorageFee\n }\n networkTotalTransactions\n previousCheckpointDigest\n sequenceNumber\n timestamp\n validatorSignatures\n transactionBlocks {\n pageInfo {\n hasNextPage\n endCursor\n }\n nodes {\n digest\n }\n }\n endOfEpoch: transactionBlocks(last: 1, filter: {kind: SYSTEM_TX}) {\n nodes {\n kind {\n __typename\n ... on EndOfEpochTransaction {\n transactions(last: 1) {\n nodes {\n __typename\n ... on ChangeEpochTransaction {\n epoch {\n validatorSet {\n activeValidators {\n pageInfo {\n hasNextPage\n endCursor\n }\n nodes {\n credentials {\n protocolPubKey\n }\n votingPower\n }\n }\n }\n protocolConfigs {\n protocolVersion\n }\n epochId\n }\n }\n }\n }\n }\n }\n }\n }\n}`) as unknown as TypedDocumentString<GetCheckpointQuery, GetCheckpointQueryVariables>;\nexport const GetCheckpointsDocument = new TypedDocumentString(`\n query getCheckpoints($first: Int, $before: String, $last: Int, $after: String) {\n checkpoints(first: $first, after: $after, last: $last, before: $before) {\n pageInfo {\n startCursor\n endCursor\n hasNextPage\n hasPreviousPage\n }\n nodes {\n ...RPC_Checkpoint_Fields\n }\n }\n}\n fragment RPC_Checkpoint_Fields on Checkpoint {\n digest\n epoch {\n epochId\n }\n rollingGasSummary {\n computationCost\n computationCostBurned\n storageCost\n storageRebate\n nonRefundableStorageFee\n }\n networkTotalTransactions\n previousCheckpointDigest\n sequenceNumber\n timestamp\n validatorSignatures\n transactionBlocks {\n pageInfo {\n hasNextPage\n endCursor\n }\n nodes {\n digest\n }\n }\n endOfEpoch: transactionBlocks(last: 1, filter: {kind: SYSTEM_TX}) {\n nodes {\n kind {\n __typename\n ... on EndOfEpochTransaction {\n transactions(last: 1) {\n nodes {\n __typename\n ... on ChangeEpochTransaction {\n epoch {\n validatorSet {\n activeValidators {\n pageInfo {\n hasNextPage\n endCursor\n }\n nodes {\n credentials {\n protocolPubKey\n }\n votingPower\n }\n }\n }\n protocolConfigs {\n protocolVersion\n }\n epochId\n }\n }\n }\n }\n }\n }\n }\n }\n}`) as unknown as TypedDocumentString<GetCheckpointsQuery, GetCheckpointsQueryVariables>;\nexport const PaginateCheckpointTransactionBlocksDocument = new TypedDocumentString(`\n query paginateCheckpointTransactionBlocks($id: CheckpointId, $after: String) {\n checkpoint(id: $id) {\n transactionBlocks(after: $after) {\n pageInfo {\n hasNextPage\n endCursor\n }\n nodes {\n digest\n }\n }\n }\n}\n `) as unknown as TypedDocumentString<PaginateCheckpointTransactionBlocksQuery, PaginateCheckpointTransactionBlocksQueryVariables>;\nexport const DevInspectTransactionBlockDocument = new TypedDocumentString(`\n query devInspectTransactionBlock($txBytes: String!, $txMeta: TransactionMetadata!, $showBalanceChanges: Boolean = false, $showEffects: Boolean = false, $showRawEffects: Boolean = false, $showEvents: Boolean = false, $showInput: Boolean = false, $showObjectChanges: Boolean = false, $showRawInput: Boolean = false) {\n dryRunTransactionBlock(txBytes: $txBytes, txMeta: $txMeta) {\n error\n results {\n mutatedReferences {\n input {\n __typename\n ... on Input {\n inputIndex: ix\n }\n ... on Result {\n cmd\n resultIndex: ix\n }\n }\n type {\n repr\n }\n bcs\n }\n returnValues {\n type {\n repr\n }\n bcs\n }\n }\n transaction {\n ...RPC_TRANSACTION_FIELDS\n }\n }\n}\n fragment RPC_EVENTS_FIELDS on Event {\n sendingModule {\n package {\n address\n }\n name\n }\n sender {\n address\n }\n type {\n repr\n }\n json\n bcs\n timestamp\n}\nfragment RPC_TRANSACTION_FIELDS on TransactionBlock {\n digest\n rawTransaction: bcs @include(if: $showInput)\n rawTransaction: bcs @include(if: $showRawInput)\n sender {\n address\n }\n signatures\n effects {\n bcs @include(if: $showEffects)\n bcs @include(if: $showObjectChanges)\n bcs @include(if: $showRawEffects)\n events @include(if: $showEvents) {\n pageInfo {\n hasNextPage\n endCursor\n }\n nodes {\n ...RPC_EVENTS_FIELDS\n }\n }\n checkpoint {\n sequenceNumber\n }\n timestamp\n balanceChanges @include(if: $showBalanceChanges) {\n pageInfo {\n hasNextPage\n endCursor\n }\n nodes {\n coinType {\n repr\n }\n owner {\n asObject {\n address\n }\n asAddress {\n address\n }\n }\n amount\n }\n }\n objectChanges @include(if: $showObjectChanges) {\n pageInfo {\n hasNextPage\n endCursor\n }\n nodes {\n address\n inputState {\n version\n asMoveObject {\n contents {\n type {\n repr\n }\n }\n }\n }\n outputState {\n asMoveObject {\n contents {\n type {\n repr\n }\n }\n }\n asMovePackage {\n modules(first: 10) {\n nodes {\n name\n }\n }\n }\n }\n }\n }\n }\n}`) as unknown as TypedDocumentString<DevInspectTransactionBlockQuery, DevInspectTransactionBlockQueryVariables>;\nexport const DryRunTransactionBlockDocument = new TypedDocumentString(`\n query dryRunTransactionBlock($txBytes: String!, $showBalanceChanges: Boolean = false, $showEffects: Boolean = false, $showRawEffects: Boolean = false, $showEvents: Boolean = false, $showInput: Boolean = false, $showObjectChanges: Boolean = false, $showRawInput: Boolean = false) {\n dryRunTransactionBlock(txBytes: $txBytes) {\n error\n transaction {\n ...RPC_TRANSACTION_FIELDS\n }\n }\n}\n fragment RPC_EVENTS_FIELDS on Event {\n sendingModule {\n package {\n address\n }\n name\n }\n sender {\n address\n }\n type {\n repr\n }\n json\n bcs\n timestamp\n}\nfragment RPC_TRANSACTION_FIELDS on TransactionBlock {\n digest\n rawTransaction: bcs @include(if: $showInput)\n rawTransaction: bcs @include(if: $showRawInput)\n sender {\n address\n }\n signatures\n effects {\n bcs @include(if: $showEffects)\n bcs @include(if: $showObjectChanges)\n bcs @include(if: $showRawEffects)\n events @include(if: $showEvents) {\n pageInfo {\n hasNextPage\n endCursor\n }\n nodes {\n ...RPC_EVENTS_FIELDS\n }\n }\n checkpoint {\n sequenceNumber\n }\n timestamp\n balanceChanges @include(if: $showBalanceChanges) {\n pageInfo {\n hasNextPage\n endCursor\n }\n nodes {\n coinType {\n repr\n }\n owner {\n asObject {\n address\n }\n asAddress {\n address\n }\n }\n amount\n }\n }\n objectChanges @include(if: $showObjectChanges) {\n pageInfo {\n hasNextPage\n endCursor\n }\n nodes {\n address\n inputState {\n version\n asMoveObject {\n contents {\n type {\n repr\n }\n }\n }\n }\n outputState {\n asMoveObject {\n contents {\n type {\n repr\n }\n }\n }\n asMovePackage {\n modules(first: 10) {\n nodes {\n name\n }\n }\n }\n }\n }\n }\n }\n}`) as unknown as TypedDocumentString<DryRunTransactionBlockQuery, DryRunTransactionBlockQueryVariables>;\nexport const ExecuteTransactionBlockDocument = new TypedDocumentString(`\n mutation executeTransactionBlock($txBytes: String!, $signatures: [String!]!, $showBalanceChanges: Boolean = false, $showEffects: Boolean = false, $showRawEffects: Boolean = false, $showEvents: Boolean = false, $showInput: Boolean = false, $showObjectChanges: Boolean = false, $showRawInput: Boolean = false) {\n executeTransactionBlock(txBytes: $txBytes, signatures: $signatures) {\n errors\n effects {\n transactionBlock {\n ...RPC_TRANSACTION_FIELDS\n }\n }\n }\n}\n fragment RPC_EVENTS_FIELDS on Event {\n sendingModule {\n package {\n address\n }\n name\n }\n sender {\n address\n }\n type {\n repr\n }\n json\n bcs\n timestamp\n}\nfragment RPC_TRANSACTION_FIELDS on TransactionBlock {\n digest\n rawTransaction: bcs @include(if: $showInput)\n rawTransaction: bcs @include(if: $showRawInput)\n sender {\n address\n }\n signatures\n effects {\n bcs @include(if: $showEffects)\n bcs @include(if: $showObjectChanges)\n bcs @include(if: $showRawEffects)\n events @include(if: $showEvents) {\n pageInfo {\n hasNextPage\n endCursor\n }\n nodes {\n ...RPC_EVENTS_FIELDS\n }\n }\n checkpoint {\n sequenceNumber\n }\n timestamp\n balanceChanges @include(if: $showBalanceChanges) {\n pageInfo {\n hasNextPage\n endCursor\n }\n nodes {\n coinType {\n repr\n }\n owner {\n asObject {\n address\n }\n asAddress {\n address\n }\n }\n amount\n }\n }\n objectChanges @include(if: $showObjectChanges) {\n pageInfo {\n hasNextPage\n endCursor\n }\n nodes {\n address\n inputState {\n version\n asMoveObject {\n contents {\n type {\n repr\n }\n }\n }\n }\n outputState {\n asMoveObject {\n contents {\n type {\n repr\n }\n }\n }\n asMovePackage {\n modules(first: 10) {\n nodes {\n name\n }\n }\n }\n }\n }\n }\n }\n}`) as unknown as TypedDocumentString<ExecuteTransactionBlockMutation, ExecuteTransactionBlockMutationVariables>;\nexport const GetAllBalancesDocument = new TypedDocumentString(`\n query getAllBalances($owner: IotaAddress!, $limit: Int, $cursor: String) {\n address(address: $owner) {\n balances(first: $limit, after: $cursor) {\n pageInfo {\n hasNextPage\n endCursor\n }\n nodes {\n coinType {\n repr\n }\n coinObjectCount\n totalBalance\n }\n }\n }\n}\n `) as unknown as TypedDocumentString<GetAllBalancesQuery, GetAllBalancesQueryVariables>;\nexport const GetBalanceDocument = new TypedDocumentString(`\n query getBalance($owner: IotaAddress!, $type: String = \"0x2::iota::IOTA\") {\n address(address: $owner) {\n balance(type: $type) {\n coinType {\n repr\n }\n coinObjectCount\n totalBalance\n }\n }\n}\n `) as unknown as TypedDocumentString<GetBalanceQuery, GetBalanceQueryVariables>;\nexport const GetChainIdentifierDocument = new TypedDocumentString(`\n query getChainIdentifier {\n chainIdentifier\n}\n `) as unknown as TypedDocumentString<GetChainIdentifierQuery, GetChainIdentifierQueryVariables>;\nexport const GetCoinMetadataDocument = new TypedDocumentString(`\n query getCoinMetadata($coinType: String!) {\n coinMetadata(coinType: $coinType) {\n decimals\n name\n symbol\n description\n iconUrl\n address\n }\n}\n `) as unknown as TypedDocumentString<GetCoinMetadataQuery, GetCoinMetadataQueryVariables>;\nexport const GetCoinsDocument = new TypedDocumentString(`\n query getCoins($owner: IotaAddress!, $first: Int, $cursor: String, $type: String = \"0x2::iota::IOTA\") {\n address(address: $owner) {\n address\n coins(first: $first, after: $cursor, type: $type) {\n pageInfo {\n hasNextPage\n endCursor\n }\n nodes {\n coinBalance\n contents {\n type {\n repr\n }\n }\n address\n version\n digest\n previousTransactionBlock {\n digest\n }\n }\n }\n }\n}\n `) as unknown as TypedDocumentString<GetCoinsQuery, GetCoinsQueryVariables>;\nexport const GetCommitteeInfoDocument = new TypedDocumentString(`\n query getCommitteeInfo($epochId: UInt53, $after: String) {\n epoch(id: $epochId) {\n epochId\n validatorSet {\n activeValidators(after: $after) {\n pageInfo {\n hasNextPage\n endCursor\n }\n nodes {\n credentials {\n authorityPubKey\n }\n votingPower\n }\n }\n }\n }\n}\n `) as unknown as TypedDocumentString<GetCommitteeInfoQuery, GetCommitteeInfoQueryVariables>;\nexport const GetCurrentEpochDocument = new TypedDocumentString(`\n query getCurrentEpoch {\n epoch {\n epochId\n validatorSet {\n activeValidators {\n pageInfo {\n hasNextPage\n endCursor\n }\n nodes {\n ...RPC_VALIDATOR_FIELDS\n }\n }\n }\n totalTransactions\n firstCheckpoint: checkpoints(first: 1) {\n nodes {\n sequenceNumber\n }\n }\n startTimestamp\n endTimestamp\n referenceGasPrice\n }\n}\n fragment RPC_VALIDATOR_FIELDS on Validator {\n atRisk\n commissionRate\n exchangeRatesSize\n exchangeRates {\n contents {\n json\n }\n address\n }\n description\n gasPrice\n imageUrl\n name\n credentials {\n ...RPC_CREDENTIAL_FIELDS\n }\n nextEpochCommissionRate\n nextEpochGasPrice\n nextEpochCredentials {\n ...RPC_CREDENTIAL_FIELDS\n }\n nextEpochStake\n nextEpochCommissionRate\n operationCap {\n address\n }\n pendingPoolTokenWithdraw\n pendingStake\n pendingTotalIotaWithdraw\n poolTokenBalance\n projectUrl\n rewardsPool\n stakingPool {\n address\n }\n stakingPoolActivationEpoch\n stakingPoolIotaBalance\n address {\n address\n }\n votingPower\n}\nfragment RPC_CREDENTIAL_FIELDS on ValidatorCredentials {\n netAddress\n networkPubKey\n p2PAddress\n primaryAddress\n authorityPubKey\n proofOfPossession\n protocolPubKey\n}`) as unknown as TypedDocumentString<GetCurrentEpochQuery, GetCurrentEpochQueryVariables>;\nexport const PaginateEpochValidatorsDocument = new TypedDocumentString(`\n query paginateEpochValidators($id: UInt53!, $after: String) {\n epoch(id: $id) {\n validatorSet {\n activeValidators(after: $after) {\n pageInfo {\n hasNextPage\n endCursor\n }\n nodes {\n ...RPC_VALIDATOR_FIELDS\n }\n }\n }\n }\n}\n fragment RPC_VALIDATOR_FIELDS on Validator {\n atRisk\n commissionRate\n exchangeRatesSize\n exchangeRates {\n contents {\n json\n }\n address\n }\n description\n gasPrice\n imageUrl\n name\n credentials {\n ...RPC_CREDENTIAL_FIELDS\n }\n nextEpochCommissionRate\n nextEpochGasPrice\n nextEpochCredentials {\n ...RPC_CREDENTIAL_FIELDS\n }\n nextEpochStake\n nextEpochCommissionRate\n operationCap {\n address\n }\n pendingPoolTokenWithdraw\n pendingStake\n pendingTotalIotaWithdraw\n poolTokenBalance\n projectUrl\n rewardsPool\n stakingPool {\n address\n }\n stakingPoolActivationEpoch\n stakingPoolIotaBalance\n address {\n address\n }\n votingPower\n}\nfragment RPC_CREDENTIAL_FIELDS on ValidatorCredentials {\n netAddress\n networkPubKey\n p2PAddress\n primaryAddress\n authorityPubKey\n proofOfPossession\n protocolPubKey\n}`) as unknown as TypedDocumentString<PaginateEpochValidatorsQuery, PaginateEpochValidatorsQueryVariables>;\nexport const GetTypeLayoutDocument = new TypedDocumentString(`\n query getTypeLayout($type: String!) {\n type(type: $type) {\n layout\n }\n}\n `) as unknown as TypedDocumentString<GetTypeLayoutQuery, GetTypeLayoutQueryVariables>;\nexport const GetDynamicFieldObjectDocument = new TypedDocumentString(`\n query getDynamicFieldObject($parentId: IotaAddress!, $name: DynamicFieldName!) {\n owner(address: $parentId) {\n dynamicObjectField(name: $name) {\n value {\n __typename\n ... on MoveObject {\n owner {\n __typename\n ... on Parent {\n parent {\n address\n digest\n version\n storageRebate\n owner {\n __typename\n ... on Parent {\n parent {\n address\n }\n }\n }\n previousTransactionBlock {\n digest\n }\n asMoveObject {\n contents {\n data\n type {\n repr\n layout\n }\n }\n }\n }\n }\n }\n }\n }\n }\n }\n}\n `) as unknown as TypedDocumentString<GetDynamicFieldObjectQuery, GetDynamicFieldObjectQueryVariables>;\nexport const GetDynamicFieldsDocument = new TypedDocumentString(`\n query getDynamicFields($parentId: IotaAddress!, $first: Int, $cursor: String) {\n owner(address: $parentId) {\n dynamicFields(first: $first, after: $cursor) {\n pageInfo {\n hasNextPage\n endCursor\n }\n nodes {\n name {\n bcs\n json\n type {\n layout\n repr\n }\n }\n value {\n __typename\n ... on MoveValue {\n json\n type {\n repr\n }\n }\n ... on MoveObject {\n contents {\n type {\n repr\n }\n json\n }\n address\n digest\n version\n }\n }\n }\n }\n }\n}\n `) as unknown as TypedDocumentString<GetDynamicFieldsQuery, GetDynamicFieldsQueryVariables>;\nexport const GetLatestCheckpointSequenceNumberDocument = new TypedDocumentString(`\n query getLatestCheckpointSequenceNumber {\n checkpoint {\n sequenceNumber\n }\n}\n `) as unknown as TypedDocumentString<GetLatestCheckpointSequenceNumberQuery, GetLatestCheckpointSequenceNumberQueryVariables>;\nexport const GetLatestIotaSystemStateDocument = new TypedDocumentString(`\n query getLatestIotaSystemState {\n epoch {\n epochId\n startTimestamp\n endTimestamp\n referenceGasPrice\n safeMode {\n enabled\n gasSummary {\n computationCost\n computationCostBurned\n nonRefundableStorageFee\n storageCost\n storageRebate\n }\n }\n storageFund {\n nonRefundableBalance\n totalObjectStorageRebates\n }\n systemStateVersion\n iotaTotalSupply\n iotaTreasuryCapId\n systemParameters {\n minValidatorCount\n maxValidatorCount\n minValidatorJoiningStake\n durationMs\n validatorLowStakeThreshold\n validatorLowStakeGracePeriod\n validatorVeryLowStakeThreshold\n }\n protocolConfigs {\n protocolVersion\n }\n validatorSet {\n activeValidators {\n pageInfo {\n hasNextPage\n endCursor\n }\n nodes {\n ...RPC_VALIDATOR_FIELDS\n }\n }\n inactivePoolsSize\n pendingActiveValidatorsSize\n stakingPoolMappingsSize\n validatorCandidatesSize\n pendingRemovals\n totalStake\n stakingPoolMappingsId\n pendingActiveValidatorsId\n validatorCandidatesId\n inactivePoolsId\n }\n }\n}\n fragment RPC_VALIDATOR_FIELDS on Validator {\n atRisk\n commissionRate\n exchangeRatesSize\n exchangeRates {\n contents {\n json\n }\n address\n }\n description\n gasPrice\n imageUrl\n name\n credentials {\n ...RPC_CREDENTIAL_FIELDS\n }\n nextEpochCommissionRate\n nextEpochGasPrice\n nextEpochCredentials {\n ...RPC_CREDENTIAL_FIELDS\n }\n nextEpochStake\n nextEpochCommissionRate\n operationCap {\n address\n }\n pendingPoolTokenWithdraw\n pendingStake\n pendingTotalIotaWithdraw\n poolTokenBalance\n projectUrl\n rewardsPool\n stakingPool {\n address\n }\n stakingPoolActivationEpoch\n stakingPoolIotaBalance\n address {\n address\n }\n votingPower\n}\nfragment RPC_CREDENTIAL_FIELDS on ValidatorCredentials {\n netAddress\n networkPubKey\n p2PAddress\n primaryAddress\n authorityPubKey\n proofOfPossession\n protocolPubKey\n}`) as unknown as TypedDocumentString<GetLatestIotaSystemStateQuery, GetLatestIotaSystemStateQueryVariables>;\nexport const GetMoveFunctionArgTypesDocument = new TypedDocumentString(`\n query getMoveFunctionArgTypes($packageId: IotaAddress!, $module: String!, $function: String!) {\n object(address: $packageId) {\n asMovePackage {\n module(name: $module) {\n fileFormatVersion\n function(name: $function) {\n parameters {\n signature\n }\n }\n }\n }\n }\n}\n `) as unknown as TypedDocumentString<GetMoveFunctionArgTypesQuery, GetMoveFunctionArgTypesQueryVariables>;\nexport const GetNormalizedMoveFunctionDocument = new TypedDocumentString(`\n query getNormalizedMoveFunction($packageId: IotaAddress!, $module: String!, $function: String!) {\n object(address: $packageId) {\n address\n asMovePackage {\n module(name: $module) {\n fileFormatVersion\n function(name: $function) {\n ...RPC_MOVE_FUNCTION_FIELDS\n }\n }\n }\n }\n}\n fragment RPC_MOVE_FUNCTION_FIELDS on MoveFunction {\n name\n visibility\n isEntry\n parameters {\n signature\n }\n typeParameters {\n constraints\n }\n return {\n repr\n signature\n }\n}`) as unknown as TypedDocumentString<GetNormalizedMoveFunctionQuery, GetNormalizedMoveFunctionQueryVariables>;\nexport const GetNormalizedMoveModuleDocument = new TypedDocumentString(`\n query getNormalizedMoveModule($packageId: IotaAddress!, $module: String!) {\n object(address: $packageId) {\n asMovePackage {\n module(name: $module) {\n ...RPC_MOVE_MODULE_FIELDS\n }\n }\n }\n}\n fragment RPC_MOVE_FUNCTION_FIELDS on MoveFunction {\n name\n visibility\n isEntry\n parameters {\n signature\n }\n typeParameters {\n constraints\n }\n return {\n repr\n signature\n }\n}\nfragment RPC_MOVE_MODULE_FIELDS on MoveModule {\n name\n friends {\n pageInfo {\n hasNextPage\n endCursor\n }\n nodes {\n name\n package {\n address\n }\n }\n }\n structs {\n pageInfo {\n hasNextPage\n endCursor\n }\n nodes {\n ...RPC_MOVE_STRUCT_FIELDS\n }\n }\n fileFormatVersion\n functions {\n pageInfo {\n hasNextPage\n endCursor\n }\n nodes {\n ...RPC_MOVE_FUNCTION_FIELDS\n }\n }\n}\nfragment RPC_MOVE_STRUCT_FIELDS on MoveStruct {\n name\n abilities\n fields {\n name\n type {\n signature\n }\n }\n typeParameters {\n isPhantom\n constraints\n }\n}`) as unknown as TypedDocumentString<GetNormalizedMoveModuleQuery, GetNormalizedMoveModuleQueryVariables>;\nexport const PaginateMoveModuleListsDocument = new TypedDocumentString(`\n query paginateMoveModuleLists($packageId: IotaAddress!, $module: String!, $hasMoreFriends: Boolean!, $hasMoreStructs: Boolean!, $hasMoreFunctions: Boolean!, $afterFriends: String, $afterStructs: String, $afterFunctions: String) {\n object(address: $packageId) {\n asMovePackage {\n module(name: $module) {\n friends(after: $afterFriends) @include(if: $hasMoreFriends) {\n pageInfo {\n hasNextPage\n endCursor\n }\n nodes {\n name\n package {\n address\n }\n }\n }\n structs(after: $afterStructs) @include(if: $hasMoreStructs) {\n pageInfo {\n hasNextPage\n endCursor\n }\n nodes {\n ...RPC_MOVE_STRUCT_FIELDS\n }\n }\n functions(after: $afterFunctions) @include(if: $hasMoreFunctions) {\n pageInfo {\n hasNextPage\n endCursor\n }\n nodes {\n ...RPC_MOVE_FUNCTION_FIELDS\n }\n }\n }\n }\n }\n}\n fragment RPC_MOVE_FUNCTION_FIELDS on MoveFunction {\n name\n visibility\n isEntry\n parameters {\n signature\n }\n typeParameters {\n constraints\n }\n return {\n repr\n signature\n }\n}\nfragment RPC_MOVE_STRUCT_FIELDS on MoveStruct {\n name\n abilities\n fields {\n name\n type {\n signature\n }\n }\n typeParameters {\n isPhantom\n constraints\n }\n}`) as unknown as TypedDocumentString<PaginateMoveModuleListsQuery, PaginateMoveModuleListsQueryVariables>;\nexport const GetNormalizedMoveModulesByPackageDocument = new TypedDocumentString(`\n query getNormalizedMoveModulesByPackage($packageId: IotaAddress!, $cursor: String) {\n object(address: $packageId) {\n asMovePackage {\n address\n modules(after: $cursor) {\n pageInfo {\n hasNextPage\n endCursor\n }\n nodes {\n ...RPC_MOVE_MODULE_FIELDS\n }\n }\n }\n }\n}\n fragment RPC_MOVE_FUNCTION_FIELDS on MoveFunction {\n name\n visibility\n isEntry\n parameters {\n signature\n }\n typeParameters {\n constraints\n }\n return {\n repr\n signature\n }\n}\nfragment RPC_MOVE_MODULE_FIELDS on MoveModule {\n name\n friends {\n pageInfo {\n hasNextPage\n endCursor\n }\n nodes {\n name\n package {\n address\n }\n }\n }\n structs {\n pageInfo {\n hasNextPage\n endCursor\n }\n nodes {\n ...RPC_MOVE_STRUCT_FIELDS\n }\n }\n fileFormatVersion\n functions {\n pageInfo {\n hasNextPage\n endCursor\n }\n nodes {\n ...RPC_MOVE_FUNCTION_FIELDS\n }\n }\n}\nfragment RPC_MOVE_STRUCT_FIELDS on MoveStruct {\n name\n abilities\n fields {\n name\n type {\n signature\n }\n }\n typeParameters {\n isPhantom\n constraints\n }\n}`) as unknown as TypedDocumentString<GetNormalizedMoveModulesByPackageQuery, GetNormalizedMoveModulesByPackageQueryVariables>;\nexport const GetNormalizedMoveStructDocument = new TypedDocumentString(`\n query getNormalizedMoveStruct($packageId: IotaAddress!, $module: String!, $struct: String!) {\n object(address: $packageId) {\n asMovePackage {\n address\n module(name: $module) {\n fileFormatVersion\n struct(name: $struct) {\n ...RPC_MOVE_STRUCT_FIELDS\n }\n }\n }\n }\n}\n fragment RPC_MOVE_STRUCT_FIELDS on MoveStruct {\n name\n abilities\n fields {\n name\n type {\n signature\n }\n }\n typeParameters {\n isPhantom\n constraints\n }\n}`) as unknown as TypedDocumentString<GetNormalizedMoveStructQuery, GetNormalizedMoveStructQueryVariables>;\nexport const GetProtocolConfigDocument = new TypedDocumentString(`\n query getProtocolConfig($protocolVersion: UInt53) {\n protocolConfig(protocolVersion: $protocolVersion) {\n protocolVersion\n configs {\n key\n value\n }\n featureFlags {\n key\n value\n }\n }\n}\n `) as unknown as TypedDocumentString<GetProtocolConfigQuery, GetProtocolConfigQueryVariables>;\nexport const GetReferenceGasPriceDocument = new TypedDocumentString(`\n query getReferenceGasPrice {\n epoch {\n referenceGasPrice\n }\n}\n `) as unknown as TypedDocumentString<GetReferenceGasPriceQuery, GetReferenceGasPriceQueryVariables>;\nexport const GetTotalSupplyDocument = new TypedDocumentString(`\n query getTotalSupply($coinType: String!) {\n coinMetadata(coinType: $coinType) {\n supply\n decimals\n }\n}\n `) as unknown as TypedDocumentString<GetTotalSupplyQuery, GetTotalSupplyQueryVariables>;\nexport const GetTotalTransactionBlocksDocument = new TypedDocumentString(`\n query getTotalTransactionBlocks {\n checkpoint {\n networkTotalTransactions\n }\n}\n `) as unknown as TypedDocumentString<GetTotalTransactionBlocksQuery, GetTotalTransactionBlocksQueryVariables>;\nexport const GetValidatorsApyDocument = new TypedDocumentString(`\n query getValidatorsApy {\n epoch {\n epochId\n validatorSet {\n activeValidators {\n pageInfo {\n hasNextPage\n endCursor\n }\n nodes {\n address {\n address\n }\n apy\n }\n }\n }\n }\n}\n `) as unknown as TypedDocumentString<GetValidatorsApyQuery, GetValidatorsApyQueryVariables>;\nexport const GetOwnedObjectsDocument = new TypedDocumentString(`\n query getOwnedObjects($owner: IotaAddress!, $limit: Int, $cursor: String, $showBcs: Boolean = false, $showContent: Boolean = false, $showDisplay: Boolean = false, $showType: Boolean = false, $showOwner: Boolean = false, $showPreviousTransaction: Boolean = false, $showStorageRebate: Boolean = false, $filter: ObjectFilter) {\n address(address: $owner) {\n objects(first: $limit, after: $cursor, filter: $filter) {\n pageInfo {\n hasNextPage\n endCursor\n }\n nodes {\n ...RPC_MOVE_OBJECT_FIELDS\n }\n }\n }\n}\n fragment RPC_MOVE_OBJECT_FIELDS on MoveObject {\n objectId: address\n bcs @include(if: $showBcs)\n contents @include(if: $showType) {\n type {\n repr\n }\n }\n contents @include(if: $showContent) {\n data\n type {\n repr\n layout\n signature\n }\n }\n contents @include(if: $showBcs) {\n bcs\n type {\n repr\n }\n }\n owner @include(if: $showOwner) {\n ...RPC_OBJECT_OWNER_FIELDS\n }\n previousTransactionBlock @include(if: $showPreviousTransaction) {\n digest\n }\n storageRebate @include(if: $showStorageRebate)\n digest\n version\n display @include(if: $showDisplay) {\n key\n value\n error\n }\n}\nfragment RPC_OBJECT_OWNER_FIELDS on ObjectOwner {\n __typename\n ... on AddressOwner {\n owner {\n asObject {\n address\n }\n asAddress {\n address\n }\n }\n }\n ... on Parent {\n parent {\n address\n }\n }\n ... on Shared {\n initialSharedVersion\n }\n}`) as unknown as TypedDocumentString<GetOwnedObjectsQuery, GetOwnedObjectsQueryVariables>;\nexport const GetObjectDocument = new TypedDocumentString(`\n query getObject($id: IotaAddress!, $showBcs: Boolean = false, $showOwner: Boolean = false, $showPreviousTransaction: Boolean = false, $showContent: Boolean = false, $showDisplay: Boolean = false, $showType: Boolean = false, $showStorageRebate: Boolean = false) {\n object(address: $id) {\n ...RPC_OBJECT_FIELDS\n }\n}\n fragment RPC_OBJECT_FIELDS on Object {\n objectId: address\n version\n asMoveObject @include(if: $showType) {\n contents {\n type {\n repr\n }\n }\n }\n asMoveObject @include(if: $showContent) {\n contents {\n data\n type {\n repr\n layout\n signature\n }\n }\n }\n asMoveObject @include(if: $showBcs) {\n contents {\n bcs\n type {\n repr\n }\n }\n }\n owner @include(if: $showOwner) {\n ...RPC_OBJECT_OWNER_FIELDS\n }\n previousTransactionBlock @include(if: $showPreviousTransaction) {\n digest\n }\n storageRebate @include(if: $showStorageRebate)\n digest\n version\n display @include(if: $showDisplay) {\n key\n value\n error\n }\n}\nfragment RPC_OBJECT_OWNER_FIELDS on ObjectOwner {\n __typename\n ... on AddressOwner {\n owner {\n asObject {\n address\n }\n asAddress {\n address\n }\n }\n }\n ... on Parent {\n parent {\n address\n }\n }\n ... on Shared {\n initialSharedVersion\n }\n}`) as unknown as TypedDocumentString<GetObjectQuery, GetObjectQueryVariables>;\nexport const TryGetPastObjectDocument = new TypedDocumentString(`\n query tryGetPastObject($id: IotaAddress!, $version: UInt53, $showBcs: Boolean = false, $showOwner: Boolean = false, $showPreviousTransaction: Boolean = false, $showContent: Boolean = false, $showDisplay: Boolean = false, $showType: Boolean = false, $showStorageRebate: Boolean = false) {\n current: object(address: $id) {\n address\n version\n }\n object(address: $id, version: $version) {\n ...RPC_OBJECT_FIELDS\n }\n}\n fragment RPC_OBJECT_FIELDS on Object {\n objectId: address\n version\n asMoveObject @include(if: $showType) {\n contents {\n type {\n repr\n }\n }\n }\n asMoveObject @include(if: $showContent) {\n contents {\n data\n type {\n repr\n layout\n signature\n }\n }\n }\n asMoveObject @include(if: $showBcs) {\n contents {\n bcs\n type {\n repr\n }\n }\n }\n owner @include(if: $showOwner) {\n ...RPC_OBJECT_OWNER_FIELDS\n }\n previousTransactionBlock @include(if: $showPreviousTransaction) {\n digest\n }\n storageRebate @include(if: $showStorageRebate)\n digest\n version\n display @include(if: $showDisplay) {\n key\n value\n error\n }\n}\nfragment RPC_OBJECT_OWNER_FIELDS on ObjectOwner {\n __typename\n ... on AddressOwner {\n owner {\n asObject {\n address\n }\n asAddress {\n address\n }\n }\n }\n ... on Parent {\n parent {\n address\n }\n }\n ... on Shared {\n initialSharedVersion\n }\n}`) as unknown as TypedDocumentString<TryGetPastObjectQuery, TryGetPastObjectQueryVariables>;\nexport const MultiGetObjectsDocument = new TypedDocumentString(`\n query multiGetObjects($ids: [IotaAddress!]!, $limit: Int, $cursor: String, $showBcs: Boolean = false, $showContent: Boolean = false, $showDisplay: Boolean = false, $showType: Boolean = false, $showOwner: Boolean = false, $showPreviousTransaction: Boolean = false, $showStorageRebate: Boolean = false) {\n objects(first: $limit, after: $cursor, filter: {objectIds: $ids}) {\n pageInfo {\n hasNextPage\n endCursor\n }\n nodes {\n ...RPC_OBJECT_FIELDS\n }\n }\n}\n fragment RPC_OBJECT_FIELDS on Object {\n objectId: address\n version\n asMoveObject @include(if: $showType) {\n contents {\n type {\n repr\n }\n }\n }\n asMoveObject @include(if: $showContent) {\n contents {\n data\n type {\n repr\n layout\n signature\n }\n }\n }\n asMoveObject @include(if: $showBcs) {\n contents {\n bcs\n type {\n repr\n }\n }\n }\n owner @include(if: $showOwner) {\n ...RPC_OBJECT_OWNER_FIELDS\n }\n previousTransactionBlock @include(if: $showPreviousTransaction) {\n digest\n }\n storageRebate @include(if: $showStorageRebate)\n digest\n version\n display @include(if: $showDisplay) {\n key\n value\n error\n }\n}\nfragment RPC_OBJECT_OWNER_FIELDS on ObjectOwner {\n __typename\n ... on AddressOwner {\n owner {\n asObject {\n address\n }\n asAddress {\n address\n }\n }\n }\n ... on Parent {\n parent {\n address\n }\n }\n ... on Shared {\n initialSharedVersion\n }\n}`) as unknown as TypedDocumentString<MultiGetObjectsQuery, MultiGetObjectsQueryVariables>;\nexport const QueryEventsDocument = new TypedDocumentString(`\n query queryEvents($filter: EventFilter!, $before: String, $after: String, $first: Int, $last: Int) {\n events(\n filter: $filter\n first: $first\n after: $after\n last: $last\n before: $before\n ) {\n pageInfo {\n hasNextPage\n hasPreviousPage\n endCursor\n startCursor\n }\n nodes {\n ...RPC_EVENTS_FIELDS\n }\n }\n}\n fragment RPC_EVENTS_FIELDS on Event {\n sendingModule {\n package {\n address\n }\n name\n }\n sender {\n address\n }\n type {\n repr\n }\n json\n bcs\n timestamp\n}`) as unknown as TypedDocumentString<QueryEventsQuery, QueryEventsQueryVariables>;\nexport const GetStakesDocument = new TypedDocumentString(`\n query getStakes($owner: IotaAddress!, $limit: Int, $cursor: String) {\n address(address: $owner) {\n stakedIotas(first: $limit, after: $cursor) {\n pageInfo {\n hasNextPage\n endCursor\n }\n nodes {\n ...RPC_STAKE_FIELDS\n }\n }\n }\n}\n fragment RPC_STAKE_FIELDS on StakedIota {\n principal\n activatedEpoch {\n epochId\n referenceGasPrice\n }\n stakeStatus\n requestedEpoch {\n epochId\n }\n activatedEpoch {\n epochId\n }\n contents {\n json\n }\n address\n estimatedReward\n}`) as unknown as TypedDocumentString<GetStakesQuery, GetStakesQueryVariables>;\nexport const GetStakesByIdsDocument = new TypedDocumentString(`\n query getStakesByIds($ids: [IotaAddress!]!, $limit: Int, $cursor: String) {\n objects(first: $limit, after: $cursor, filter: {objectIds: $ids}) {\n pageInfo {\n hasNextPage\n endCursor\n }\n nodes {\n asMoveObject {\n asStakedIota {\n ...RPC_STAKE_FIELDS\n }\n }\n }\n }\n}\n fragment RPC_STAKE_FIELDS on StakedIota {\n principal\n activatedEpoch {\n epochId\n referenceGasPrice\n }\n stakeStatus\n requestedEpoch {\n epochId\n }\n activatedEpoch {\n epochId\n }\n contents {\n json\n }\n address\n estimatedReward\n}`) as unknown as TypedDocumentString<GetStakesByIdsQuery, GetStakesByIdsQueryVariables>;\nexport const QueryTransactionBlocksDocument = new TypedDocumentString(`\n query queryTransactionBlocks($first: Int, $last: Int, $before: String, $after: String, $showBalanceChanges: Boolean = false, $showEffects: Boolean = false, $showRawEffects: Boolean = false, $showEvents: Boolean = false, $showInput: Boolean = false, $showObjectChanges: Boolean = false, $showRawInput: Boolean = false, $filter: TransactionBlockFilter) {\n transactionBlocks(\n first: $first\n after: $after\n last: $last\n before: $before\n filter: $filter\n ) {\n pageInfo {\n hasNextPage\n hasPreviousPage\n startCursor\n endCursor\n }\n nodes {\n ...RPC_TRANSACTION_FIELDS\n }\n }\n}\n fragment RPC_EVENTS_FIELDS on Event {\n sendingModule {\n package {\n address\n }\n name\n }\n sender {\n address\n }\n type {\n repr\n }\n json\n bcs\n timestamp\n}\nfragment RPC_TRANSACTION_FIELDS on TransactionBlock {\n digest\n rawTransaction: bcs @include(if: $showInput)\n rawTransaction: bcs @include(if: $showRawInput)\n sender {\n address\n }\n signatures\n effects {\n bcs @include(if: $showEffects)\n bcs @include(if: $showObjectChanges)\n bcs @include(if: $showRawEffects)\n events @include(if: $showEvents) {\n pageInfo {\n hasNextPage\n endCursor\n }\n nodes {\n ...RPC_EVENTS_FIELDS\n }\n }\n checkpoint {\n sequenceNumber\n }\n timestamp\n balanceChanges @include(if: $showBalanceChanges) {\n pageInfo {\n hasNextPage\n endCursor\n }\n nodes {\n coinType {\n repr\n }\n owner {\n asObject {\n address\n }\n asAddress {\n address\n }\n }\n amount\n }\n }\n objectChanges @include(if: $showObjectChanges) {\n pageInfo {\n hasNextPage\n endCursor\n }\n nodes {\n address\n inputState {\n version\n asMoveObject {\n contents {\n type {\n repr\n }\n }\n }\n }\n outputState {\n asMoveObject {\n contents {\n type {\n repr\n }\n }\n }\n asMovePackage {\n modules(first: 10) {\n nodes {\n name\n }\n }\n }\n }\n }\n }\n }\n}`) as unknown as TypedDocumentString<QueryTransactionBlocksQuery, QueryTransactionBlocksQueryVariables>;\nexport const GetTransactionBlockDocument = new TypedDocumentString(`\n query getTransactionBlock($digest: String!, $showBalanceChanges: Boolean = false, $showEffects: Boolean = false, $showRawEffects: Boolean = false, $showEvents: Boolean = false, $showInput: Boolean = false, $showObjectChanges: Boolean = false, $showRawInput: Boolean = false) {\n transactionBlock(digest: $digest) {\n ...RPC_TRANSACTION_FIELDS\n }\n}\n fragment RPC_EVENTS_FIELDS on Event {\n sendingModule {\n package {\n address\n }\n name\n }\n sender {\n address\n }\n type {\n repr\n }\n json\n bcs\n timestamp\n}\nfragment RPC_TRANSACTION_FIELDS on TransactionBlock {\n digest\n rawTransaction: bcs @include(if: $showInput)\n rawTransaction: bcs @include(if: $showRawInput)\n sender {\n address\n }\n signatures\n effects {\n bcs @include(if: $showEffects)\n bcs @include(if: $showObjectChanges)\n bcs @include(if: $showRawEffects)\n events @include(if: $showEvents) {\n pageInfo {\n hasNextPage\n endCursor\n }\n nodes {\n ...RPC_EVENTS_FIELDS\n }\n }\n checkpoint {\n sequenceNumber\n }\n timestamp\n balanceChanges @include(if: $showBalanceChanges) {\n pageInfo {\n hasNextPage\n endCursor\n }\n nodes {\n coinType {\n repr\n }\n owner {\n asObject {\n address\n }\n asAddress {\n address\n }\n }\n amount\n }\n }\n objectChanges @include(if: $showObjectChanges) {\n pageInfo {\n hasNextPage\n endCursor\n }\n nodes {\n address\n inputState {\n version\n asMoveObject {\n contents {\n type {\n repr\n }\n }\n }\n }\n outputState {\n asMoveObject {\n contents {\n type {\n repr\n }\n }\n }\n asMovePackage {\n modules(first: 10) {\n nodes {\n name\n }\n }\n }\n }\n }\n }\n }\n}`) as unknown as TypedDocumentString<GetTransactionBlockQuery, GetTransactionBlockQueryVariables>;\nexport const MultiGetTransactionBlocksDocument = new TypedDocumentString(`\n query multiGetTransactionBlocks($digests: [String!]!, $limit: Int, $cursor: String, $showBalanceChanges: Boolean = false, $showEffects: Boolean = false, $showRawEffects: Boolean = false, $showEvents: Boolean = false, $showInput: Boolean = false, $showObjectChanges: Boolean = false, $showRawInput: Boolean = false) {\n transactionBlocks(\n first: $limit\n after: $cursor\n filter: {transactionIds: $digests}\n ) {\n pageInfo {\n hasNextPage\n hasPreviousPage\n startCursor\n endCursor\n }\n nodes {\n ...RPC_TRANSACTION_FIELDS\n }\n }\n}\n fragment RPC_EVENTS_FIELDS on Event {\n sendingModule {\n package {\n address\n }\n name\n }\n sender {\n address\n }\n type {\n repr\n }\n json\n bcs\n timestamp\n}\nfragment RPC_TRANSACTION_FIELDS on TransactionBlock {\n digest\n rawTransaction: bcs @include(if: $showInput)\n rawTransaction: bcs @include(if: $showRawInput)\n sender {\n address\n }\n signatures\n effects {\n bcs @include(if: $showEffects)\n bcs @include(if: $showObjectChanges)\n bcs @include(if: $showRawEffects)\n events @include(if: $showEvents) {\n pageInfo {\n hasNextPage\n endCursor\n }\n nodes {\n ...RPC_EVENTS_FIELDS\n }\n }\n checkpoint {\n sequenceNumber\n }\n timestamp\n balanceChanges @include(if: $showBalanceChanges) {\n pageInfo {\n hasNextPage\n endCursor\n }\n nodes {\n coinType {\n repr\n }\n owner {\n asObject {\n address\n }\n asAddress {\n address\n }\n }\n amount\n }\n }\n objectChanges @include(if: $showObjectChanges) {\n pageInfo {\n hasNextPage\n endCursor\n }\n nodes {\n address\n inputState {\n version\n asMoveObject {\n contents {\n type {\n repr\n }\n }\n }\n }\n outputState {\n asMoveObject {\n contents {\n type {\n repr\n }\n }\n }\n asMovePackage {\n modules(first: 10) {\n nodes {\n name\n }\n }\n }\n }\n }\n }\n }\n}`) as unknown as TypedDocumentString<MultiGetTransactionBlocksQuery, MultiGetTransactionBlocksQueryVariables>;\nexport const PaginateTransactionBlockListsDocument = new TypedDocumentString(`\n query paginateTransactionBlockLists($digest: String!, $hasMoreEvents: Boolean!, $hasMoreBalanceChanges: Boolean!, $hasMoreObjectChanges: Boolean!, $afterEvents: String, $afterBalanceChanges: String, $afterObjectChanges: String) {\n transactionBlock(digest: $digest) {\n ...PAGINATE_TRANSACTION_LISTS\n }\n}\n fragment RPC_EVENTS_FIELDS on Event {\n sendingModule {\n package {\n address\n }\n name\n }\n sender {\n address\n }\n type {\n repr\n }\n json\n bcs\n timestamp\n}\nfragment PAGINATE_TRANSACTION_LISTS on TransactionBlock {\n effects {\n events(after: $afterEvents) @include(if: $hasMoreEvents) {\n pageInfo {\n hasNextPage\n endCursor\n }\n nodes {\n ...RPC_EVENTS_FIELDS\n }\n }\n balanceChanges(after: $afterBalanceChanges) @include(if: $hasMoreBalanceChanges) {\n pageInfo {\n hasNextPage\n endCursor\n }\n nodes {\n coinType {\n repr\n }\n owner {\n asObject {\n address\n }\n asAddress {\n address\n }\n }\n amount\n }\n }\n objectChanges(after: $afterObjectChanges) @include(if: $hasMoreObjectChanges) {\n pageInfo {\n hasNextPage\n endCursor\n }\n nodes {\n address\n inputState {\n version\n asMoveObject {\n contents {\n type {\n repr\n }\n }\n }\n }\n outputState {\n asMoveObject {\n contents {\n type {\n repr\n }\n }\n }\n asMovePackage {\n modules(first: 10) {\n nodes {\n name\n }\n }\n }\n }\n }\n }\n }\n}`) as unknown as TypedDocumentString<PaginateTransactionBlockListsQuery, PaginateTransactionBlockListsQueryVariables>;"],
|
|
5
5
|
"mappings": ";;;;;;;;;;;;;;;;;;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAwUO,IAAK,sCAAL,kBAAKA,yCAAL;AAEL,EAAAA,qCAAA,UAAO;AAEP,EAAAA,qCAAA,UAAO;AAJG,SAAAA;AAAA,GAAA;AA6pCL,IAAK,kBAAL,kBAAKC,qBAAL;AAEL,EAAAA,iBAAA,aAAU;AAEV,EAAAA,iBAAA,aAAU;AAJA,SAAAA;AAAA,GAAA;AAWL,IAAK,UAAL,kBAAKC,aAAL;AAKL,EAAAA,SAAA,eAAY;AAEZ,EAAAA,SAAA,WAAQ;AAER,EAAAA,SAAA,mBAAgB;AAEhB,EAAAA,SAAA,mBAAgB;AAKhB,EAAAA,SAAA,iBAAc;AAhBJ,SAAAA;AAAA,GAAA;AAuZL,IAAK,cAAL,kBAAKC,iBAAL;AAEL,EAAAA,aAAA,UAAO;AAEP,EAAAA,aAAA,UAAO;AAEP,EAAAA,aAAA,SAAM;AAEN,EAAAA,aAAA,WAAQ;AARE,SAAAA;AAAA,GAAA;AA6/BL,IAAK,iBAAL,kBAAKC,oBAAL;AAML,EAAAA,gBAAA,YAAS;AAET,EAAAA,gBAAA,aAAU;AAEV,EAAAA,gBAAA,YAAS;AAVC,SAAAA;AAAA,GAAA;AAkYL,IAAK,aAAL,kBAAKC,gBAAL;AAEL,EAAAA,YAAA,aAAU;AAKV,EAAAA,YAAA,gBAAa;AAKb,EAAAA,YAAA,sBAAmB;AAZT,SAAAA;AAAA,GAAA;AAo8BL,IAAK,cAAL,kBAAKC,iBAAL;AAKL,EAAAA,aAAA,YAAS;AAET,EAAAA,aAAA,aAAU;AAEV,EAAAA,aAAA,cAAW;AATD,SAAAA;AAAA,GAAA;AA2eL,IAAK,4BAAL,kBAAKC,+BAAL;AAEL,EAAAA,2BAAA,oBAAiB;AAKjB,EAAAA,2BAAA,cAAW;AAPD,SAAAA;AAAA,GAAA;AAmTL,IAAK,qBAAL,kBAAKC,wBAAL;AAEL,EAAAA,oBAAA,qBAAkB;AAElB,EAAAA,oBAAA,qBAAkB;AAJR,SAAAA;AAAA,GAAA;AAmcL,MAAM,4BACH,OAEV;AAAA,EAGE,YAAoB,OAAsB,UAAgC;AACxE,UAAM,KAAK;AADO;AAAsB;AAAA,EAE1C;AAAA,EAEA,WAAiE;AAC/D,WAAO,KAAK;AAAA,EACd;AACF;AACO,MAAM,mCAAmC,IAAI,oBAAoB;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA,OAgEjE,EAAC,gBAAe,wBAAuB,CAAC;AACxC,MAAM,mCAAmC,IAAI,oBAAoB;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA,OAUjE,EAAC,gBAAe,wBAAuB,CAAC;AACxC,MAAM,kCAAkC,IAAI,oBAAoB;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA,IAoDnE,EAAC,gBAAe,uBAAsB,CAAC;AACpC,MAAM,oCAAoC,IAAI,oBAAoB;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA,OAelE,EAAC,gBAAe,yBAAwB,CAAC;AACzC,MAAM,sCAAsC,IAAI,oBAAoB;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA,OAgBpE,EAAC,gBAAe,2BAA0B,CAAC;AAC3C,MAAM,oCAAoC,IAAI,oBAAoB;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA,IA+DrE,EAAC,gBAAe,yBAAwB,CAAC;AACtC,MAAM,qCAAqC,IAAI,oBAAoB;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA,OAsBnE,EAAC,gBAAe,0BAAyB,CAAC;AAC1C,MAAM,+BAA+B,IAAI,oBAAoB;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA,IAgEhE,EAAC,gBAAe,oBAAmB,CAAC;AACjC,MAAM,oCAAoC,IAAI,oBAAoB;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA,IA0DrE,EAAC,gBAAe,yBAAwB,CAAC;AACtC,MAAM,8BAA8B,IAAI,oBAAoB;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA,OAoB5D,EAAC,gBAAe,mBAAkB,CAAC;AACnC,MAAM,+BAA+B,IAAI,oBAAoB;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA,OAkB7D,EAAC,gBAAe,oBAAmB,CAAC;AACpC,MAAM,wCAAwC,IAAI,oBAAoB;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA,IAqFzE,EAAC,gBAAe,6BAA4B,CAAC;AAC1C,MAAM,oCAAoC,IAAI,oBAAoB;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA,IAmGrE,EAAC,gBAAe,yBAAwB,CAAC;AACtC,MAAM,wBAAwB,IAAI,oBAAoB;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA,EAoE3D;AACK,MAAM,yBAAyB,IAAI,oBAAoB;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA,EA4E5D;AACK,MAAM,8CAA8C,IAAI,oBAAoB;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA,KAc9E;AACE,MAAM,qCAAqC,IAAI,oBAAoB;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA,EAmIxE;AACK,MAAM,iCAAiC,IAAI,oBAAoB;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA,EA2GpE;AACK,MAAM,kCAAkC,IAAI,oBAAoB;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA,EA6GrE;AACK,MAAM,yBAAyB,IAAI,oBAAoB;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA,KAkBzD;AACE,MAAM,qBAAqB,IAAI,oBAAoB;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA,KAYrD;AACE,MAAM,6BAA6B,IAAI,oBAAoB;AAAA;AAAA;AAAA;AAAA,KAI7D;AACE,MAAM,0BAA0B,IAAI,oBAAoB;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA,KAW1D;AACE,MAAM,mBAAmB,IAAI,oBAAoB;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA,KA0BnD;AACE,MAAM,2BAA2B,IAAI,oBAAoB;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA,KAoB3D;AACE,MAAM,0BAA0B,IAAI,oBAAoB;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA,EA6E7D;AACK,MAAM,kCAAkC,IAAI,oBAAoB;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA,EAmErE;AACK,MAAM,wBAAwB,IAAI,oBAAoB;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA,KAMxD;AACE,MAAM,gCAAgC,IAAI,oBAAoB;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA,KA2ChE;AACE,MAAM,2BAA2B,IAAI,oBAAoB;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA,KAyC3D;AACE,MAAM,4CAA4C,IAAI,oBAAoB;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA,KAM5E;AACE,MAAM,mCAAmC,IAAI,oBAAoB;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA,EA8GtE;AACK,MAAM,kCAAkC,IAAI,oBAAoB;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA,KAelE;AACE,MAAM,oCAAoC,IAAI,oBAAoB;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA,EA4BvE;AACK,MAAM,kCAAkC,IAAI,oBAAoB;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA,EAwErE;AACK,MAAM,kCAAkC,IAAI,oBAAoB;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA,EAmErE;AACK,MAAM,4CAA4C,IAAI,oBAAoB;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA,EA+E/E;AACK,MAAM,kCAAkC,IAAI,oBAAoB;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA,EA2BrE;AACK,MAAM,4BAA4B,IAAI,oBAAoB;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA,KAc5D;AACE,MAAM,+BAA+B,IAAI,oBAAoB;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA,KAM/D;AACE,MAAM,yBAAyB,IAAI,oBAAoB;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA,KAOzD;AACE,MAAM,oCAAoC,IAAI,oBAAoB;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA,KAMpE;AACE,MAAM,2BAA2B,IAAI,oBAAoB;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA,KAoB3D;AACE,MAAM,0BAA0B,IAAI,oBAAoB;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA,EAuE7D;AACK,MAAM,oBAAoB,IAAI,oBAAoB;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA,EAqEvD;AACK,MAAM,2BAA2B,IAAI,oBAAoB;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA,EAyE9D;AACK,MAAM,0BAA0B,IAAI,oBAAoB;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA,EA2E7D;AACK,MAAM,sBAAsB,IAAI,oBAAoB;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA,EAoCzD;AACK,MAAM,oBAAoB,IAAI,oBAAoB;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA,EAgCvD;AACK,MAAM,yBAAyB,IAAI,oBAAoB;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA,EAkC5D;AACK,MAAM,iCAAiC,IAAI,oBAAoB;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA,EAsHpE;AACK,MAAM,8BAA8B,IAAI,oBAAoB;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA,EAwGjE;AACK,MAAM,oCAAoC,IAAI,oBAAoB;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA,EAoHvE;AACK,MAAM,wCAAwC,IAAI,oBAAoB;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA,EA0F3E;",
|
|
6
6
|
"names": ["AddressTransactionBlockRelationship", "ExecutionStatus", "Feature", "MoveAbility", "MoveVisibility", "ObjectKind", "StakeStatus", "TransactionBlockKindInput", "ZkLoginIntentScope"]
|
|
7
7
|
}
|