@haneullabs/haneul 0.1.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +1723 -0
- package/LICENSE +201 -0
- package/README.md +449 -0
- package/bcs/package.json +6 -0
- package/client/package.json +6 -0
- package/cryptography/package.json +6 -0
- package/dist/cjs/bcs/bcs.d.ts +1973 -0
- package/dist/cjs/bcs/bcs.js +328 -0
- package/dist/cjs/bcs/bcs.js.map +7 -0
- package/dist/cjs/bcs/effects.d.ts +579 -0
- package/dist/cjs/bcs/effects.js +210 -0
- package/dist/cjs/bcs/effects.js.map +7 -0
- package/dist/cjs/bcs/index.d.ts +2589 -0
- package/dist/cjs/bcs/index.js +80 -0
- package/dist/cjs/bcs/index.js.map +7 -0
- package/dist/cjs/bcs/pure.d.ts +22 -0
- package/dist/cjs/bcs/pure.js +59 -0
- package/dist/cjs/bcs/pure.js.map +7 -0
- package/dist/cjs/bcs/type-tag-serializer.d.ts +7 -0
- package/dist/cjs/bcs/type-tag-serializer.js +117 -0
- package/dist/cjs/bcs/type-tag-serializer.js.map +7 -0
- package/dist/cjs/bcs/types.d.ts +114 -0
- package/dist/cjs/bcs/types.js +27 -0
- package/dist/cjs/bcs/types.js.map +7 -0
- package/dist/cjs/client/index.d.ts +5 -0
- package/dist/cjs/client/index.js +34 -0
- package/dist/cjs/client/index.js.map +7 -0
- package/dist/cjs/client/network.d.ts +1 -0
- package/dist/cjs/client/network.js +38 -0
- package/dist/cjs/client/network.js.map +7 -0
- package/dist/cjs/cryptography/index.d.ts +7 -0
- package/dist/cjs/cryptography/index.js +47 -0
- package/dist/cjs/cryptography/index.js.map +7 -0
- package/dist/cjs/cryptography/intent.d.ts +6 -0
- package/dist/cjs/cryptography/intent.js +35 -0
- package/dist/cjs/cryptography/intent.js.map +7 -0
- package/dist/cjs/cryptography/keypair.d.ts +72 -0
- package/dist/cjs/cryptography/keypair.js +118 -0
- package/dist/cjs/cryptography/keypair.js.map +7 -0
- package/dist/cjs/cryptography/mnemonics.d.ts +27 -0
- package/dist/cjs/cryptography/mnemonics.js +47 -0
- package/dist/cjs/cryptography/mnemonics.js.map +7 -0
- package/dist/cjs/cryptography/publickey.d.ts +67 -0
- package/dist/cjs/cryptography/publickey.js +140 -0
- package/dist/cjs/cryptography/publickey.js.map +7 -0
- package/dist/cjs/cryptography/signature-scheme.d.ts +24 -0
- package/dist/cjs/cryptography/signature-scheme.js +48 -0
- package/dist/cjs/cryptography/signature-scheme.js.map +7 -0
- package/dist/cjs/cryptography/signature.d.ts +65 -0
- package/dist/cjs/cryptography/signature.js +71 -0
- package/dist/cjs/cryptography/signature.js.map +7 -0
- package/dist/cjs/experimental/cache.d.ts +12 -0
- package/dist/cjs/experimental/cache.js +88 -0
- package/dist/cjs/experimental/cache.js.map +7 -0
- package/dist/cjs/experimental/client.d.ts +12 -0
- package/dist/cjs/experimental/client.js +46 -0
- package/dist/cjs/experimental/client.js.map +7 -0
- package/dist/cjs/experimental/core.d.ts +37 -0
- package/dist/cjs/experimental/core.js +114 -0
- package/dist/cjs/experimental/core.js.map +7 -0
- package/dist/cjs/experimental/errors.d.ts +8 -0
- package/dist/cjs/experimental/errors.js +54 -0
- package/dist/cjs/experimental/errors.js.map +7 -0
- package/dist/cjs/experimental/index.d.ts +7 -0
- package/dist/cjs/experimental/index.js +32 -0
- package/dist/cjs/experimental/index.js.map +7 -0
- package/dist/cjs/experimental/mvr.d.ts +42 -0
- package/dist/cjs/experimental/mvr.js +365 -0
- package/dist/cjs/experimental/mvr.js.map +7 -0
- package/dist/cjs/experimental/transports/utils.d.ts +3 -0
- package/dist/cjs/experimental/transports/utils.js +101 -0
- package/dist/cjs/experimental/transports/utils.js.map +7 -0
- package/dist/cjs/experimental/types.d.ts +434 -0
- package/dist/cjs/experimental/types.js +17 -0
- package/dist/cjs/experimental/types.js.map +7 -0
- package/dist/cjs/faucet/faucet.d.ts +65 -0
- package/dist/cjs/faucet/faucet.js +130 -0
- package/dist/cjs/faucet/faucet.js.map +7 -0
- package/dist/cjs/faucet/index.d.ts +1 -0
- package/dist/cjs/faucet/index.js +30 -0
- package/dist/cjs/faucet/index.js.map +7 -0
- package/dist/cjs/graphql/client.d.ts +50 -0
- package/dist/cjs/graphql/client.js +94 -0
- package/dist/cjs/graphql/client.js.map +7 -0
- package/dist/cjs/graphql/core.d.ts +32 -0
- package/dist/cjs/graphql/core.js +471 -0
- package/dist/cjs/graphql/core.js.map +7 -0
- package/dist/cjs/graphql/generated/2024.1/tada-env.d.ts +11380 -0
- package/dist/cjs/graphql/generated/2024.1/tada-env.js +13142 -0
- package/dist/cjs/graphql/generated/2024.1/tada-env.js.map +7 -0
- package/dist/cjs/graphql/generated/2024.1/tsconfig.tada.js +12 -0
- package/dist/cjs/graphql/generated/2024.1/tsconfig.tada.js.map +7 -0
- package/dist/cjs/graphql/generated/2024.4/tada-env.d.ts +11496 -0
- package/dist/cjs/graphql/generated/2024.4/tada-env.js +13288 -0
- package/dist/cjs/graphql/generated/2024.4/tada-env.js.map +7 -0
- package/dist/cjs/graphql/generated/2024.4/tsconfig.tada.js +12 -0
- package/dist/cjs/graphql/generated/2024.4/tsconfig.tada.js.map +7 -0
- package/dist/cjs/graphql/generated/latest/tada-env.d.ts +11128 -0
- package/dist/cjs/graphql/generated/latest/tada-env.js +12926 -0
- package/dist/cjs/graphql/generated/latest/tada-env.js.map +7 -0
- package/dist/cjs/graphql/generated/latest/tsconfig.tada.js +12 -0
- package/dist/cjs/graphql/generated/latest/tsconfig.tada.js.map +7 -0
- package/dist/cjs/graphql/generated/queries.d.ts +4980 -0
- package/dist/cjs/graphql/generated/queries.js +803 -0
- package/dist/cjs/graphql/generated/queries.js.map +7 -0
- package/dist/cjs/graphql/index.d.ts +1 -0
- package/dist/cjs/graphql/index.js +26 -0
- package/dist/cjs/graphql/index.js.map +7 -0
- package/dist/cjs/graphql/schemas/2024.1/index.d.ts +10 -0
- package/dist/cjs/graphql/schemas/2024.1/index.js +29 -0
- package/dist/cjs/graphql/schemas/2024.1/index.js.map +7 -0
- package/dist/cjs/graphql/schemas/2024.4/index.d.ts +10 -0
- package/dist/cjs/graphql/schemas/2024.4/index.js +29 -0
- package/dist/cjs/graphql/schemas/2024.4/index.js.map +7 -0
- package/dist/cjs/graphql/schemas/latest/index.d.ts +10 -0
- package/dist/cjs/graphql/schemas/latest/index.js +29 -0
- package/dist/cjs/graphql/schemas/latest/index.js.map +7 -0
- package/dist/cjs/graphql/types.d.ts +71 -0
- package/dist/cjs/graphql/types.js +17 -0
- package/dist/cjs/graphql/types.js.map +7 -0
- package/dist/cjs/grpc/client.d.ts +33 -0
- package/dist/cjs/grpc/client.js +53 -0
- package/dist/cjs/grpc/client.js.map +7 -0
- package/dist/cjs/grpc/core.d.ts +30 -0
- package/dist/cjs/grpc/core.js +651 -0
- package/dist/cjs/grpc/core.js.map +7 -0
- package/dist/cjs/grpc/index.d.ts +4 -0
- package/dist/cjs/grpc/index.js +27 -0
- package/dist/cjs/grpc/index.js.map +7 -0
- package/dist/cjs/grpc/proto/google/protobuf/any.d.ts +173 -0
- package/dist/cjs/grpc/proto/google/protobuf/any.js +139 -0
- package/dist/cjs/grpc/proto/google/protobuf/any.js.map +7 -0
- package/dist/cjs/grpc/proto/google/protobuf/duration.d.ts +104 -0
- package/dist/cjs/grpc/proto/google/protobuf/duration.js +88 -0
- package/dist/cjs/grpc/proto/google/protobuf/duration.js.map +7 -0
- package/dist/cjs/grpc/proto/google/protobuf/empty.d.ts +25 -0
- package/dist/cjs/grpc/proto/google/protobuf/empty.js +31 -0
- package/dist/cjs/grpc/proto/google/protobuf/empty.js.map +7 -0
- package/dist/cjs/grpc/proto/google/protobuf/field_mask.d.ts +231 -0
- package/dist/cjs/grpc/proto/google/protobuf/field_mask.js +73 -0
- package/dist/cjs/grpc/proto/google/protobuf/field_mask.js.map +7 -0
- package/dist/cjs/grpc/proto/google/protobuf/struct.d.ts +169 -0
- package/dist/cjs/grpc/proto/google/protobuf/struct.js +199 -0
- package/dist/cjs/grpc/proto/google/protobuf/struct.js.map +7 -0
- package/dist/cjs/grpc/proto/google/protobuf/timestamp.d.ts +145 -0
- package/dist/cjs/grpc/proto/google/protobuf/timestamp.js +123 -0
- package/dist/cjs/grpc/proto/google/protobuf/timestamp.js.map +7 -0
- package/dist/cjs/grpc/proto/google/rpc/error_details.d.ts +525 -0
- package/dist/cjs/grpc/proto/google/rpc/error_details.js +332 -0
- package/dist/cjs/grpc/proto/google/rpc/error_details.js.map +7 -0
- package/dist/cjs/grpc/proto/google/rpc/status.d.ts +46 -0
- package/dist/cjs/grpc/proto/google/rpc/status.js +48 -0
- package/dist/cjs/grpc/proto/google/rpc/status.js.map +7 -0
- package/dist/cjs/grpc/proto/haneul/rpc/v2/argument.d.ts +66 -0
- package/dist/cjs/grpc/proto/haneul/rpc/v2/argument.js +71 -0
- package/dist/cjs/grpc/proto/haneul/rpc/v2/argument.js.map +7 -0
- package/dist/cjs/grpc/proto/haneul/rpc/v2/balance_change.d.ts +34 -0
- package/dist/cjs/grpc/proto/haneul/rpc/v2/balance_change.js +56 -0
- package/dist/cjs/grpc/proto/haneul/rpc/v2/balance_change.js.map +7 -0
- package/dist/cjs/grpc/proto/haneul/rpc/v2/bcs.d.ts +30 -0
- package/dist/cjs/grpc/proto/haneul/rpc/v2/bcs.js +48 -0
- package/dist/cjs/grpc/proto/haneul/rpc/v2/bcs.js.map +7 -0
- package/dist/cjs/grpc/proto/haneul/rpc/v2/checkpoint.d.ts +68 -0
- package/dist/cjs/grpc/proto/haneul/rpc/v2/checkpoint.js +64 -0
- package/dist/cjs/grpc/proto/haneul/rpc/v2/checkpoint.js.map +7 -0
- package/dist/cjs/grpc/proto/haneul/rpc/v2/checkpoint_contents.d.ts +74 -0
- package/dist/cjs/grpc/proto/haneul/rpc/v2/checkpoint_contents.js +89 -0
- package/dist/cjs/grpc/proto/haneul/rpc/v2/checkpoint_contents.js.map +7 -0
- package/dist/cjs/grpc/proto/haneul/rpc/v2/checkpoint_summary.d.ts +195 -0
- package/dist/cjs/grpc/proto/haneul/rpc/v2/checkpoint_summary.js +165 -0
- package/dist/cjs/grpc/proto/haneul/rpc/v2/checkpoint_summary.js.map +7 -0
- package/dist/cjs/grpc/proto/haneul/rpc/v2/effects.d.ts +338 -0
- package/dist/cjs/grpc/proto/haneul/rpc/v2/effects.js +294 -0
- package/dist/cjs/grpc/proto/haneul/rpc/v2/effects.js.map +7 -0
- package/dist/cjs/grpc/proto/haneul/rpc/v2/epoch.d.ts +62 -0
- package/dist/cjs/grpc/proto/haneul/rpc/v2/epoch.js +73 -0
- package/dist/cjs/grpc/proto/haneul/rpc/v2/epoch.js.map +7 -0
- package/dist/cjs/grpc/proto/haneul/rpc/v2/error_reason.d.ts +17 -0
- package/dist/cjs/grpc/proto/haneul/rpc/v2/error_reason.js +30 -0
- package/dist/cjs/grpc/proto/haneul/rpc/v2/error_reason.js.map +7 -0
- package/dist/cjs/grpc/proto/haneul/rpc/v2/event.d.ts +88 -0
- package/dist/cjs/grpc/proto/haneul/rpc/v2/event.js +86 -0
- package/dist/cjs/grpc/proto/haneul/rpc/v2/event.js.map +7 -0
- package/dist/cjs/grpc/proto/haneul/rpc/v2/executed_transaction.d.ts +80 -0
- package/dist/cjs/grpc/proto/haneul/rpc/v2/executed_transaction.js +74 -0
- package/dist/cjs/grpc/proto/haneul/rpc/v2/executed_transaction.js.map +7 -0
- package/dist/cjs/grpc/proto/haneul/rpc/v2/execution_status.d.ts +843 -0
- package/dist/cjs/grpc/proto/haneul/rpc/v2/execution_status.js +513 -0
- package/dist/cjs/grpc/proto/haneul/rpc/v2/execution_status.js.map +7 -0
- package/dist/cjs/grpc/proto/haneul/rpc/v2/gas_cost_summary.d.ts +41 -0
- package/dist/cjs/grpc/proto/haneul/rpc/v2/gas_cost_summary.js +64 -0
- package/dist/cjs/grpc/proto/haneul/rpc/v2/gas_cost_summary.js.map +7 -0
- package/dist/cjs/grpc/proto/haneul/rpc/v2/input.d.ts +98 -0
- package/dist/cjs/grpc/proto/haneul/rpc/v2/input.js +90 -0
- package/dist/cjs/grpc/proto/haneul/rpc/v2/input.js.map +7 -0
- package/dist/cjs/grpc/proto/haneul/rpc/v2/jwk.d.ts +70 -0
- package/dist/cjs/grpc/proto/haneul/rpc/v2/jwk.js +88 -0
- package/dist/cjs/grpc/proto/haneul/rpc/v2/jwk.js.map +7 -0
- package/dist/cjs/grpc/proto/haneul/rpc/v2/ledger_service.client.d.ts +95 -0
- package/dist/cjs/grpc/proto/haneul/rpc/v2/ledger_service.client.js +127 -0
- package/dist/cjs/grpc/proto/haneul/rpc/v2/ledger_service.client.js.map +7 -0
- package/dist/cjs/grpc/proto/haneul/rpc/v2/ledger_service.d.ts +420 -0
- package/dist/cjs/grpc/proto/haneul/rpc/v2/ledger_service.js +327 -0
- package/dist/cjs/grpc/proto/haneul/rpc/v2/ledger_service.js.map +7 -0
- package/dist/cjs/grpc/proto/haneul/rpc/v2/move_package.d.ts +579 -0
- package/dist/cjs/grpc/proto/haneul/rpc/v2/move_package.js +480 -0
- package/dist/cjs/grpc/proto/haneul/rpc/v2/move_package.js.map +7 -0
- package/dist/cjs/grpc/proto/haneul/rpc/v2/move_package_service.client.d.ts +61 -0
- package/dist/cjs/grpc/proto/haneul/rpc/v2/move_package_service.client.js +86 -0
- package/dist/cjs/grpc/proto/haneul/rpc/v2/move_package_service.client.js.map +7 -0
- package/dist/cjs/grpc/proto/haneul/rpc/v2/move_package_service.d.ts +229 -0
- package/dist/cjs/grpc/proto/haneul/rpc/v2/move_package_service.js +226 -0
- package/dist/cjs/grpc/proto/haneul/rpc/v2/move_package_service.js.map +7 -0
- package/dist/cjs/grpc/proto/haneul/rpc/v2/name_service.client.d.ts +41 -0
- package/dist/cjs/grpc/proto/haneul/rpc/v2/name_service.client.js +60 -0
- package/dist/cjs/grpc/proto/haneul/rpc/v2/name_service.client.js.map +7 -0
- package/dist/cjs/grpc/proto/haneul/rpc/v2/name_service.d.ts +144 -0
- package/dist/cjs/grpc/proto/haneul/rpc/v2/name_service.js +138 -0
- package/dist/cjs/grpc/proto/haneul/rpc/v2/name_service.js.map +7 -0
- package/dist/cjs/grpc/proto/haneul/rpc/v2/object.d.ts +127 -0
- package/dist/cjs/grpc/proto/haneul/rpc/v2/object.js +113 -0
- package/dist/cjs/grpc/proto/haneul/rpc/v2/object.js.map +7 -0
- package/dist/cjs/grpc/proto/haneul/rpc/v2/object_reference.d.ts +34 -0
- package/dist/cjs/grpc/proto/haneul/rpc/v2/object_reference.js +56 -0
- package/dist/cjs/grpc/proto/haneul/rpc/v2/object_reference.js.map +7 -0
- package/dist/cjs/grpc/proto/haneul/rpc/v2/owner.d.ts +61 -0
- package/dist/cjs/grpc/proto/haneul/rpc/v2/owner.js +65 -0
- package/dist/cjs/grpc/proto/haneul/rpc/v2/owner.js.map +7 -0
- package/dist/cjs/grpc/proto/haneul/rpc/v2/protocol_config.d.ts +30 -0
- package/dist/cjs/grpc/proto/haneul/rpc/v2/protocol_config.js +62 -0
- package/dist/cjs/grpc/proto/haneul/rpc/v2/protocol_config.js.map +7 -0
- package/dist/cjs/grpc/proto/haneul/rpc/v2/signature.d.ts +630 -0
- package/dist/cjs/grpc/proto/haneul/rpc/v2/signature.js +514 -0
- package/dist/cjs/grpc/proto/haneul/rpc/v2/signature.js.map +7 -0
- package/dist/cjs/grpc/proto/haneul/rpc/v2/signature_scheme.d.ts +40 -0
- package/dist/cjs/grpc/proto/haneul/rpc/v2/signature_scheme.js +34 -0
- package/dist/cjs/grpc/proto/haneul/rpc/v2/signature_scheme.js.map +7 -0
- package/dist/cjs/grpc/proto/haneul/rpc/v2/signature_verification_service.client.d.ts +35 -0
- package/dist/cjs/grpc/proto/haneul/rpc/v2/signature_verification_service.client.js +49 -0
- package/dist/cjs/grpc/proto/haneul/rpc/v2/signature_verification_service.client.js.map +7 -0
- package/dist/cjs/grpc/proto/haneul/rpc/v2/signature_verification_service.d.ts +79 -0
- package/dist/cjs/grpc/proto/haneul/rpc/v2/signature_verification_service.js +76 -0
- package/dist/cjs/grpc/proto/haneul/rpc/v2/signature_verification_service.js.map +7 -0
- package/dist/cjs/grpc/proto/haneul/rpc/v2/state_service.client.d.ts +71 -0
- package/dist/cjs/grpc/proto/haneul/rpc/v2/state_service.client.js +99 -0
- package/dist/cjs/grpc/proto/haneul/rpc/v2/state_service.client.js.map +7 -0
- package/dist/cjs/grpc/proto/haneul/rpc/v2/state_service.d.ts +690 -0
- package/dist/cjs/grpc/proto/haneul/rpc/v2/state_service.js +546 -0
- package/dist/cjs/grpc/proto/haneul/rpc/v2/state_service.js.map +7 -0
- package/dist/cjs/grpc/proto/haneul/rpc/v2/subscription_service.client.d.ts +55 -0
- package/dist/cjs/grpc/proto/haneul/rpc/v2/subscription_service.client.js +59 -0
- package/dist/cjs/grpc/proto/haneul/rpc/v2/subscription_service.client.js.map +7 -0
- package/dist/cjs/grpc/proto/haneul/rpc/v2/subscription_service.d.ts +57 -0
- package/dist/cjs/grpc/proto/haneul/rpc/v2/subscription_service.js +63 -0
- package/dist/cjs/grpc/proto/haneul/rpc/v2/subscription_service.js.map +7 -0
- package/dist/cjs/grpc/proto/haneul/rpc/v2/system_state.d.ts +684 -0
- package/dist/cjs/grpc/proto/haneul/rpc/v2/system_state.js +674 -0
- package/dist/cjs/grpc/proto/haneul/rpc/v2/system_state.js.map +7 -0
- package/dist/cjs/grpc/proto/haneul/rpc/v2/transaction.d.ts +1321 -0
- package/dist/cjs/grpc/proto/haneul/rpc/v2/transaction.js +931 -0
- package/dist/cjs/grpc/proto/haneul/rpc/v2/transaction.js.map +7 -0
- package/dist/cjs/grpc/proto/haneul/rpc/v2/transaction_execution_service.client.d.ts +41 -0
- package/dist/cjs/grpc/proto/haneul/rpc/v2/transaction_execution_service.client.js +60 -0
- package/dist/cjs/grpc/proto/haneul/rpc/v2/transaction_execution_service.client.js.map +7 -0
- package/dist/cjs/grpc/proto/haneul/rpc/v2/transaction_execution_service.d.ts +184 -0
- package/dist/cjs/grpc/proto/haneul/rpc/v2/transaction_execution_service.js +159 -0
- package/dist/cjs/grpc/proto/haneul/rpc/v2/transaction_execution_service.js.map +7 -0
- package/dist/cjs/jsonRpc/client.d.ts +264 -0
- package/dist/cjs/jsonRpc/client.js +832 -0
- package/dist/cjs/jsonRpc/client.js.map +7 -0
- package/dist/cjs/jsonRpc/core.d.ts +93 -0
- package/dist/cjs/jsonRpc/core.js +644 -0
- package/dist/cjs/jsonRpc/core.js.map +7 -0
- package/dist/cjs/jsonRpc/errors.d.ts +12 -0
- package/dist/cjs/jsonRpc/errors.js +60 -0
- package/dist/cjs/jsonRpc/errors.js.map +7 -0
- package/dist/cjs/jsonRpc/http-transport.d.ts +42 -0
- package/dist/cjs/jsonRpc/http-transport.js +119 -0
- package/dist/cjs/jsonRpc/http-transport.js.map +7 -0
- package/dist/cjs/jsonRpc/index.d.ts +4 -0
- package/dist/cjs/jsonRpc/index.js +32 -0
- package/dist/cjs/jsonRpc/index.js.map +7 -0
- package/dist/cjs/jsonRpc/json-rpc-resolver.d.ts +4 -0
- package/dist/cjs/jsonRpc/json-rpc-resolver.js +311 -0
- package/dist/cjs/jsonRpc/json-rpc-resolver.js.map +7 -0
- package/dist/cjs/jsonRpc/rpc-websocket-client.d.ts +43 -0
- package/dist/cjs/jsonRpc/rpc-websocket-client.js +194 -0
- package/dist/cjs/jsonRpc/rpc-websocket-client.js.map +7 -0
- package/dist/cjs/jsonRpc/types/chain.d.ts +99 -0
- package/dist/cjs/jsonRpc/types/chain.js +17 -0
- package/dist/cjs/jsonRpc/types/chain.js.map +7 -0
- package/dist/cjs/jsonRpc/types/changes.d.ts +19 -0
- package/dist/cjs/jsonRpc/types/changes.js +17 -0
- package/dist/cjs/jsonRpc/types/changes.js.map +7 -0
- package/dist/cjs/jsonRpc/types/coins.d.ts +6 -0
- package/dist/cjs/jsonRpc/types/coins.js +17 -0
- package/dist/cjs/jsonRpc/types/coins.js.map +7 -0
- package/dist/cjs/jsonRpc/types/common.d.ts +2 -0
- package/dist/cjs/jsonRpc/types/common.js +17 -0
- package/dist/cjs/jsonRpc/types/common.js.map +7 -0
- package/dist/cjs/jsonRpc/types/generated.d.ts +1492 -0
- package/dist/cjs/jsonRpc/types/generated.js +17 -0
- package/dist/cjs/jsonRpc/types/generated.js.map +7 -0
- package/dist/cjs/jsonRpc/types/index.d.ts +6 -0
- package/dist/cjs/jsonRpc/types/index.js +17 -0
- package/dist/cjs/jsonRpc/types/index.js.map +7 -0
- package/dist/cjs/jsonRpc/types/params.d.ts +656 -0
- package/dist/cjs/jsonRpc/types/params.js +17 -0
- package/dist/cjs/jsonRpc/types/params.js.map +7 -0
- package/dist/cjs/keypairs/ed25519/ed25519-hd-key.d.ts +8 -0
- package/dist/cjs/keypairs/ed25519/ed25519-hd-key.js +77 -0
- package/dist/cjs/keypairs/ed25519/ed25519-hd-key.js.map +7 -0
- package/dist/cjs/keypairs/ed25519/index.d.ts +2 -0
- package/dist/cjs/keypairs/ed25519/index.js +28 -0
- package/dist/cjs/keypairs/ed25519/index.js.map +7 -0
- package/dist/cjs/keypairs/ed25519/keypair.d.ts +74 -0
- package/dist/cjs/keypairs/ed25519/keypair.js +162 -0
- package/dist/cjs/keypairs/ed25519/keypair.js.map +7 -0
- package/dist/cjs/keypairs/ed25519/publickey.d.ts +30 -0
- package/dist/cjs/keypairs/ed25519/publickey.js +88 -0
- package/dist/cjs/keypairs/ed25519/publickey.js.map +7 -0
- package/dist/cjs/keypairs/passkey/index.d.ts +3 -0
- package/dist/cjs/keypairs/passkey/index.js +29 -0
- package/dist/cjs/keypairs/passkey/index.js.map +7 -0
- package/dist/cjs/keypairs/passkey/keypair.d.ts +113 -0
- package/dist/cjs/keypairs/passkey/keypair.js +251 -0
- package/dist/cjs/keypairs/passkey/keypair.js.map +7 -0
- package/dist/cjs/keypairs/passkey/publickey.d.ts +72 -0
- package/dist/cjs/keypairs/passkey/publickey.js +168 -0
- package/dist/cjs/keypairs/passkey/publickey.js.map +7 -0
- package/dist/cjs/keypairs/passkey/types.d.ts +12 -0
- package/dist/cjs/keypairs/passkey/types.js +17 -0
- package/dist/cjs/keypairs/passkey/types.js.map +7 -0
- package/dist/cjs/keypairs/secp256k1/index.d.ts +2 -0
- package/dist/cjs/keypairs/secp256k1/index.js +28 -0
- package/dist/cjs/keypairs/secp256k1/index.js.map +7 -0
- package/dist/cjs/keypairs/secp256k1/keypair.d.ts +73 -0
- package/dist/cjs/keypairs/secp256k1/keypair.js +150 -0
- package/dist/cjs/keypairs/secp256k1/keypair.js.map +7 -0
- package/dist/cjs/keypairs/secp256k1/publickey.d.ts +30 -0
- package/dist/cjs/keypairs/secp256k1/publickey.js +93 -0
- package/dist/cjs/keypairs/secp256k1/publickey.js.map +7 -0
- package/dist/cjs/keypairs/secp256r1/index.d.ts +2 -0
- package/dist/cjs/keypairs/secp256r1/index.js +28 -0
- package/dist/cjs/keypairs/secp256r1/index.js.map +7 -0
- package/dist/cjs/keypairs/secp256r1/keypair.d.ts +73 -0
- package/dist/cjs/keypairs/secp256r1/keypair.js +144 -0
- package/dist/cjs/keypairs/secp256r1/keypair.js.map +7 -0
- package/dist/cjs/keypairs/secp256r1/publickey.d.ts +30 -0
- package/dist/cjs/keypairs/secp256r1/publickey.js +94 -0
- package/dist/cjs/keypairs/secp256r1/publickey.js.map +7 -0
- package/dist/cjs/multisig/index.d.ts +2 -0
- package/dist/cjs/multisig/index.js +28 -0
- package/dist/cjs/multisig/index.js.map +7 -0
- package/dist/cjs/multisig/publickey.d.ts +114 -0
- package/dist/cjs/multisig/publickey.js +260 -0
- package/dist/cjs/multisig/publickey.js.map +7 -0
- package/dist/cjs/multisig/signer.d.ts +20 -0
- package/dist/cjs/multisig/signer.js +105 -0
- package/dist/cjs/multisig/signer.js.map +7 -0
- package/dist/cjs/package.json +5 -0
- package/dist/cjs/transactions/Arguments.d.ts +49 -0
- package/dist/cjs/transactions/Arguments.js +33 -0
- package/dist/cjs/transactions/Arguments.js.map +7 -0
- package/dist/cjs/transactions/Commands.d.ts +57 -0
- package/dist/cjs/transactions/Commands.js +140 -0
- package/dist/cjs/transactions/Commands.js.map +7 -0
- package/dist/cjs/transactions/Inputs.d.ts +22 -0
- package/dist/cjs/transactions/Inputs.js +80 -0
- package/dist/cjs/transactions/Inputs.js.map +7 -0
- package/dist/cjs/transactions/ObjectCache.d.ts +83 -0
- package/dist/cjs/transactions/ObjectCache.js +241 -0
- package/dist/cjs/transactions/ObjectCache.js.map +7 -0
- package/dist/cjs/transactions/Transaction.d.ts +710 -0
- package/dist/cjs/transactions/Transaction.js +683 -0
- package/dist/cjs/transactions/Transaction.js.map +7 -0
- package/dist/cjs/transactions/TransactionData.d.ts +73 -0
- package/dist/cjs/transactions/TransactionData.js +433 -0
- package/dist/cjs/transactions/TransactionData.js.map +7 -0
- package/dist/cjs/transactions/__tests__/Transaction.test.d.ts +1 -0
- package/dist/cjs/transactions/__tests__/bcs.test.d.ts +1 -0
- package/dist/cjs/transactions/data/internal.d.ts +1010 -0
- package/dist/cjs/transactions/data/internal.js +216 -0
- package/dist/cjs/transactions/data/internal.js.map +7 -0
- package/dist/cjs/transactions/data/v1.d.ts +312 -0
- package/dist/cjs/transactions/data/v1.js +482 -0
- package/dist/cjs/transactions/data/v1.js.map +7 -0
- package/dist/cjs/transactions/data/v2.d.ts +153 -0
- package/dist/cjs/transactions/data/v2.js +125 -0
- package/dist/cjs/transactions/data/v2.js.map +7 -0
- package/dist/cjs/transactions/executor/caching.d.ts +31 -0
- package/dist/cjs/transactions/executor/caching.js +114 -0
- package/dist/cjs/transactions/executor/caching.js.map +7 -0
- package/dist/cjs/transactions/executor/parallel.d.ts +37 -0
- package/dist/cjs/transactions/executor/parallel.js +380 -0
- package/dist/cjs/transactions/executor/parallel.js.map +7 -0
- package/dist/cjs/transactions/executor/queue.d.ts +11 -0
- package/dist/cjs/transactions/executor/queue.js +85 -0
- package/dist/cjs/transactions/executor/queue.js.map +7 -0
- package/dist/cjs/transactions/executor/serial.d.ts +31 -0
- package/dist/cjs/transactions/executor/serial.js +137 -0
- package/dist/cjs/transactions/executor/serial.js.map +7 -0
- package/dist/cjs/transactions/hash.d.ts +7 -0
- package/dist/cjs/transactions/hash.js +32 -0
- package/dist/cjs/transactions/hash.js.map +7 -0
- package/dist/cjs/transactions/index.d.ts +21 -0
- package/dist/cjs/transactions/index.js +51 -0
- package/dist/cjs/transactions/index.js.map +7 -0
- package/dist/cjs/transactions/intents/CoinWithBalance.d.ts +9 -0
- package/dist/cjs/transactions/intents/CoinWithBalance.js +188 -0
- package/dist/cjs/transactions/intents/CoinWithBalance.js.map +7 -0
- package/dist/cjs/transactions/object.d.ts +16 -0
- package/dist/cjs/transactions/object.js +78 -0
- package/dist/cjs/transactions/object.js.map +7 -0
- package/dist/cjs/transactions/plugins/NamedPackagesPlugin.d.ts +48 -0
- package/dist/cjs/transactions/plugins/NamedPackagesPlugin.js +67 -0
- package/dist/cjs/transactions/plugins/NamedPackagesPlugin.js.map +7 -0
- package/dist/cjs/transactions/pure.d.ts +20 -0
- package/dist/cjs/transactions/pure.js +57 -0
- package/dist/cjs/transactions/pure.js.map +7 -0
- package/dist/cjs/transactions/resolve.d.ts +13 -0
- package/dist/cjs/transactions/resolve.js +98 -0
- package/dist/cjs/transactions/resolve.js.map +7 -0
- package/dist/cjs/transactions/serializer.d.ts +7 -0
- package/dist/cjs/transactions/serializer.js +182 -0
- package/dist/cjs/transactions/serializer.js.map +7 -0
- package/dist/cjs/transactions/utils.d.ts +10 -0
- package/dist/cjs/transactions/utils.js +135 -0
- package/dist/cjs/transactions/utils.js.map +7 -0
- package/dist/cjs/utils/constants.d.ts +10 -0
- package/dist/cjs/utils/constants.js +44 -0
- package/dist/cjs/utils/constants.js.map +7 -0
- package/dist/cjs/utils/derived-objects.d.ts +5 -0
- package/dist/cjs/utils/derived-objects.js +34 -0
- package/dist/cjs/utils/derived-objects.js.map +7 -0
- package/dist/cjs/utils/dynamic-fields.d.ts +2 -0
- package/dist/cjs/utils/dynamic-fields.js +41 -0
- package/dist/cjs/utils/dynamic-fields.js.map +7 -0
- package/dist/cjs/utils/format.d.ts +2 -0
- package/dist/cjs/utils/format.js +36 -0
- package/dist/cjs/utils/format.js.map +7 -0
- package/dist/cjs/utils/haneul-types.d.ts +26 -0
- package/dist/cjs/utils/haneul-types.js +91 -0
- package/dist/cjs/utils/haneul-types.js.map +7 -0
- package/dist/cjs/utils/haneulns.d.ts +2 -0
- package/dist/cjs/utils/haneulns.js +57 -0
- package/dist/cjs/utils/haneulns.js.map +7 -0
- package/dist/cjs/utils/index.d.ts +9 -0
- package/dist/cjs/utils/index.js +69 -0
- package/dist/cjs/utils/index.js.map +7 -0
- package/dist/cjs/utils/move-registry.d.ts +6 -0
- package/dist/cjs/utils/move-registry.js +45 -0
- package/dist/cjs/utils/move-registry.js.map +7 -0
- package/dist/cjs/verify/index.d.ts +1 -0
- package/dist/cjs/verify/index.js +29 -0
- package/dist/cjs/verify/index.js.map +7 -0
- package/dist/cjs/verify/verify.d.ts +21 -0
- package/dist/cjs/verify/verify.js +124 -0
- package/dist/cjs/verify/verify.js.map +7 -0
- package/dist/cjs/version.d.ts +2 -0
- package/dist/cjs/version.js +27 -0
- package/dist/cjs/version.js.map +7 -0
- package/dist/cjs/zklogin/address.d.ts +16 -0
- package/dist/cjs/zklogin/address.js +87 -0
- package/dist/cjs/zklogin/address.js.map +7 -0
- package/dist/cjs/zklogin/bcs.d.ts +28 -0
- package/dist/cjs/zklogin/bcs.js +42 -0
- package/dist/cjs/zklogin/bcs.js.map +7 -0
- package/dist/cjs/zklogin/index.d.ts +9 -0
- package/dist/cjs/zklogin/index.js +46 -0
- package/dist/cjs/zklogin/index.js.map +7 -0
- package/dist/cjs/zklogin/jwt-decode.d.ts +47 -0
- package/dist/cjs/zklogin/jwt-decode.js +85 -0
- package/dist/cjs/zklogin/jwt-decode.js.map +7 -0
- package/dist/cjs/zklogin/jwt-utils.d.ts +12 -0
- package/dist/cjs/zklogin/jwt-utils.js +121 -0
- package/dist/cjs/zklogin/jwt-utils.js.map +7 -0
- package/dist/cjs/zklogin/nonce.d.ts +4 -0
- package/dist/cjs/zklogin/nonce.js +54 -0
- package/dist/cjs/zklogin/nonce.js.map +7 -0
- package/dist/cjs/zklogin/poseidon.d.ts +2 -0
- package/dist/cjs/zklogin/poseidon.js +63 -0
- package/dist/cjs/zklogin/poseidon.js.map +7 -0
- package/dist/cjs/zklogin/publickey.d.ts +87 -0
- package/dist/cjs/zklogin/publickey.js +257 -0
- package/dist/cjs/zklogin/publickey.js.map +7 -0
- package/dist/cjs/zklogin/signature.d.ts +23 -0
- package/dist/cjs/zklogin/signature.js +48 -0
- package/dist/cjs/zklogin/signature.js.map +7 -0
- package/dist/cjs/zklogin/utils.d.ts +16 -0
- package/dist/cjs/zklogin/utils.js +97 -0
- package/dist/cjs/zklogin/utils.js.map +7 -0
- package/dist/esm/bcs/bcs.d.ts +1973 -0
- package/dist/esm/bcs/bcs.js +308 -0
- package/dist/esm/bcs/bcs.js.map +7 -0
- package/dist/esm/bcs/effects.d.ts +579 -0
- package/dist/esm/bcs/effects.js +190 -0
- package/dist/esm/bcs/effects.js.map +7 -0
- package/dist/esm/bcs/index.d.ts +2589 -0
- package/dist/esm/bcs/index.js +94 -0
- package/dist/esm/bcs/index.js.map +7 -0
- package/dist/esm/bcs/pure.d.ts +22 -0
- package/dist/esm/bcs/pure.js +39 -0
- package/dist/esm/bcs/pure.js.map +7 -0
- package/dist/esm/bcs/type-tag-serializer.d.ts +7 -0
- package/dist/esm/bcs/type-tag-serializer.js +97 -0
- package/dist/esm/bcs/type-tag-serializer.js.map +7 -0
- package/dist/esm/bcs/types.d.ts +114 -0
- package/dist/esm/bcs/types.js +7 -0
- package/dist/esm/bcs/types.js.map +7 -0
- package/dist/esm/client/index.d.ts +5 -0
- package/dist/esm/client/index.js +19 -0
- package/dist/esm/client/index.js.map +7 -0
- package/dist/esm/client/network.d.ts +1 -0
- package/dist/esm/client/network.js +18 -0
- package/dist/esm/client/network.js.map +7 -0
- package/dist/esm/cryptography/index.d.ts +7 -0
- package/dist/esm/cryptography/index.js +47 -0
- package/dist/esm/cryptography/index.js.map +7 -0
- package/dist/esm/cryptography/intent.d.ts +6 -0
- package/dist/esm/cryptography/intent.js +15 -0
- package/dist/esm/cryptography/intent.js.map +7 -0
- package/dist/esm/cryptography/keypair.d.ts +72 -0
- package/dist/esm/cryptography/keypair.js +98 -0
- package/dist/esm/cryptography/keypair.js.map +7 -0
- package/dist/esm/cryptography/mnemonics.d.ts +27 -0
- package/dist/esm/cryptography/mnemonics.js +27 -0
- package/dist/esm/cryptography/mnemonics.js.map +7 -0
- package/dist/esm/cryptography/publickey.d.ts +67 -0
- package/dist/esm/cryptography/publickey.js +120 -0
- package/dist/esm/cryptography/publickey.js.map +7 -0
- package/dist/esm/cryptography/signature-scheme.d.ts +24 -0
- package/dist/esm/cryptography/signature-scheme.js +28 -0
- package/dist/esm/cryptography/signature-scheme.js.map +7 -0
- package/dist/esm/cryptography/signature.d.ts +65 -0
- package/dist/esm/cryptography/signature.js +51 -0
- package/dist/esm/cryptography/signature.js.map +7 -0
- package/dist/esm/experimental/cache.d.ts +12 -0
- package/dist/esm/experimental/cache.js +68 -0
- package/dist/esm/experimental/cache.js.map +7 -0
- package/dist/esm/experimental/client.d.ts +12 -0
- package/dist/esm/experimental/client.js +26 -0
- package/dist/esm/experimental/client.js.map +7 -0
- package/dist/esm/experimental/core.d.ts +37 -0
- package/dist/esm/experimental/core.js +94 -0
- package/dist/esm/experimental/core.js.map +7 -0
- package/dist/esm/experimental/errors.d.ts +8 -0
- package/dist/esm/experimental/errors.js +34 -0
- package/dist/esm/experimental/errors.js.map +7 -0
- package/dist/esm/experimental/index.d.ts +7 -0
- package/dist/esm/experimental/index.js +12 -0
- package/dist/esm/experimental/index.js.map +7 -0
- package/dist/esm/experimental/mvr.d.ts +42 -0
- package/dist/esm/experimental/mvr.js +350 -0
- package/dist/esm/experimental/mvr.js.map +7 -0
- package/dist/esm/experimental/transports/utils.d.ts +3 -0
- package/dist/esm/experimental/transports/utils.js +81 -0
- package/dist/esm/experimental/transports/utils.js.map +7 -0
- package/dist/esm/experimental/types.d.ts +434 -0
- package/dist/esm/experimental/types.js +1 -0
- package/dist/esm/experimental/types.js.map +7 -0
- package/dist/esm/faucet/faucet.d.ts +65 -0
- package/dist/esm/faucet/faucet.js +110 -0
- package/dist/esm/faucet/faucet.js.map +7 -0
- package/dist/esm/faucet/index.d.ts +1 -0
- package/dist/esm/faucet/index.js +17 -0
- package/dist/esm/faucet/index.js.map +7 -0
- package/dist/esm/graphql/client.d.ts +50 -0
- package/dist/esm/graphql/client.js +74 -0
- package/dist/esm/graphql/client.js.map +7 -0
- package/dist/esm/graphql/core.d.ts +32 -0
- package/dist/esm/graphql/core.js +469 -0
- package/dist/esm/graphql/core.js.map +7 -0
- package/dist/esm/graphql/generated/2024.1/tada-env.d.ts +11380 -0
- package/dist/esm/graphql/generated/2024.1/tada-env.js +13122 -0
- package/dist/esm/graphql/generated/2024.1/tada-env.js.map +7 -0
- package/dist/esm/graphql/generated/2024.1/tsconfig.tada.js +17 -0
- package/dist/esm/graphql/generated/2024.1/tsconfig.tada.js.map +7 -0
- package/dist/esm/graphql/generated/2024.4/tada-env.d.ts +11496 -0
- package/dist/esm/graphql/generated/2024.4/tada-env.js +13268 -0
- package/dist/esm/graphql/generated/2024.4/tada-env.js.map +7 -0
- package/dist/esm/graphql/generated/2024.4/tsconfig.tada.js +17 -0
- package/dist/esm/graphql/generated/2024.4/tsconfig.tada.js.map +7 -0
- package/dist/esm/graphql/generated/latest/tada-env.d.ts +11128 -0
- package/dist/esm/graphql/generated/latest/tada-env.js +12906 -0
- package/dist/esm/graphql/generated/latest/tada-env.js.map +7 -0
- package/dist/esm/graphql/generated/latest/tsconfig.tada.js +17 -0
- package/dist/esm/graphql/generated/latest/tsconfig.tada.js.map +7 -0
- package/dist/esm/graphql/generated/queries.d.ts +4980 -0
- package/dist/esm/graphql/generated/queries.js +783 -0
- package/dist/esm/graphql/generated/queries.js.map +7 -0
- package/dist/esm/graphql/index.d.ts +1 -0
- package/dist/esm/graphql/index.js +9 -0
- package/dist/esm/graphql/index.js.map +7 -0
- package/dist/esm/graphql/schemas/2024.1/index.d.ts +10 -0
- package/dist/esm/graphql/schemas/2024.1/index.js +9 -0
- package/dist/esm/graphql/schemas/2024.1/index.js.map +7 -0
- package/dist/esm/graphql/schemas/2024.4/index.d.ts +10 -0
- package/dist/esm/graphql/schemas/2024.4/index.js +9 -0
- package/dist/esm/graphql/schemas/2024.4/index.js.map +7 -0
- package/dist/esm/graphql/schemas/latest/index.d.ts +10 -0
- package/dist/esm/graphql/schemas/latest/index.js +9 -0
- package/dist/esm/graphql/schemas/latest/index.js.map +7 -0
- package/dist/esm/graphql/types.d.ts +71 -0
- package/dist/esm/graphql/types.js +1 -0
- package/dist/esm/graphql/types.js.map +7 -0
- package/dist/esm/grpc/client.d.ts +33 -0
- package/dist/esm/grpc/client.js +33 -0
- package/dist/esm/grpc/client.js.map +7 -0
- package/dist/esm/grpc/core.d.ts +30 -0
- package/dist/esm/grpc/core.js +640 -0
- package/dist/esm/grpc/core.js.map +7 -0
- package/dist/esm/grpc/index.d.ts +4 -0
- package/dist/esm/grpc/index.js +7 -0
- package/dist/esm/grpc/index.js.map +7 -0
- package/dist/esm/grpc/proto/google/protobuf/any.d.ts +173 -0
- package/dist/esm/grpc/proto/google/protobuf/any.js +119 -0
- package/dist/esm/grpc/proto/google/protobuf/any.js.map +7 -0
- package/dist/esm/grpc/proto/google/protobuf/duration.d.ts +104 -0
- package/dist/esm/grpc/proto/google/protobuf/duration.js +68 -0
- package/dist/esm/grpc/proto/google/protobuf/duration.js.map +7 -0
- package/dist/esm/grpc/proto/google/protobuf/empty.d.ts +25 -0
- package/dist/esm/grpc/proto/google/protobuf/empty.js +11 -0
- package/dist/esm/grpc/proto/google/protobuf/empty.js.map +7 -0
- package/dist/esm/grpc/proto/google/protobuf/field_mask.d.ts +231 -0
- package/dist/esm/grpc/proto/google/protobuf/field_mask.js +53 -0
- package/dist/esm/grpc/proto/google/protobuf/field_mask.js.map +7 -0
- package/dist/esm/grpc/proto/google/protobuf/struct.d.ts +169 -0
- package/dist/esm/grpc/proto/google/protobuf/struct.js +179 -0
- package/dist/esm/grpc/proto/google/protobuf/struct.js.map +7 -0
- package/dist/esm/grpc/proto/google/protobuf/timestamp.d.ts +145 -0
- package/dist/esm/grpc/proto/google/protobuf/timestamp.js +103 -0
- package/dist/esm/grpc/proto/google/protobuf/timestamp.js.map +7 -0
- package/dist/esm/grpc/proto/google/rpc/error_details.d.ts +525 -0
- package/dist/esm/grpc/proto/google/rpc/error_details.js +312 -0
- package/dist/esm/grpc/proto/google/rpc/error_details.js.map +7 -0
- package/dist/esm/grpc/proto/google/rpc/status.d.ts +46 -0
- package/dist/esm/grpc/proto/google/rpc/status.js +28 -0
- package/dist/esm/grpc/proto/google/rpc/status.js.map +7 -0
- package/dist/esm/grpc/proto/haneul/rpc/v2/argument.d.ts +66 -0
- package/dist/esm/grpc/proto/haneul/rpc/v2/argument.js +51 -0
- package/dist/esm/grpc/proto/haneul/rpc/v2/argument.js.map +7 -0
- package/dist/esm/grpc/proto/haneul/rpc/v2/balance_change.d.ts +34 -0
- package/dist/esm/grpc/proto/haneul/rpc/v2/balance_change.js +36 -0
- package/dist/esm/grpc/proto/haneul/rpc/v2/balance_change.js.map +7 -0
- package/dist/esm/grpc/proto/haneul/rpc/v2/bcs.d.ts +30 -0
- package/dist/esm/grpc/proto/haneul/rpc/v2/bcs.js +28 -0
- package/dist/esm/grpc/proto/haneul/rpc/v2/bcs.js.map +7 -0
- package/dist/esm/grpc/proto/haneul/rpc/v2/checkpoint.d.ts +68 -0
- package/dist/esm/grpc/proto/haneul/rpc/v2/checkpoint.js +44 -0
- package/dist/esm/grpc/proto/haneul/rpc/v2/checkpoint.js.map +7 -0
- package/dist/esm/grpc/proto/haneul/rpc/v2/checkpoint_contents.d.ts +74 -0
- package/dist/esm/grpc/proto/haneul/rpc/v2/checkpoint_contents.js +69 -0
- package/dist/esm/grpc/proto/haneul/rpc/v2/checkpoint_contents.js.map +7 -0
- package/dist/esm/grpc/proto/haneul/rpc/v2/checkpoint_summary.d.ts +195 -0
- package/dist/esm/grpc/proto/haneul/rpc/v2/checkpoint_summary.js +145 -0
- package/dist/esm/grpc/proto/haneul/rpc/v2/checkpoint_summary.js.map +7 -0
- package/dist/esm/grpc/proto/haneul/rpc/v2/effects.d.ts +338 -0
- package/dist/esm/grpc/proto/haneul/rpc/v2/effects.js +274 -0
- package/dist/esm/grpc/proto/haneul/rpc/v2/effects.js.map +7 -0
- package/dist/esm/grpc/proto/haneul/rpc/v2/epoch.d.ts +62 -0
- package/dist/esm/grpc/proto/haneul/rpc/v2/epoch.js +53 -0
- package/dist/esm/grpc/proto/haneul/rpc/v2/epoch.js.map +7 -0
- package/dist/esm/grpc/proto/haneul/rpc/v2/error_reason.d.ts +17 -0
- package/dist/esm/grpc/proto/haneul/rpc/v2/error_reason.js +10 -0
- package/dist/esm/grpc/proto/haneul/rpc/v2/error_reason.js.map +7 -0
- package/dist/esm/grpc/proto/haneul/rpc/v2/event.d.ts +88 -0
- package/dist/esm/grpc/proto/haneul/rpc/v2/event.js +66 -0
- package/dist/esm/grpc/proto/haneul/rpc/v2/event.js.map +7 -0
- package/dist/esm/grpc/proto/haneul/rpc/v2/executed_transaction.d.ts +80 -0
- package/dist/esm/grpc/proto/haneul/rpc/v2/executed_transaction.js +54 -0
- package/dist/esm/grpc/proto/haneul/rpc/v2/executed_transaction.js.map +7 -0
- package/dist/esm/grpc/proto/haneul/rpc/v2/execution_status.d.ts +843 -0
- package/dist/esm/grpc/proto/haneul/rpc/v2/execution_status.js +493 -0
- package/dist/esm/grpc/proto/haneul/rpc/v2/execution_status.js.map +7 -0
- package/dist/esm/grpc/proto/haneul/rpc/v2/gas_cost_summary.d.ts +41 -0
- package/dist/esm/grpc/proto/haneul/rpc/v2/gas_cost_summary.js +44 -0
- package/dist/esm/grpc/proto/haneul/rpc/v2/gas_cost_summary.js.map +7 -0
- package/dist/esm/grpc/proto/haneul/rpc/v2/input.d.ts +98 -0
- package/dist/esm/grpc/proto/haneul/rpc/v2/input.js +70 -0
- package/dist/esm/grpc/proto/haneul/rpc/v2/input.js.map +7 -0
- package/dist/esm/grpc/proto/haneul/rpc/v2/jwk.d.ts +70 -0
- package/dist/esm/grpc/proto/haneul/rpc/v2/jwk.js +68 -0
- package/dist/esm/grpc/proto/haneul/rpc/v2/jwk.js.map +7 -0
- package/dist/esm/grpc/proto/haneul/rpc/v2/ledger_service.client.d.ts +95 -0
- package/dist/esm/grpc/proto/haneul/rpc/v2/ledger_service.client.js +107 -0
- package/dist/esm/grpc/proto/haneul/rpc/v2/ledger_service.client.js.map +7 -0
- package/dist/esm/grpc/proto/haneul/rpc/v2/ledger_service.d.ts +420 -0
- package/dist/esm/grpc/proto/haneul/rpc/v2/ledger_service.js +307 -0
- package/dist/esm/grpc/proto/haneul/rpc/v2/ledger_service.js.map +7 -0
- package/dist/esm/grpc/proto/haneul/rpc/v2/move_package.d.ts +579 -0
- package/dist/esm/grpc/proto/haneul/rpc/v2/move_package.js +460 -0
- package/dist/esm/grpc/proto/haneul/rpc/v2/move_package.js.map +7 -0
- package/dist/esm/grpc/proto/haneul/rpc/v2/move_package_service.client.d.ts +61 -0
- package/dist/esm/grpc/proto/haneul/rpc/v2/move_package_service.client.js +66 -0
- package/dist/esm/grpc/proto/haneul/rpc/v2/move_package_service.client.js.map +7 -0
- package/dist/esm/grpc/proto/haneul/rpc/v2/move_package_service.d.ts +229 -0
- package/dist/esm/grpc/proto/haneul/rpc/v2/move_package_service.js +206 -0
- package/dist/esm/grpc/proto/haneul/rpc/v2/move_package_service.js.map +7 -0
- package/dist/esm/grpc/proto/haneul/rpc/v2/name_service.client.d.ts +41 -0
- package/dist/esm/grpc/proto/haneul/rpc/v2/name_service.client.js +40 -0
- package/dist/esm/grpc/proto/haneul/rpc/v2/name_service.client.js.map +7 -0
- package/dist/esm/grpc/proto/haneul/rpc/v2/name_service.d.ts +144 -0
- package/dist/esm/grpc/proto/haneul/rpc/v2/name_service.js +118 -0
- package/dist/esm/grpc/proto/haneul/rpc/v2/name_service.js.map +7 -0
- package/dist/esm/grpc/proto/haneul/rpc/v2/object.d.ts +127 -0
- package/dist/esm/grpc/proto/haneul/rpc/v2/object.js +93 -0
- package/dist/esm/grpc/proto/haneul/rpc/v2/object.js.map +7 -0
- package/dist/esm/grpc/proto/haneul/rpc/v2/object_reference.d.ts +34 -0
- package/dist/esm/grpc/proto/haneul/rpc/v2/object_reference.js +36 -0
- package/dist/esm/grpc/proto/haneul/rpc/v2/object_reference.js.map +7 -0
- package/dist/esm/grpc/proto/haneul/rpc/v2/owner.d.ts +61 -0
- package/dist/esm/grpc/proto/haneul/rpc/v2/owner.js +45 -0
- package/dist/esm/grpc/proto/haneul/rpc/v2/owner.js.map +7 -0
- package/dist/esm/grpc/proto/haneul/rpc/v2/protocol_config.d.ts +30 -0
- package/dist/esm/grpc/proto/haneul/rpc/v2/protocol_config.js +42 -0
- package/dist/esm/grpc/proto/haneul/rpc/v2/protocol_config.js.map +7 -0
- package/dist/esm/grpc/proto/haneul/rpc/v2/signature.d.ts +630 -0
- package/dist/esm/grpc/proto/haneul/rpc/v2/signature.js +494 -0
- package/dist/esm/grpc/proto/haneul/rpc/v2/signature.js.map +7 -0
- package/dist/esm/grpc/proto/haneul/rpc/v2/signature_scheme.d.ts +40 -0
- package/dist/esm/grpc/proto/haneul/rpc/v2/signature_scheme.js +14 -0
- package/dist/esm/grpc/proto/haneul/rpc/v2/signature_scheme.js.map +7 -0
- package/dist/esm/grpc/proto/haneul/rpc/v2/signature_verification_service.client.d.ts +35 -0
- package/dist/esm/grpc/proto/haneul/rpc/v2/signature_verification_service.client.js +29 -0
- package/dist/esm/grpc/proto/haneul/rpc/v2/signature_verification_service.client.js.map +7 -0
- package/dist/esm/grpc/proto/haneul/rpc/v2/signature_verification_service.d.ts +79 -0
- package/dist/esm/grpc/proto/haneul/rpc/v2/signature_verification_service.js +56 -0
- package/dist/esm/grpc/proto/haneul/rpc/v2/signature_verification_service.js.map +7 -0
- package/dist/esm/grpc/proto/haneul/rpc/v2/state_service.client.d.ts +71 -0
- package/dist/esm/grpc/proto/haneul/rpc/v2/state_service.client.js +79 -0
- package/dist/esm/grpc/proto/haneul/rpc/v2/state_service.client.js.map +7 -0
- package/dist/esm/grpc/proto/haneul/rpc/v2/state_service.d.ts +690 -0
- package/dist/esm/grpc/proto/haneul/rpc/v2/state_service.js +526 -0
- package/dist/esm/grpc/proto/haneul/rpc/v2/state_service.js.map +7 -0
- package/dist/esm/grpc/proto/haneul/rpc/v2/subscription_service.client.d.ts +55 -0
- package/dist/esm/grpc/proto/haneul/rpc/v2/subscription_service.client.js +39 -0
- package/dist/esm/grpc/proto/haneul/rpc/v2/subscription_service.client.js.map +7 -0
- package/dist/esm/grpc/proto/haneul/rpc/v2/subscription_service.d.ts +57 -0
- package/dist/esm/grpc/proto/haneul/rpc/v2/subscription_service.js +43 -0
- package/dist/esm/grpc/proto/haneul/rpc/v2/subscription_service.js.map +7 -0
- package/dist/esm/grpc/proto/haneul/rpc/v2/system_state.d.ts +684 -0
- package/dist/esm/grpc/proto/haneul/rpc/v2/system_state.js +654 -0
- package/dist/esm/grpc/proto/haneul/rpc/v2/system_state.js.map +7 -0
- package/dist/esm/grpc/proto/haneul/rpc/v2/transaction.d.ts +1321 -0
- package/dist/esm/grpc/proto/haneul/rpc/v2/transaction.js +911 -0
- package/dist/esm/grpc/proto/haneul/rpc/v2/transaction.js.map +7 -0
- package/dist/esm/grpc/proto/haneul/rpc/v2/transaction_execution_service.client.d.ts +41 -0
- package/dist/esm/grpc/proto/haneul/rpc/v2/transaction_execution_service.client.js +40 -0
- package/dist/esm/grpc/proto/haneul/rpc/v2/transaction_execution_service.client.js.map +7 -0
- package/dist/esm/grpc/proto/haneul/rpc/v2/transaction_execution_service.d.ts +184 -0
- package/dist/esm/grpc/proto/haneul/rpc/v2/transaction_execution_service.js +139 -0
- package/dist/esm/grpc/proto/haneul/rpc/v2/transaction_execution_service.js.map +7 -0
- package/dist/esm/jsonRpc/client.d.ts +264 -0
- package/dist/esm/jsonRpc/client.js +818 -0
- package/dist/esm/jsonRpc/client.js.map +7 -0
- package/dist/esm/jsonRpc/core.d.ts +93 -0
- package/dist/esm/jsonRpc/core.js +624 -0
- package/dist/esm/jsonRpc/core.js.map +7 -0
- package/dist/esm/jsonRpc/errors.d.ts +12 -0
- package/dist/esm/jsonRpc/errors.js +40 -0
- package/dist/esm/jsonRpc/errors.js.map +7 -0
- package/dist/esm/jsonRpc/http-transport.d.ts +42 -0
- package/dist/esm/jsonRpc/http-transport.js +99 -0
- package/dist/esm/jsonRpc/http-transport.js.map +7 -0
- package/dist/esm/jsonRpc/index.d.ts +4 -0
- package/dist/esm/jsonRpc/index.js +17 -0
- package/dist/esm/jsonRpc/index.js.map +7 -0
- package/dist/esm/jsonRpc/json-rpc-resolver.d.ts +4 -0
- package/dist/esm/jsonRpc/json-rpc-resolver.js +295 -0
- package/dist/esm/jsonRpc/json-rpc-resolver.js.map +7 -0
- package/dist/esm/jsonRpc/rpc-websocket-client.d.ts +43 -0
- package/dist/esm/jsonRpc/rpc-websocket-client.js +174 -0
- package/dist/esm/jsonRpc/rpc-websocket-client.js.map +7 -0
- package/dist/esm/jsonRpc/types/chain.d.ts +99 -0
- package/dist/esm/jsonRpc/types/chain.js +1 -0
- package/dist/esm/jsonRpc/types/chain.js.map +7 -0
- package/dist/esm/jsonRpc/types/changes.d.ts +19 -0
- package/dist/esm/jsonRpc/types/changes.js +1 -0
- package/dist/esm/jsonRpc/types/changes.js.map +7 -0
- package/dist/esm/jsonRpc/types/coins.d.ts +6 -0
- package/dist/esm/jsonRpc/types/coins.js +1 -0
- package/dist/esm/jsonRpc/types/coins.js.map +7 -0
- package/dist/esm/jsonRpc/types/common.d.ts +2 -0
- package/dist/esm/jsonRpc/types/common.js +1 -0
- package/dist/esm/jsonRpc/types/common.js.map +7 -0
- package/dist/esm/jsonRpc/types/generated.d.ts +1492 -0
- package/dist/esm/jsonRpc/types/generated.js +1 -0
- package/dist/esm/jsonRpc/types/generated.js.map +7 -0
- package/dist/esm/jsonRpc/types/index.d.ts +6 -0
- package/dist/esm/jsonRpc/types/index.js +1 -0
- package/dist/esm/jsonRpc/types/index.js.map +7 -0
- package/dist/esm/jsonRpc/types/params.d.ts +656 -0
- package/dist/esm/jsonRpc/types/params.js +1 -0
- package/dist/esm/jsonRpc/types/params.js.map +7 -0
- package/dist/esm/keypairs/ed25519/ed25519-hd-key.d.ts +8 -0
- package/dist/esm/keypairs/ed25519/ed25519-hd-key.js +57 -0
- package/dist/esm/keypairs/ed25519/ed25519-hd-key.js.map +7 -0
- package/dist/esm/keypairs/ed25519/index.d.ts +2 -0
- package/dist/esm/keypairs/ed25519/index.js +11 -0
- package/dist/esm/keypairs/ed25519/index.js.map +7 -0
- package/dist/esm/keypairs/ed25519/keypair.d.ts +74 -0
- package/dist/esm/keypairs/ed25519/keypair.js +147 -0
- package/dist/esm/keypairs/ed25519/keypair.js.map +7 -0
- package/dist/esm/keypairs/ed25519/publickey.d.ts +30 -0
- package/dist/esm/keypairs/ed25519/publickey.js +72 -0
- package/dist/esm/keypairs/ed25519/publickey.js.map +7 -0
- package/dist/esm/keypairs/passkey/index.d.ts +3 -0
- package/dist/esm/keypairs/passkey/index.js +9 -0
- package/dist/esm/keypairs/passkey/index.js.map +7 -0
- package/dist/esm/keypairs/passkey/keypair.d.ts +113 -0
- package/dist/esm/keypairs/passkey/keypair.js +236 -0
- package/dist/esm/keypairs/passkey/keypair.js.map +7 -0
- package/dist/esm/keypairs/passkey/publickey.d.ts +72 -0
- package/dist/esm/keypairs/passkey/publickey.js +148 -0
- package/dist/esm/keypairs/passkey/publickey.js.map +7 -0
- package/dist/esm/keypairs/passkey/types.d.ts +12 -0
- package/dist/esm/keypairs/passkey/types.js +1 -0
- package/dist/esm/keypairs/passkey/types.js.map +7 -0
- package/dist/esm/keypairs/secp256k1/index.d.ts +2 -0
- package/dist/esm/keypairs/secp256k1/index.js +11 -0
- package/dist/esm/keypairs/secp256k1/index.js.map +7 -0
- package/dist/esm/keypairs/secp256k1/keypair.d.ts +73 -0
- package/dist/esm/keypairs/secp256k1/keypair.js +130 -0
- package/dist/esm/keypairs/secp256k1/keypair.js.map +7 -0
- package/dist/esm/keypairs/secp256k1/publickey.d.ts +30 -0
- package/dist/esm/keypairs/secp256k1/publickey.js +77 -0
- package/dist/esm/keypairs/secp256k1/publickey.js.map +7 -0
- package/dist/esm/keypairs/secp256r1/index.d.ts +2 -0
- package/dist/esm/keypairs/secp256r1/index.js +11 -0
- package/dist/esm/keypairs/secp256r1/index.js.map +7 -0
- package/dist/esm/keypairs/secp256r1/keypair.d.ts +73 -0
- package/dist/esm/keypairs/secp256r1/keypair.js +124 -0
- package/dist/esm/keypairs/secp256r1/keypair.js.map +7 -0
- package/dist/esm/keypairs/secp256r1/publickey.d.ts +30 -0
- package/dist/esm/keypairs/secp256r1/publickey.js +74 -0
- package/dist/esm/keypairs/secp256r1/publickey.js.map +7 -0
- package/dist/esm/multisig/index.d.ts +2 -0
- package/dist/esm/multisig/index.js +8 -0
- package/dist/esm/multisig/index.js.map +7 -0
- package/dist/esm/multisig/publickey.d.ts +114 -0
- package/dist/esm/multisig/publickey.js +243 -0
- package/dist/esm/multisig/publickey.js.map +7 -0
- package/dist/esm/multisig/signer.d.ts +20 -0
- package/dist/esm/multisig/signer.js +85 -0
- package/dist/esm/multisig/signer.js.map +7 -0
- package/dist/esm/package.json +5 -0
- package/dist/esm/transactions/Arguments.d.ts +49 -0
- package/dist/esm/transactions/Arguments.js +13 -0
- package/dist/esm/transactions/Arguments.js.map +7 -0
- package/dist/esm/transactions/Commands.d.ts +57 -0
- package/dist/esm/transactions/Commands.js +120 -0
- package/dist/esm/transactions/Commands.js.map +7 -0
- package/dist/esm/transactions/Inputs.d.ts +22 -0
- package/dist/esm/transactions/Inputs.js +60 -0
- package/dist/esm/transactions/Inputs.js.map +7 -0
- package/dist/esm/transactions/ObjectCache.d.ts +83 -0
- package/dist/esm/transactions/ObjectCache.js +221 -0
- package/dist/esm/transactions/ObjectCache.js.map +7 -0
- package/dist/esm/transactions/Transaction.d.ts +710 -0
- package/dist/esm/transactions/Transaction.js +668 -0
- package/dist/esm/transactions/Transaction.js.map +7 -0
- package/dist/esm/transactions/TransactionData.d.ts +73 -0
- package/dist/esm/transactions/TransactionData.js +413 -0
- package/dist/esm/transactions/TransactionData.js.map +7 -0
- package/dist/esm/transactions/__tests__/Transaction.test.d.ts +1 -0
- package/dist/esm/transactions/__tests__/bcs.test.d.ts +1 -0
- package/dist/esm/transactions/data/internal.d.ts +1010 -0
- package/dist/esm/transactions/data/internal.js +215 -0
- package/dist/esm/transactions/data/internal.js.map +7 -0
- package/dist/esm/transactions/data/v1.d.ts +312 -0
- package/dist/esm/transactions/data/v1.js +481 -0
- package/dist/esm/transactions/data/v1.js.map +7 -0
- package/dist/esm/transactions/data/v2.d.ts +153 -0
- package/dist/esm/transactions/data/v2.js +121 -0
- package/dist/esm/transactions/data/v2.js.map +7 -0
- package/dist/esm/transactions/executor/caching.d.ts +31 -0
- package/dist/esm/transactions/executor/caching.js +94 -0
- package/dist/esm/transactions/executor/caching.js.map +7 -0
- package/dist/esm/transactions/executor/parallel.d.ts +37 -0
- package/dist/esm/transactions/executor/parallel.js +360 -0
- package/dist/esm/transactions/executor/parallel.js.map +7 -0
- package/dist/esm/transactions/executor/queue.d.ts +11 -0
- package/dist/esm/transactions/executor/queue.js +65 -0
- package/dist/esm/transactions/executor/queue.js.map +7 -0
- package/dist/esm/transactions/executor/serial.d.ts +31 -0
- package/dist/esm/transactions/executor/serial.js +117 -0
- package/dist/esm/transactions/executor/serial.js.map +7 -0
- package/dist/esm/transactions/hash.d.ts +7 -0
- package/dist/esm/transactions/hash.js +12 -0
- package/dist/esm/transactions/hash.js.map +7 -0
- package/dist/esm/transactions/index.d.ts +21 -0
- package/dist/esm/transactions/index.js +39 -0
- package/dist/esm/transactions/index.js.map +7 -0
- package/dist/esm/transactions/intents/CoinWithBalance.d.ts +9 -0
- package/dist/esm/transactions/intents/CoinWithBalance.js +168 -0
- package/dist/esm/transactions/intents/CoinWithBalance.js.map +7 -0
- package/dist/esm/transactions/object.d.ts +16 -0
- package/dist/esm/transactions/object.js +58 -0
- package/dist/esm/transactions/object.js.map +7 -0
- package/dist/esm/transactions/plugins/NamedPackagesPlugin.d.ts +48 -0
- package/dist/esm/transactions/plugins/NamedPackagesPlugin.js +47 -0
- package/dist/esm/transactions/plugins/NamedPackagesPlugin.js.map +7 -0
- package/dist/esm/transactions/pure.d.ts +20 -0
- package/dist/esm/transactions/pure.js +37 -0
- package/dist/esm/transactions/pure.js.map +7 -0
- package/dist/esm/transactions/resolve.d.ts +13 -0
- package/dist/esm/transactions/resolve.js +78 -0
- package/dist/esm/transactions/resolve.js.map +7 -0
- package/dist/esm/transactions/serializer.d.ts +7 -0
- package/dist/esm/transactions/serializer.js +162 -0
- package/dist/esm/transactions/serializer.js.map +7 -0
- package/dist/esm/transactions/utils.d.ts +10 -0
- package/dist/esm/transactions/utils.js +115 -0
- package/dist/esm/transactions/utils.js.map +7 -0
- package/dist/esm/utils/constants.d.ts +10 -0
- package/dist/esm/utils/constants.js +24 -0
- package/dist/esm/utils/constants.js.map +7 -0
- package/dist/esm/utils/derived-objects.d.ts +5 -0
- package/dist/esm/utils/derived-objects.js +14 -0
- package/dist/esm/utils/derived-objects.js.map +7 -0
- package/dist/esm/utils/dynamic-fields.d.ts +2 -0
- package/dist/esm/utils/dynamic-fields.js +21 -0
- package/dist/esm/utils/dynamic-fields.js.map +7 -0
- package/dist/esm/utils/format.d.ts +2 -0
- package/dist/esm/utils/format.js +16 -0
- package/dist/esm/utils/format.js.map +7 -0
- package/dist/esm/utils/haneul-types.d.ts +26 -0
- package/dist/esm/utils/haneul-types.js +71 -0
- package/dist/esm/utils/haneul-types.js.map +7 -0
- package/dist/esm/utils/haneulns.d.ts +2 -0
- package/dist/esm/utils/haneulns.js +37 -0
- package/dist/esm/utils/haneulns.js.map +7 -0
- package/dist/esm/utils/index.d.ts +9 -0
- package/dist/esm/utils/index.js +80 -0
- package/dist/esm/utils/index.js.map +7 -0
- package/dist/esm/utils/move-registry.d.ts +6 -0
- package/dist/esm/utils/move-registry.js +25 -0
- package/dist/esm/utils/move-registry.js.map +7 -0
- package/dist/esm/verify/index.d.ts +1 -0
- package/dist/esm/verify/index.js +15 -0
- package/dist/esm/verify/index.js.map +7 -0
- package/dist/esm/verify/verify.d.ts +21 -0
- package/dist/esm/verify/verify.js +104 -0
- package/dist/esm/verify/verify.js.map +7 -0
- package/dist/esm/version.d.ts +2 -0
- package/dist/esm/version.js +7 -0
- package/dist/esm/version.js.map +7 -0
- package/dist/esm/zklogin/address.d.ts +16 -0
- package/dist/esm/zklogin/address.js +72 -0
- package/dist/esm/zklogin/address.js.map +7 -0
- package/dist/esm/zklogin/bcs.d.ts +28 -0
- package/dist/esm/zklogin/bcs.js +22 -0
- package/dist/esm/zklogin/bcs.js.map +7 -0
- package/dist/esm/zklogin/index.d.ts +9 -0
- package/dist/esm/zklogin/index.js +35 -0
- package/dist/esm/zklogin/index.js.map +7 -0
- package/dist/esm/zklogin/jwt-decode.d.ts +47 -0
- package/dist/esm/zklogin/jwt-decode.js +65 -0
- package/dist/esm/zklogin/jwt-decode.js.map +7 -0
- package/dist/esm/zklogin/jwt-utils.d.ts +12 -0
- package/dist/esm/zklogin/jwt-utils.js +101 -0
- package/dist/esm/zklogin/jwt-utils.js.map +7 -0
- package/dist/esm/zklogin/nonce.d.ts +4 -0
- package/dist/esm/zklogin/nonce.js +34 -0
- package/dist/esm/zklogin/nonce.js.map +7 -0
- package/dist/esm/zklogin/poseidon.d.ts +2 -0
- package/dist/esm/zklogin/poseidon.js +60 -0
- package/dist/esm/zklogin/poseidon.js.map +7 -0
- package/dist/esm/zklogin/publickey.d.ts +87 -0
- package/dist/esm/zklogin/publickey.js +237 -0
- package/dist/esm/zklogin/publickey.js.map +7 -0
- package/dist/esm/zklogin/signature.d.ts +23 -0
- package/dist/esm/zklogin/signature.js +28 -0
- package/dist/esm/zklogin/signature.js.map +7 -0
- package/dist/esm/zklogin/utils.d.ts +16 -0
- package/dist/esm/zklogin/utils.js +77 -0
- package/dist/esm/zklogin/utils.js.map +7 -0
- package/dist/tsconfig.esm.tsbuildinfo +1 -0
- package/dist/tsconfig.tsbuildinfo +1 -0
- package/experimental/package.json +6 -0
- package/faucet/package.json +6 -0
- package/graphql/package.json +6 -0
- package/graphql/schemas/2024.1/package.json +6 -0
- package/graphql/schemas/2024.4/package.json +6 -0
- package/graphql/schemas/latest/package.json +6 -0
- package/grpc/package.json +6 -0
- package/jsonRpc/package.json +6 -0
- package/keypairs/ed25519/package.json +6 -0
- package/keypairs/passkey/package.json +6 -0
- package/keypairs/secp256k1/package.json +6 -0
- package/keypairs/secp256r1/package.json +6 -0
- package/multisig/package.json +6 -0
- package/package.json +196 -0
- package/src/bcs/bcs.ts +321 -0
- package/src/bcs/effects.ts +206 -0
- package/src/bcs/index.ts +96 -0
- package/src/bcs/pure.ts +92 -0
- package/src/bcs/type-tag-serializer.ts +110 -0
- package/src/bcs/types.ts +113 -0
- package/src/client/index.ts +21 -0
- package/src/client/network.ts +17 -0
- package/src/cryptography/index.ts +36 -0
- package/src/cryptography/intent.ts +22 -0
- package/src/cryptography/keypair.ts +157 -0
- package/src/cryptography/mnemonics.ts +49 -0
- package/src/cryptography/publickey.ts +168 -0
- package/src/cryptography/signature-scheme.ts +37 -0
- package/src/cryptography/signature.ts +76 -0
- package/src/experimental/cache.ts +78 -0
- package/src/experimental/client.ts +60 -0
- package/src/experimental/core.ts +197 -0
- package/src/experimental/errors.ts +37 -0
- package/src/experimental/index.ts +24 -0
- package/src/experimental/mvr.ts +488 -0
- package/src/experimental/transports/utils.ts +117 -0
- package/src/experimental/types.ts +569 -0
- package/src/faucet/faucet.ts +189 -0
- package/src/faucet/index.ts +11 -0
- package/src/graphql/client.ts +134 -0
- package/src/graphql/core.ts +629 -0
- package/src/graphql/generated/2024.1/schema.graphql +4182 -0
- package/src/graphql/generated/2024.1/tada-env.ts +13144 -0
- package/src/graphql/generated/2024.1/tsconfig.tada.json +11 -0
- package/src/graphql/generated/2024.4/schema.graphql +4211 -0
- package/src/graphql/generated/2024.4/tada-env.ts +13290 -0
- package/src/graphql/generated/2024.4/tsconfig.tada.json +11 -0
- package/src/graphql/generated/latest/schema.graphql +4312 -0
- package/src/graphql/generated/latest/tada-env.ts +12928 -0
- package/src/graphql/generated/latest/tsconfig.tada.json +11 -0
- package/src/graphql/generated/queries.ts +5391 -0
- package/src/graphql/index.ts +12 -0
- package/src/graphql/queries/getAllBalances.graphql +19 -0
- package/src/graphql/queries/getBalance.graphql +13 -0
- package/src/graphql/queries/getCoins.graphql +37 -0
- package/src/graphql/queries/getDynamicFields.graphql +36 -0
- package/src/graphql/queries/getMoveFunction.graphql +20 -0
- package/src/graphql/queries/getReferenceGasPrice.graphql +8 -0
- package/src/graphql/queries/nameService.graphql +8 -0
- package/src/graphql/queries/objects.graphql +83 -0
- package/src/graphql/queries/transactions.graphql +101 -0
- package/src/graphql/queries/verifyZkLoginSignature.graphql +16 -0
- package/src/graphql/schemas/2024.1/index.ts +17 -0
- package/src/graphql/schemas/2024.4/index.ts +17 -0
- package/src/graphql/schemas/latest/index.ts +17 -0
- package/src/graphql/types.ts +87 -0
- package/src/grpc/client.ts +62 -0
- package/src/grpc/core.ts +757 -0
- package/src/grpc/index.ts +7 -0
- package/src/grpc/proto/google/protobuf/any.ts +296 -0
- package/src/grpc/proto/google/protobuf/duration.ts +187 -0
- package/src/grpc/proto/google/protobuf/empty.ts +64 -0
- package/src/grpc/proto/google/protobuf/field_mask.ts +309 -0
- package/src/grpc/proto/google/protobuf/struct.ts +327 -0
- package/src/grpc/proto/google/protobuf/timestamp.ts +260 -0
- package/src/grpc/proto/google/rpc/error_details.ts +667 -0
- package/src/grpc/proto/google/rpc/status.ts +74 -0
- package/src/grpc/proto/haneul/rpc/v2/argument.ts +90 -0
- package/src/grpc/proto/haneul/rpc/v2/balance_change.ts +51 -0
- package/src/grpc/proto/haneul/rpc/v2/bcs.ts +46 -0
- package/src/grpc/proto/haneul/rpc/v2/checkpoint.ts +102 -0
- package/src/grpc/proto/haneul/rpc/v2/checkpoint_contents.ts +111 -0
- package/src/grpc/proto/haneul/rpc/v2/checkpoint_summary.ts +295 -0
- package/src/grpc/proto/haneul/rpc/v2/effects.ts +491 -0
- package/src/grpc/proto/haneul/rpc/v2/epoch.ts +113 -0
- package/src/grpc/proto/haneul/rpc/v2/error_reason.ts +28 -0
- package/src/grpc/proto/haneul/rpc/v2/event.ts +115 -0
- package/src/grpc/proto/haneul/rpc/v2/executed_transaction.ts +122 -0
- package/src/grpc/proto/haneul/rpc/v2/execution_status.ts +1079 -0
- package/src/grpc/proto/haneul/rpc/v2/gas_cost_summary.ts +87 -0
- package/src/grpc/proto/haneul/rpc/v2/input.ts +132 -0
- package/src/grpc/proto/haneul/rpc/v2/jwk.ts +94 -0
- package/src/grpc/proto/haneul/rpc/v2/ledger_service.client.ts +217 -0
- package/src/grpc/proto/haneul/rpc/v2/ledger_service.ts +625 -0
- package/src/grpc/proto/haneul/rpc/v2/move_package.ts +800 -0
- package/src/grpc/proto/haneul/rpc/v2/move_package_service.client.ts +135 -0
- package/src/grpc/proto/haneul/rpc/v2/move_package_service.ts +315 -0
- package/src/grpc/proto/haneul/rpc/v2/name_service.client.ts +83 -0
- package/src/grpc/proto/haneul/rpc/v2/name_service.ts +198 -0
- package/src/grpc/proto/haneul/rpc/v2/object.ts +186 -0
- package/src/grpc/proto/haneul/rpc/v2/object_reference.ts +58 -0
- package/src/grpc/proto/haneul/rpc/v2/owner.ts +91 -0
- package/src/grpc/proto/haneul/rpc/v2/protocol_config.ts +66 -0
- package/src/grpc/proto/haneul/rpc/v2/signature.ts +864 -0
- package/src/grpc/proto/haneul/rpc/v2/signature_scheme.ts +51 -0
- package/src/grpc/proto/haneul/rpc/v2/signature_verification_service.client.ts +63 -0
- package/src/grpc/proto/haneul/rpc/v2/signature_verification_service.ts +106 -0
- package/src/grpc/proto/haneul/rpc/v2/state_service.client.ts +161 -0
- package/src/grpc/proto/haneul/rpc/v2/state_service.ts +889 -0
- package/src/grpc/proto/haneul/rpc/v2/subscription_service.client.ts +81 -0
- package/src/grpc/proto/haneul/rpc/v2/subscription_service.ts +93 -0
- package/src/grpc/proto/haneul/rpc/v2/system_state.ts +1184 -0
- package/src/grpc/proto/haneul/rpc/v2/transaction.ts +1974 -0
- package/src/grpc/proto/haneul/rpc/v2/transaction_execution_service.client.ts +85 -0
- package/src/grpc/proto/haneul/rpc/v2/transaction_execution_service.ts +282 -0
- package/src/jsonRpc/client.ts +1120 -0
- package/src/jsonRpc/core.ts +711 -0
- package/src/jsonRpc/errors.ts +45 -0
- package/src/jsonRpc/http-transport.ts +143 -0
- package/src/jsonRpc/index.ts +20 -0
- package/src/jsonRpc/json-rpc-resolver.ts +420 -0
- package/src/jsonRpc/rpc-websocket-client.ts +241 -0
- package/src/jsonRpc/types/chain.ts +122 -0
- package/src/jsonRpc/types/changes.ts +11 -0
- package/src/jsonRpc/types/coins.ts +9 -0
- package/src/jsonRpc/types/common.ts +5 -0
- package/src/jsonRpc/types/generated.ts +1639 -0
- package/src/jsonRpc/types/index.ts +9 -0
- package/src/jsonRpc/types/params.ts +660 -0
- package/src/keypairs/ed25519/ed25519-hd-key.ts +83 -0
- package/src/keypairs/ed25519/index.ts +9 -0
- package/src/keypairs/ed25519/keypair.ts +181 -0
- package/src/keypairs/ed25519/publickey.ts +89 -0
- package/src/keypairs/passkey/index.ts +5 -0
- package/src/keypairs/passkey/keypair.ts +306 -0
- package/src/keypairs/passkey/publickey.ts +188 -0
- package/src/keypairs/passkey/types.ts +16 -0
- package/src/keypairs/secp256k1/index.ts +9 -0
- package/src/keypairs/secp256k1/keypair.ts +161 -0
- package/src/keypairs/secp256k1/publickey.ts +94 -0
- package/src/keypairs/secp256r1/index.ts +9 -0
- package/src/keypairs/secp256r1/keypair.ts +157 -0
- package/src/keypairs/secp256r1/publickey.ts +91 -0
- package/src/multisig/index.ts +5 -0
- package/src/multisig/publickey.ts +358 -0
- package/src/multisig/signer.ts +93 -0
- package/src/transactions/Arguments.ts +27 -0
- package/src/transactions/Commands.ts +184 -0
- package/src/transactions/Inputs.ts +68 -0
- package/src/transactions/ObjectCache.ts +300 -0
- package/src/transactions/Transaction.ts +927 -0
- package/src/transactions/TransactionData.ts +560 -0
- package/src/transactions/__tests__/Transaction.test.ts +184 -0
- package/src/transactions/__tests__/bcs.test.ts +205 -0
- package/src/transactions/data/internal.ts +334 -0
- package/src/transactions/data/v1.ts +548 -0
- package/src/transactions/data/v2.ts +148 -0
- package/src/transactions/executor/caching.ts +111 -0
- package/src/transactions/executor/parallel.ts +459 -0
- package/src/transactions/executor/queue.ts +65 -0
- package/src/transactions/executor/serial.ts +145 -0
- package/src/transactions/hash.ts +20 -0
- package/src/transactions/index.ts +62 -0
- package/src/transactions/intents/CoinWithBalance.ts +230 -0
- package/src/transactions/object.ts +68 -0
- package/src/transactions/plugins/NamedPackagesPlugin.ts +111 -0
- package/src/transactions/pure.ts +66 -0
- package/src/transactions/resolve.ts +124 -0
- package/src/transactions/serializer.ts +212 -0
- package/src/transactions/utils.ts +142 -0
- package/src/utils/constants.ts +16 -0
- package/src/utils/derived-objects.ts +22 -0
- package/src/utils/dynamic-fields.ts +30 -0
- package/src/utils/format.ts +19 -0
- package/src/utils/haneul-types.ts +114 -0
- package/src/utils/haneulns.ts +43 -0
- package/src/utils/index.ts +48 -0
- package/src/utils/move-registry.ts +43 -0
- package/src/verify/index.ts +11 -0
- package/src/verify/verify.ts +149 -0
- package/src/version.ts +7 -0
- package/src/zklogin/address.ts +101 -0
- package/src/zklogin/bcs.ts +26 -0
- package/src/zklogin/index.ts +22 -0
- package/src/zklogin/jwt-decode.ts +127 -0
- package/src/zklogin/jwt-utils.ts +142 -0
- package/src/zklogin/nonce.ts +39 -0
- package/src/zklogin/poseidon.ts +64 -0
- package/src/zklogin/publickey.ts +286 -0
- package/src/zklogin/signature.ts +38 -0
- package/src/zklogin/utils.ts +112 -0
- package/transactions/package.json +6 -0
- package/utils/package.json +6 -0
- package/verify/package.json +6 -0
- package/zklogin/package.json +6 -0
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
{
|
|
2
|
+
"version": 3,
|
|
3
|
+
"sources": ["../../../../src/graphql/generated/queries.ts"],
|
|
4
|
+
"sourcesContent": ["// Copyright (c) Mysten Labs, Inc.\n// SPDX-License-Identifier: Apache-2.0\n/* eslint-disable */\n\nimport { MoveTypeLayout } from '../types.js';\nimport { MoveTypeSignature } from '../types.js';\nimport { OpenMoveTypeSignature } from '../types.js';\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: string; output: string; }\n /** String representation of an arbitrary width, possibly signed integer */\n BigInt: { input: string; output: string; }\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: string; output: string; }\n /** String containing 32 byte hex-encoded address, with a leading '0x'. Leading zeroes can be omitted on input but will always appear in outputs (HaneulAddress in output is guaranteed to be 66 characters long). */\n HaneulAddress: { input: string; output: string; }\n /** Arbitrary JSON data. */\n JSON: { input: unknown; output: unknown; }\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: MoveTypeLayout; output: MoveTypeLayout; }\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: MoveTypeSignature; output: MoveTypeSignature; }\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: OpenMoveTypeSignature; output: OpenMoveTypeSignature; }\n /** An unsigned integer that can hold values up to 2^53 - 1. This can be treated similarly to `Int`, but it is guaranteed to be non-negative, and it may be larger than 2^32 - 1. */\n UInt53: { input: number; output: number; }\n};\n\n/** System transaction for creating the accumulator root. */\nexport type AccumulatorRootCreateTransaction = {\n __typename?: 'AccumulatorRootCreateTransaction';\n /** A workaround to define an empty variant of a GraphQL union. */\n _?: Maybe<Scalars['Boolean']['output']>;\n};\n\nexport type ActiveJwk = {\n __typename?: 'ActiveJwk';\n /** The JWK algorithm parameter, (RFC 7517, Section 4.4). */\n alg?: Maybe<Scalars['String']['output']>;\n /** The JWK RSA public exponent, (RFC 7517, Section 9.3). */\n e?: Maybe<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?: Maybe<Scalars['String']['output']>;\n /** The string (Key ID) that identifies the JWK among a set of JWKs, (RFC 7517, Section 4.5). */\n kid?: Maybe<Scalars['String']['output']>;\n /** The JWK key type parameter, (RFC 7517, Section 4.1). */\n kty?: Maybe<Scalars['String']['output']>;\n /** The JWK RSA modulus, (RFC 7517, Section 9.3). */\n n?: Maybe<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\nexport type Address = IAddressable & {\n __typename?: 'Address';\n /** The Address' identifier, a 32-byte number represented as a 64-character hex string, with a lead \"0x\". */\n address: Scalars['HaneulAddress']['output'];\n /** Attempts to fetch the object at this address. */\n asObject?: Maybe<Object>;\n /**\n * Fetch the total balance for coins with marker type `coinType` (e.g. `0x2::haneul::HANEUL`), owned by this address.\n *\n * Returns `None` when no checkpoint is set in scope (e.g. execution scope).\n * If the address does not own any coins of that type, a balance of zero is returned.\n */\n balance?: Maybe<Balance>;\n /** Total balance across coins owned by this address, grouped by coin type. */\n balances?: Maybe<BalanceConnection>;\n /** The domain explicitly configured as the default HaneulNS name for this address. */\n defaultHaneulnsName?: Maybe<Scalars['String']['output']>;\n /**\n * Access a dynamic field on an object using its type and BCS-encoded name.\n *\n * Returns `null` if a dynamic field with that name could not be found attached to the object with this address.\n */\n dynamicField?: Maybe<DynamicField>;\n /**\n * Dynamic fields owned by this address.\n *\n * The address must correspond to an object (account addresses cannot own dynamic fields), but that object may be wrapped.\n */\n dynamicFields?: Maybe<DynamicFieldConnection>;\n /**\n * Access a dynamic object field on an object using its type and BCS-encoded name.\n *\n * Returns `null` if a dynamic object field with that name could not be found attached to the object with this address.\n */\n dynamicObjectField?: Maybe<DynamicField>;\n /**\n * Fetch the total balances keyed by coin types (e.g. `0x2::haneul::HANEUL`) owned by this address.\n *\n * Returns `None` when no checkpoint is set in scope (e.g. execution scope).\n * If the address does not own any coins of a given type, a balance of zero is returned for that type.\n */\n multiGetBalances?: Maybe<Array<Balance>>;\n /**\n * Access dynamic fields on an object using their types and BCS-encoded names.\n *\n * Returns a list of dynamic fields that is guaranteed to be the same length as `keys`. If a dynamic field in `keys` could not be found in the store, its corresponding entry in the result will be `null`.\n */\n multiGetDynamicFields: Array<Maybe<DynamicField>>;\n /**\n * Access dynamic object fields on an object using their types and BCS-encoded names.\n *\n * Returns a list of dynamic object fields that is guaranteed to be the same length as `keys`. If a dynamic object field in `keys` could not be found in the store, its corresponding entry in the result will be `null`.\n */\n multiGetDynamicObjectFields: Array<Maybe<DynamicField>>;\n /** Objects owned by this address, optionally filtered by type. */\n objects?: Maybe<MoveObjectConnection>;\n /**\n * Transactions associated with this address.\n *\n * Similar behavior to the `transactions` in Query but supporting the additional `AddressTransactionRelationship` filter, which defaults to `SENT`.\n */\n transactions?: Maybe<TransactionConnection>;\n};\n\n\nexport type AddressBalanceArgs = {\n coinType: Scalars['String']['input'];\n};\n\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\nexport type AddressDynamicFieldArgs = {\n name: DynamicFieldName;\n};\n\n\nexport type AddressDynamicFieldsArgs = {\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 AddressDynamicObjectFieldArgs = {\n name: DynamicFieldName;\n};\n\n\nexport type AddressMultiGetBalancesArgs = {\n keys: Array<Scalars['String']['input']>;\n};\n\n\nexport type AddressMultiGetDynamicFieldsArgs = {\n keys: Array<DynamicFieldName>;\n};\n\n\nexport type AddressMultiGetDynamicObjectFieldsArgs = {\n keys: Array<DynamicFieldName>;\n};\n\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\nexport type AddressTransactionsArgs = {\n after?: InputMaybe<Scalars['String']['input']>;\n before?: InputMaybe<Scalars['String']['input']>;\n filter?: InputMaybe<TransactionFilter>;\n first?: InputMaybe<Scalars['Int']['input']>;\n last?: InputMaybe<Scalars['Int']['input']>;\n relation?: InputMaybe<AddressTransactionRelationship>;\n};\n\n/** System transaction for creating the alias state. */\nexport type AddressAliasStateCreateTransaction = {\n __typename?: 'AddressAliasStateCreateTransaction';\n /** A workaround to define an empty variant of a GraphQL union. */\n _?: Maybe<Scalars['Boolean']['output']>;\n};\n\n/** Object is exclusively owned by a single address, and is mutable. */\nexport type AddressOwner = {\n __typename?: 'AddressOwner';\n /** The owner's address. */\n address?: Maybe<Address>;\n};\n\n/** The possible relationship types for a transaction: sent or affected. */\nexport enum AddressTransactionRelationship {\n /** Transactions that this address was involved in, either as the sender, sponsor, or as the owner of some object that was created, modified or transferred. */\n Affected = 'AFFECTED',\n /** Transactions this address has sent. */\n Sent = 'SENT'\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\n/** System transaction that is executed at the end of an epoch to expire JSON Web Keys (JWKs) that are no longer valid, based on their associated epoch. This is part of the on-chain state management for zkLogin and authentication. */\nexport type AuthenticatorStateExpireTransaction = {\n __typename?: 'AuthenticatorStateExpireTransaction';\n /** The initial version that the AuthenticatorStateUpdate was shared at. */\n authenticatorObjInitialSharedVersion?: Maybe<Scalars['UInt53']['output']>;\n /** Expire JWKs that have a lower epoch than this. */\n minEpoch?: Maybe<Epoch>;\n};\n\nexport type AuthenticatorStateUpdateTransaction = {\n __typename?: 'AuthenticatorStateUpdateTransaction';\n /** The initial version of the authenticator object that it was shared at. */\n authenticatorObjInitialSharedVersion?: Maybe<Scalars['UInt53']['output']>;\n /** Epoch of the authenticator state update transaction. */\n epoch?: Maybe<Epoch>;\n /** Newly active JWKs (JSON Web Keys). */\n newActiveJwks?: Maybe<ActiveJwkConnection>;\n /** Consensus round of the authenticator state update. */\n round?: Maybe<Scalars['UInt53']['output']>;\n};\n\n\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/** Checkpoint range for which data is available. */\nexport type AvailableRange = {\n __typename?: 'AvailableRange';\n /** Inclusive lower checkpoint for which data is available. */\n first?: Maybe<Checkpoint>;\n /** Inclusive upper checkpoint for which data is available. */\n last?: Maybe<Checkpoint>;\n};\n\n/** The total balance for a particular coin type. */\nexport type Balance = {\n __typename?: 'Balance';\n /** Coin type for the balance, such as `0x2::haneul::HANEUL`. */\n coinType?: Maybe<MoveType>;\n /** The total balance across all coin objects of this coin type. */\n totalBalance?: Maybe<Scalars['BigInt']['output']>;\n};\n\n/** Effects to the balance (sum of coin values per coin type) of addresses and objects. */\nexport type BalanceChange = {\n __typename?: 'BalanceChange';\n /** The signed balance change. */\n amount?: Maybe<Scalars['BigInt']['output']>;\n /** The inner type of the coin whose balance has changed (e.g. `0x2::haneul::HANEUL`). */\n coinType?: Maybe<MoveType>;\n /** The address or object whose balance has changed. */\n owner?: Maybe<Address>;\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\n/** System transaction for initializing bridge committee. */\nexport type BridgeCommitteeInitTransaction = {\n __typename?: 'BridgeCommitteeInitTransaction';\n /** The initial shared version of the bridge object. */\n bridgeObjectVersion?: Maybe<Scalars['UInt53']['output']>;\n};\n\n/** System transaction for creating bridge state for cross-chain operations. */\nexport type BridgeStateCreateTransaction = {\n __typename?: 'BridgeStateCreateTransaction';\n /** The chain identifier for which this bridge state is being created. */\n chainIdentifier?: Maybe<Scalars['String']['output']>;\n};\n\n/**\n * A system transaction that updates epoch information on-chain (increments the current epoch). Executed by the system once per epoch, without using gas. Epoch change transactions cannot be submitted by users, because validators will refuse to sign them.\n *\n * This transaction kind is deprecated in favour of `EndOfEpochTransaction`.\n */\nexport type ChangeEpochTransaction = {\n __typename?: 'ChangeEpochTransaction';\n /** The total amount of gas charged for computation during the epoch. */\n computationCharge?: Maybe<Scalars['UInt53']['output']>;\n /** The next (to become) epoch. */\n epoch?: Maybe<Epoch>;\n /** Unix timestamp when epoch started. */\n epochStartTimestamp?: Maybe<Scalars['DateTime']['output']>;\n /** The non-refundable storage fee. */\n nonRefundableStorageFee?: Maybe<Scalars['UInt53']['output']>;\n /** The epoch's corresponding protocol configuration. */\n protocolConfigs?: Maybe<ProtocolConfigs>;\n /** The total amount of gas charged for storage during the epoch. */\n storageCharge?: Maybe<Scalars['UInt53']['output']>;\n /** The amount of storage rebate refunded to the transaction senders. */\n storageRebate?: Maybe<Scalars['UInt53']['output']>;\n /** System packages that will be written by validators before the new epoch starts, to upgrade them on-chain. These objects do not have a \"previous transaction\" because they are not written on-chain yet. Consult `effects.objectChanges` for this transaction to see the actual objects written. */\n systemPackages?: Maybe<MovePackageConnection>;\n};\n\n\n/**\n * A system transaction that updates epoch information on-chain (increments the current epoch). Executed by the system once per epoch, without using gas. Epoch change transactions cannot be submitted by users, because validators will refuse to sign them.\n *\n * This transaction kind is deprecated in favour of `EndOfEpochTransaction`.\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/** Checkpoints contain finalized transactions and are used for node synchronization and global transaction ordering. */\nexport type Checkpoint = {\n __typename?: 'Checkpoint';\n /**\n * A commitment by the committee at each checkpoint on the artifacts of the checkpoint.\n * e.g., object checkpoint states\n */\n artifactsDigest?: Maybe<Scalars['String']['output']>;\n /** The Base64 serialized BCS bytes of this checkpoint's contents. */\n contentBcs?: Maybe<Scalars['Base64']['output']>;\n /** A 32-byte hash that uniquely identifies the checkpoint's content, encoded in Base58. */\n contentDigest?: Maybe<Scalars['String']['output']>;\n /** A 32-byte hash that uniquely identifies the checkpoint, encoded in Base58. This is a hash of the checkpoint's summary. */\n digest?: Maybe<Scalars['String']['output']>;\n /** The epoch that this checkpoint is part of. */\n epoch?: Maybe<Epoch>;\n /** The total number of transactions in the network by the end of this checkpoint. */\n networkTotalTransactions?: Maybe<Scalars['UInt53']['output']>;\n /** The digest of the previous checkpoint's summary. */\n previousCheckpointDigest?: Maybe<Scalars['String']['output']>;\n /** Query the RPC as if this checkpoint were the latest checkpoint. */\n query?: Maybe<Query>;\n /** The computation cost, storage cost, storage rebate, and non-refundable storage fee accumulated during this epoch, up to and including this checkpoint. These values increase monotonically across checkpoints in the same epoch, and reset on epoch boundaries. */\n rollingGasSummary?: Maybe<GasCostSummary>;\n /** The checkpoint's position in the total order of finalized checkpoints, agreed upon by consensus. */\n sequenceNumber: Scalars['UInt53']['output'];\n /** The Base64 serialized BCS bytes of this checkpoint's summary. */\n summaryBcs?: Maybe<Scalars['Base64']['output']>;\n /** The timestamp at which the checkpoint is agreed to have happened according to consensus. Transactions that access time in this checkpoint will observe this timestamp. */\n timestamp?: Maybe<Scalars['DateTime']['output']>;\n transactions?: Maybe<TransactionConnection>;\n /** The aggregation of signatures from a quorum of validators for the checkpoint proposal. */\n validatorSignatures?: Maybe<ValidatorAggregatedSignature>;\n};\n\n\n/** Checkpoints contain finalized transactions and are used for node synchronization and global transaction ordering. */\nexport type CheckpointTransactionsArgs = {\n after?: InputMaybe<Scalars['String']['input']>;\n before?: InputMaybe<Scalars['String']['input']>;\n filter?: InputMaybe<TransactionFilter>;\n first?: InputMaybe<Scalars['Int']['input']>;\n last?: 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\nexport type CheckpointFilter = {\n /** Limit query results to checkpoints that occured strictly after the given checkpoint. */\n afterCheckpoint?: InputMaybe<Scalars['UInt53']['input']>;\n /** Limit query results to checkpoints that occured at the given checkpoint. */\n atCheckpoint?: InputMaybe<Scalars['UInt53']['input']>;\n /** Limit query results to checkpoints at this epoch. */\n atEpoch?: InputMaybe<Scalars['UInt53']['input']>;\n /** Limit query results to checkpoints that occured strictly before the given checkpoint. */\n beforeCheckpoint?: InputMaybe<Scalars['UInt53']['input']>;\n};\n\n/** System transaction for creating the coin deny list state. */\nexport type CoinDenyListStateCreateTransaction = {\n __typename?: 'CoinDenyListStateCreateTransaction';\n /** A workaround to define an empty variant of a GraphQL union. */\n _?: Maybe<Scalars['Boolean']['output']>;\n};\n\n/** An object representing metadata about a coin type. */\nexport type CoinMetadata = IAddressable & IMoveObject & IObject & {\n __typename?: 'CoinMetadata';\n /** The CoinMetadata's ID. */\n address: Scalars['HaneulAddress']['output'];\n /** Whether the `DenyCap` can be used to enable a global pause that behaves as if all addresses were added to the deny list. `null` indicates that it is not known whether the currency can be paused or not. This field is only populated on currencies held in the Coin Registry. To determine whether a legacy currency can be paused, check the contents of its `DenyCap`, if it can be found. */\n allowGlobalPause?: Maybe<Scalars['Boolean']['output']>;\n /**\n * Fetch the total balance for coins with marker type `coinType` (e.g. `0x2::haneul::HANEUL`), owned by this address.\n *\n * If the address does not own any coins of that type, a balance of zero is returned.\n */\n balance?: Maybe<Balance>;\n /** Total balance across coins owned by this address, grouped by coin type. */\n balances?: Maybe<BalanceConnection>;\n /** The structured representation of the object's contents. */\n contents?: Maybe<MoveValue>;\n /** Number of decimal places the coin uses. */\n decimals?: Maybe<Scalars['Int']['output']>;\n /** The domain explicitly configured as the default HaneulNS name for this address. */\n defaultHaneulnsName?: Maybe<Scalars['String']['output']>;\n /** If the currency is regulated, this object represents the capability to modify the deny list. If a capability is known but wrapped, its address can be fetched but other fields will not be accessible. */\n denyCap?: Maybe<MoveObject>;\n /** Description of the coin. */\n description?: Maybe<Scalars['String']['output']>;\n /** 32-byte hash that identifies the object's contents, encoded in Base58. */\n digest?: Maybe<Scalars['String']['output']>;\n /**\n * Access a dynamic field on an object using its type and BCS-encoded name.\n *\n * Returns `null` if a dynamic field with that name could not be found attached to this object.\n */\n dynamicField?: Maybe<DynamicField>;\n /**\n * Dynamic fields owned by this object.\n *\n * Dynamic fields on wrapped objects can be accessed using `Address.dynamicFields`.\n */\n dynamicFields?: Maybe<DynamicFieldConnection>;\n /**\n * Access a dynamic object field on an object using its type and BCS-encoded name.\n *\n * Returns `null` if a dynamic object field with that name could not be found attached to this object.\n */\n dynamicObjectField?: Maybe<DynamicField>;\n /**\n * Whether this object can be transfered using the `TransferObjects` Programmable Transaction Command or `haneul::transfer::public_transfer`.\n *\n * Both these operations require the object to have both the `key` and `store` abilities.\n */\n hasPublicTransfer?: Maybe<Scalars['Boolean']['output']>;\n /** URL for the coin logo. */\n iconUrl?: Maybe<Scalars['String']['output']>;\n /** The Base64-encoded BCS serialize of this object, as a `MoveObject`. */\n moveObjectBcs?: Maybe<Scalars['Base64']['output']>;\n /**\n * Fetch the total balances keyed by coin types (e.g. `0x2::haneul::HANEUL`) owned by this address.\n *\n * If the address does not own any coins of a given type, a balance of zero is returned for that type.\n */\n multiGetBalances?: Maybe<Array<Balance>>;\n /**\n * Access dynamic fields on an object using their types and BCS-encoded names.\n *\n * Returns a list of dynamic fields that is guaranteed to be the same length as `keys`. If a dynamic field in `keys` could not be found in the store, its corresponding entry in the result will be `null`.\n */\n multiGetDynamicFields: Array<Maybe<DynamicField>>;\n /**\n * Access dynamic object fields on an object using their types and BCS-encoded names.\n *\n * Returns a list of dynamic object fields that is guaranteed to be the same length as `keys`. If a dynamic object field in `keys` could not be found in the store, its corresponding entry in the result will be `null`.\n */\n multiGetDynamicObjectFields: Array<Maybe<DynamicField>>;\n /** Name for the coin. */\n name?: Maybe<Scalars['String']['output']>;\n /** Fetch the object with the same ID, at a different version, root version bound, or checkpoint. */\n objectAt?: Maybe<Object>;\n /** The Base64-encoded BCS serialization of this object, as an `Object`. */\n objectBcs?: Maybe<Scalars['Base64']['output']>;\n /** Paginate all versions of this object after this one. */\n objectVersionsAfter?: Maybe<ObjectConnection>;\n /** Paginate all versions of this object before this one. */\n objectVersionsBefore?: Maybe<ObjectConnection>;\n /** Objects owned by this object, optionally filtered by type. */\n objects?: Maybe<MoveObjectConnection>;\n /** The object's owner kind. */\n owner?: Maybe<Owner>;\n /** The transaction that created this version of the object. */\n previousTransaction?: Maybe<Transaction>;\n /** The transactions that sent objects to this object. */\n receivedTransactions?: Maybe<TransactionConnection>;\n /** Whether the currency is regulated or not. `null` indicates that the regulatory status is unknown. */\n regulatedState?: Maybe<RegulatedState>;\n /** The SUI returned to the sponsor or sender of the transaction that modifies or deletes this object. */\n storageRebate?: Maybe<Scalars['BigInt']['output']>;\n /** The overall balance of coins issued. */\n supply?: Maybe<Scalars['BigInt']['output']>;\n /** Future behavior of the supply. `null` indicates that the future behavior of the supply is not known because the currency's treasury still exists. */\n supplyState?: Maybe<SupplyState>;\n /** Symbol for the coin. */\n symbol?: Maybe<Scalars['String']['output']>;\n /** The version of this object that this content comes from. */\n version?: Maybe<Scalars['UInt53']['output']>;\n};\n\n\n/** An object representing metadata about a coin type. */\nexport type CoinMetadataBalanceArgs = {\n coinType: Scalars['String']['input'];\n};\n\n\n/** An object representing metadata about 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/** An object representing metadata about a coin type. */\nexport type CoinMetadataDynamicFieldArgs = {\n name: DynamicFieldName;\n};\n\n\n/** An object representing metadata about 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/** An object representing metadata about a coin type. */\nexport type CoinMetadataDynamicObjectFieldArgs = {\n name: DynamicFieldName;\n};\n\n\n/** An object representing metadata about a coin type. */\nexport type CoinMetadataMultiGetBalancesArgs = {\n keys: Array<Scalars['String']['input']>;\n};\n\n\n/** An object representing metadata about a coin type. */\nexport type CoinMetadataMultiGetDynamicFieldsArgs = {\n keys: Array<DynamicFieldName>;\n};\n\n\n/** An object representing metadata about a coin type. */\nexport type CoinMetadataMultiGetDynamicObjectFieldsArgs = {\n keys: Array<DynamicFieldName>;\n};\n\n\n/** An object representing metadata about a coin type. */\nexport type CoinMetadataObjectAtArgs = {\n checkpoint?: InputMaybe<Scalars['UInt53']['input']>;\n rootVersion?: InputMaybe<Scalars['UInt53']['input']>;\n version?: InputMaybe<Scalars['UInt53']['input']>;\n};\n\n\n/** An object representing metadata about a coin type. */\nexport type CoinMetadataObjectVersionsAfterArgs = {\n after?: InputMaybe<Scalars['String']['input']>;\n before?: InputMaybe<Scalars['String']['input']>;\n filter?: InputMaybe<VersionFilter>;\n first?: InputMaybe<Scalars['Int']['input']>;\n last?: InputMaybe<Scalars['Int']['input']>;\n};\n\n\n/** An object representing metadata about a coin type. */\nexport type CoinMetadataObjectVersionsBeforeArgs = {\n after?: InputMaybe<Scalars['String']['input']>;\n before?: InputMaybe<Scalars['String']['input']>;\n filter?: InputMaybe<VersionFilter>;\n first?: InputMaybe<Scalars['Int']['input']>;\n last?: InputMaybe<Scalars['Int']['input']>;\n};\n\n\n/** An object representing metadata about 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/** An object representing metadata about a coin type. */\nexport type CoinMetadataReceivedTransactionsArgs = {\n after?: InputMaybe<Scalars['String']['input']>;\n before?: InputMaybe<Scalars['String']['input']>;\n filter?: InputMaybe<TransactionFilter>;\n first?: InputMaybe<Scalars['Int']['input']>;\n last?: InputMaybe<Scalars['Int']['input']>;\n};\n\n/** System transaction for creating the coin registry. */\nexport type CoinRegistryCreateTransaction = {\n __typename?: 'CoinRegistryCreateTransaction';\n /** A workaround to define an empty variant of a GraphQL union. */\n _?: Maybe<Scalars['Boolean']['output']>;\n};\n\n/** A single command in the programmable transaction. */\nexport type Command = MakeMoveVecCommand | MergeCoinsCommand | MoveCallCommand | OtherCommand | PublishCommand | SplitCoinsCommand | TransferObjectsCommand | UpgradeCommand;\n\nexport type CommandConnection = {\n __typename?: 'CommandConnection';\n /** A list of edges. */\n edges: Array<CommandEdge>;\n /** A list of nodes. */\n nodes: Array<Command>;\n /** Information to aid in pagination. */\n pageInfo: PageInfo;\n};\n\n/** An edge in a connection. */\nexport type CommandEdge = {\n __typename?: 'CommandEdge';\n /** A cursor for use in pagination */\n cursor: Scalars['String']['output'];\n /** The item at the end of the edge */\n node: Command;\n};\n\n/**\n * A value produced or modified during command execution.\n *\n * This can represent either a return value from a command or an argument that was mutated by reference.\n */\nexport type CommandOutput = {\n __typename?: 'CommandOutput';\n /** The transaction argument that this value corresponds to (if any). */\n argument?: Maybe<TransactionArgument>;\n /** The structured Move value, if available. */\n value?: Maybe<MoveValue>;\n};\n\n/** The intermediate results for each command of a transaction simulation. */\nexport type CommandResult = {\n __typename?: 'CommandResult';\n /** Changes made to arguments that were mutably borrowed by each command in this transaction. */\n mutatedReferences?: Maybe<Array<CommandOutput>>;\n /** Return results of each command in this transaction. */\n returnValues?: Maybe<Array<CommandOutput>>;\n};\n\n/** Object is exclusively owned by a single adderss and sequenced via consensus. */\nexport type ConsensusAddressOwner = {\n __typename?: 'ConsensusAddressOwner';\n /** The owner's address. */\n address?: Maybe<Address>;\n /** The version at which the object most recently bcame a consensus object. This serves the same function as `Shared.initialSharedVersion`, except it may change if the object's `owner` type changes. */\n startVersion?: Maybe<Scalars['UInt53']['output']>;\n};\n\n/** System transaction that runs at the beginning of a checkpoint, and is responsible for setting the current value of the clock, based on the timestamp from consensus. */\nexport type ConsensusCommitPrologueTransaction = {\n __typename?: 'ConsensusCommitPrologueTransaction';\n /**\n * Digest of any additional state computed by the consensus handler.\n * Used to detect forking bugs as early as possible.\n *\n * Present in V4.\n */\n additionalStateDigest?: Maybe<Scalars['String']['output']>;\n /**\n * Unix timestamp from consensus.\n *\n * Present in V1, V2, V3, V4.\n */\n commitTimestamp?: Maybe<Scalars['DateTime']['output']>;\n /**\n * Digest of consensus output, encoded as a Base58 string.\n *\n * Present in V2, V3, V4.\n */\n consensusCommitDigest?: Maybe<Scalars['String']['output']>;\n /**\n * Epoch of the commit prologue transaction.\n *\n * Present in V1, V2, V3, V4.\n */\n epoch?: Maybe<Epoch>;\n /**\n * Consensus round of the commit.\n *\n * Present in V1, V2, V3, V4.\n */\n round?: Maybe<Scalars['UInt53']['output']>;\n /**\n * The sub DAG index of the consensus commit. This field is populated if there\n * are multiple consensus commits per round.\n *\n * Present in V3, V4.\n */\n subDagIndex?: Maybe<Scalars['UInt53']['output']>;\n};\n\n/** Reason why a transaction that attempted to access a consensus-managed object was cancelled. */\nexport enum ConsensusObjectCancellationReason {\n /** Read operation was cancelled. */\n CancelledRead = 'CANCELLED_READ',\n /** Object congestion prevented execution. */\n Congested = 'CONGESTED',\n /** Randomness service was unavailable. */\n RandomnessUnavailable = 'RANDOMNESS_UNAVAILABLE',\n /** Internal use only. */\n Unknown = 'UNKNOWN'\n}\n\n/** A transaction that was cancelled before it could access the consensus-managed object, so the object was an input but remained unchanged. */\nexport type ConsensusObjectCancelled = {\n __typename?: 'ConsensusObjectCancelled';\n /** The ID of the consensus-managed object that the transaction intended to access. */\n address?: Maybe<Scalars['HaneulAddress']['output']>;\n /** Reason why the transaction was cancelled. */\n cancellationReason?: Maybe<ConsensusObjectCancellationReason>;\n};\n\nexport type ConsensusObjectRead = {\n __typename?: 'ConsensusObjectRead';\n /** The version of the consensus-managed object that was read by this transaction. */\n object?: Maybe<Object>;\n};\n\n/** A rendered JSON blob based on an on-chain template. */\nexport type Display = {\n __typename?: 'Display';\n /** If any fields failed to render, this will contain a mapping from failed field names to error messages. If all fields succeed, this will be `null`. */\n errors?: Maybe<Scalars['JSON']['output']>;\n /** Output for all successfully substituted display fields. Unsuccessful fields will be `null`, and will be accompanied by a field in `errors`, explaining the error. */\n output?: Maybe<Scalars['JSON']['output']>;\n};\n\n/** System transaction for creating the display registry. */\nexport type DisplayRegistryCreateTransaction = {\n __typename?: 'DisplayRegistryCreateTransaction';\n /** A workaround to define an empty variant of a GraphQL union. */\n _?: Maybe<Scalars['Boolean']['output']>;\n};\n\n/**\n * Dynamic fields are heterogenous fields that can be added or removed from an object at runtime. Their names are arbitrary Move values that have `copy`, `drop`, and `store`.\n *\n * There are two sub-types of dynamic fields:\n *\n * - Dynamic fields can store any value that has `store`. Objects stored in this kind of field will be considered wrapped (not accessible via its ID by external tools like explorers, wallets, etc. accessing storage).\n * - Dynamic object fields can only store objects (values that have the `key` ability, and an `id: UID` as its first field) that have `store`, but they will still be directly accessible off-chain via their ID after being attached as a field.\n */\nexport type DynamicField = IAddressable & IMoveObject & IObject & {\n __typename?: 'DynamicField';\n /** The DynamicField's ID. */\n address: Scalars['HaneulAddress']['output'];\n /**\n * Fetch the total balance for coins with marker type `coinType` (e.g. `0x2::haneul::HANEUL`), owned by this address.\n *\n * If the address does not own any coins of that type, a balance of zero is returned.\n */\n balance?: Maybe<Balance>;\n /** Total balance across coins owned by this address, grouped by coin type. */\n balances?: Maybe<BalanceConnection>;\n /** The structured representation of the object's contents. */\n contents?: Maybe<MoveValue>;\n /** The domain explicitly configured as the default HaneulNS name for this address. */\n defaultHaneulnsName?: Maybe<Scalars['String']['output']>;\n /** 32-byte hash that identifies the object's contents, encoded in Base58. */\n digest?: Maybe<Scalars['String']['output']>;\n /**\n * Access a dynamic field on an object using its type and BCS-encoded name.\n *\n * Returns `null` if a dynamic field with that name could not be found attached to this object.\n */\n dynamicField?: Maybe<DynamicField>;\n /**\n * Dynamic fields owned by this object.\n *\n * Dynamic fields on wrapped objects can be accessed using `Address.dynamicFields`.\n */\n dynamicFields?: Maybe<DynamicFieldConnection>;\n /**\n * Access a dynamic object field on an object using its type and BCS-encoded name.\n *\n * Returns `null` if a dynamic object field with that name could not be found attached to this object.\n */\n dynamicObjectField?: Maybe<DynamicField>;\n /**\n * Whether this object can be transfered using the `TransferObjects` Programmable Transaction Command or `haneul::transfer::public_transfer`.\n *\n * Both these operations require the object to have both the `key` and `store` abilities.\n */\n hasPublicTransfer?: Maybe<Scalars['Boolean']['output']>;\n /** The Base64-encoded BCS serialize of this object, as a `MoveObject`. */\n moveObjectBcs?: Maybe<Scalars['Base64']['output']>;\n /**\n * Fetch the total balances keyed by coin types (e.g. `0x2::haneul::HANEUL`) owned by this address.\n *\n * If the address does not own any coins of a given type, a balance of zero is returned for that type.\n */\n multiGetBalances?: Maybe<Array<Balance>>;\n /**\n * Access dynamic fields on an object using their types and BCS-encoded names.\n *\n * Returns a list of dynamic fields that is guaranteed to be the same length as `keys`. If a dynamic field in `keys` could not be found in the store, its corresponding entry in the result will be `null`.\n */\n multiGetDynamicFields: Array<Maybe<DynamicField>>;\n /**\n * Access dynamic object fields on an object using their types and BCS-encoded names.\n *\n * Returns a list of dynamic object fields that is guaranteed to be the same length as `keys`. If a dynamic object field in `keys` could not be found in the store, its corresponding entry in the result will be `null`.\n */\n multiGetDynamicObjectFields: Array<Maybe<DynamicField>>;\n /** The dynamic field's name, as a Move value. */\n name?: Maybe<MoveValue>;\n /** Fetch the object with the same ID, at a different version, root version bound, or checkpoint. */\n objectAt?: Maybe<Object>;\n /** The Base64-encoded BCS serialization of this object, as an `Object`. */\n objectBcs?: Maybe<Scalars['Base64']['output']>;\n /** Paginate all versions of this object after this one. */\n objectVersionsAfter?: Maybe<ObjectConnection>;\n /** Paginate all versions of this object before this one. */\n objectVersionsBefore?: Maybe<ObjectConnection>;\n /** Objects owned by this object, optionally filtered by type. */\n objects?: Maybe<MoveObjectConnection>;\n /** The object's owner kind. */\n owner?: Maybe<Owner>;\n /** The transaction that created this version of the object. */\n previousTransaction?: Maybe<Transaction>;\n /** The transactions that sent objects to this object. */\n receivedTransactions?: Maybe<TransactionConnection>;\n /** The SUI returned to the sponsor or sender of the transaction that modifies or deletes this object. */\n storageRebate?: Maybe<Scalars['BigInt']['output']>;\n /** The dynamic field's value, as a Move value for dynamic fields and as a MoveObject for dynamic object fields. */\n value?: Maybe<DynamicFieldValue>;\n /** The version of this object that this content comes from. */\n version?: Maybe<Scalars['UInt53']['output']>;\n};\n\n\n/**\n * Dynamic fields are heterogenous fields that can be added or removed from an object at runtime. Their names are arbitrary Move values that have `copy`, `drop`, and `store`.\n *\n * There are two sub-types of dynamic fields:\n *\n * - Dynamic fields can store any value that has `store`. Objects stored in this kind of field will be considered wrapped (not accessible via its ID by external tools like explorers, wallets, etc. accessing storage).\n * - Dynamic object fields can only store objects (values that have the `key` ability, and an `id: UID` as its first field) that have `store`, but they will still be directly accessible off-chain via their ID after being attached as a field.\n */\nexport type DynamicFieldBalanceArgs = {\n coinType: Scalars['String']['input'];\n};\n\n\n/**\n * Dynamic fields are heterogenous fields that can be added or removed from an object at runtime. Their names are arbitrary Move values that have `copy`, `drop`, and `store`.\n *\n * There are two sub-types of dynamic fields:\n *\n * - Dynamic fields can store any value that has `store`. Objects stored in this kind of field will be considered wrapped (not accessible via its ID by external tools like explorers, wallets, etc. accessing storage).\n * - Dynamic object fields can only store objects (values that have the `key` ability, and an `id: UID` as its first field) that have `store`, but they will still be directly accessible off-chain via their ID after being attached as a field.\n */\nexport type DynamicFieldBalancesArgs = {\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 * Dynamic fields are heterogenous fields that can be added or removed from an object at runtime. Their names are arbitrary Move values that have `copy`, `drop`, and `store`.\n *\n * There are two sub-types of dynamic fields:\n *\n * - Dynamic fields can store any value that has `store`. Objects stored in this kind of field will be considered wrapped (not accessible via its ID by external tools like explorers, wallets, etc. accessing storage).\n * - Dynamic object fields can only store objects (values that have the `key` ability, and an `id: UID` as its first field) that have `store`, but they will still be directly accessible off-chain via their ID after being attached as a field.\n */\nexport type DynamicFieldDynamicFieldArgs = {\n name: DynamicFieldName;\n};\n\n\n/**\n * Dynamic fields are heterogenous fields that can be added or removed from an object at runtime. Their names are arbitrary Move values that have `copy`, `drop`, and `store`.\n *\n * There are two sub-types of dynamic fields:\n *\n * - Dynamic fields can store any value that has `store`. Objects stored in this kind of field will be considered wrapped (not accessible via its ID by external tools like explorers, wallets, etc. accessing storage).\n * - Dynamic object fields can only store objects (values that have the `key` ability, and an `id: UID` as its first field) that have `store`, but they will still be directly accessible off-chain via their ID after being attached as a field.\n */\nexport type DynamicFieldDynamicFieldsArgs = {\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 * Dynamic fields are heterogenous fields that can be added or removed from an object at runtime. Their names are arbitrary Move values that have `copy`, `drop`, and `store`.\n *\n * There are two sub-types of dynamic fields:\n *\n * - Dynamic fields can store any value that has `store`. Objects stored in this kind of field will be considered wrapped (not accessible via its ID by external tools like explorers, wallets, etc. accessing storage).\n * - Dynamic object fields can only store objects (values that have the `key` ability, and an `id: UID` as its first field) that have `store`, but they will still be directly accessible off-chain via their ID after being attached as a field.\n */\nexport type DynamicFieldDynamicObjectFieldArgs = {\n name: DynamicFieldName;\n};\n\n\n/**\n * Dynamic fields are heterogenous fields that can be added or removed from an object at runtime. Their names are arbitrary Move values that have `copy`, `drop`, and `store`.\n *\n * There are two sub-types of dynamic fields:\n *\n * - Dynamic fields can store any value that has `store`. Objects stored in this kind of field will be considered wrapped (not accessible via its ID by external tools like explorers, wallets, etc. accessing storage).\n * - Dynamic object fields can only store objects (values that have the `key` ability, and an `id: UID` as its first field) that have `store`, but they will still be directly accessible off-chain via their ID after being attached as a field.\n */\nexport type DynamicFieldMultiGetBalancesArgs = {\n keys: Array<Scalars['String']['input']>;\n};\n\n\n/**\n * Dynamic fields are heterogenous fields that can be added or removed from an object at runtime. Their names are arbitrary Move values that have `copy`, `drop`, and `store`.\n *\n * There are two sub-types of dynamic fields:\n *\n * - Dynamic fields can store any value that has `store`. Objects stored in this kind of field will be considered wrapped (not accessible via its ID by external tools like explorers, wallets, etc. accessing storage).\n * - Dynamic object fields can only store objects (values that have the `key` ability, and an `id: UID` as its first field) that have `store`, but they will still be directly accessible off-chain via their ID after being attached as a field.\n */\nexport type DynamicFieldMultiGetDynamicFieldsArgs = {\n keys: Array<DynamicFieldName>;\n};\n\n\n/**\n * Dynamic fields are heterogenous fields that can be added or removed from an object at runtime. Their names are arbitrary Move values that have `copy`, `drop`, and `store`.\n *\n * There are two sub-types of dynamic fields:\n *\n * - Dynamic fields can store any value that has `store`. Objects stored in this kind of field will be considered wrapped (not accessible via its ID by external tools like explorers, wallets, etc. accessing storage).\n * - Dynamic object fields can only store objects (values that have the `key` ability, and an `id: UID` as its first field) that have `store`, but they will still be directly accessible off-chain via their ID after being attached as a field.\n */\nexport type DynamicFieldMultiGetDynamicObjectFieldsArgs = {\n keys: Array<DynamicFieldName>;\n};\n\n\n/**\n * Dynamic fields are heterogenous fields that can be added or removed from an object at runtime. Their names are arbitrary Move values that have `copy`, `drop`, and `store`.\n *\n * There are two sub-types of dynamic fields:\n *\n * - Dynamic fields can store any value that has `store`. Objects stored in this kind of field will be considered wrapped (not accessible via its ID by external tools like explorers, wallets, etc. accessing storage).\n * - Dynamic object fields can only store objects (values that have the `key` ability, and an `id: UID` as its first field) that have `store`, but they will still be directly accessible off-chain via their ID after being attached as a field.\n */\nexport type DynamicFieldObjectAtArgs = {\n checkpoint?: InputMaybe<Scalars['UInt53']['input']>;\n rootVersion?: InputMaybe<Scalars['UInt53']['input']>;\n version?: InputMaybe<Scalars['UInt53']['input']>;\n};\n\n\n/**\n * Dynamic fields are heterogenous fields that can be added or removed from an object at runtime. Their names are arbitrary Move values that have `copy`, `drop`, and `store`.\n *\n * There are two sub-types of dynamic fields:\n *\n * - Dynamic fields can store any value that has `store`. Objects stored in this kind of field will be considered wrapped (not accessible via its ID by external tools like explorers, wallets, etc. accessing storage).\n * - Dynamic object fields can only store objects (values that have the `key` ability, and an `id: UID` as its first field) that have `store`, but they will still be directly accessible off-chain via their ID after being attached as a field.\n */\nexport type DynamicFieldObjectVersionsAfterArgs = {\n after?: InputMaybe<Scalars['String']['input']>;\n before?: InputMaybe<Scalars['String']['input']>;\n filter?: InputMaybe<VersionFilter>;\n first?: InputMaybe<Scalars['Int']['input']>;\n last?: InputMaybe<Scalars['Int']['input']>;\n};\n\n\n/**\n * Dynamic fields are heterogenous fields that can be added or removed from an object at runtime. Their names are arbitrary Move values that have `copy`, `drop`, and `store`.\n *\n * There are two sub-types of dynamic fields:\n *\n * - Dynamic fields can store any value that has `store`. Objects stored in this kind of field will be considered wrapped (not accessible via its ID by external tools like explorers, wallets, etc. accessing storage).\n * - Dynamic object fields can only store objects (values that have the `key` ability, and an `id: UID` as its first field) that have `store`, but they will still be directly accessible off-chain via their ID after being attached as a field.\n */\nexport type DynamicFieldObjectVersionsBeforeArgs = {\n after?: InputMaybe<Scalars['String']['input']>;\n before?: InputMaybe<Scalars['String']['input']>;\n filter?: InputMaybe<VersionFilter>;\n first?: InputMaybe<Scalars['Int']['input']>;\n last?: InputMaybe<Scalars['Int']['input']>;\n};\n\n\n/**\n * Dynamic fields are heterogenous fields that can be added or removed from an object at runtime. Their names are arbitrary Move values that have `copy`, `drop`, and `store`.\n *\n * There are two sub-types of dynamic fields:\n *\n * - Dynamic fields can store any value that has `store`. Objects stored in this kind of field will be considered wrapped (not accessible via its ID by external tools like explorers, wallets, etc. accessing storage).\n * - Dynamic object fields can only store objects (values that have the `key` ability, and an `id: UID` as its first field) that have `store`, but they will still be directly accessible off-chain via their ID after being attached as a field.\n */\nexport type DynamicFieldObjectsArgs = {\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 * Dynamic fields are heterogenous fields that can be added or removed from an object at runtime. Their names are arbitrary Move values that have `copy`, `drop`, and `store`.\n *\n * There are two sub-types of dynamic fields:\n *\n * - Dynamic fields can store any value that has `store`. Objects stored in this kind of field will be considered wrapped (not accessible via its ID by external tools like explorers, wallets, etc. accessing storage).\n * - Dynamic object fields can only store objects (values that have the `key` ability, and an `id: UID` as its first field) that have `store`, but they will still be directly accessible off-chain via their ID after being attached as a field.\n */\nexport type DynamicFieldReceivedTransactionsArgs = {\n after?: InputMaybe<Scalars['String']['input']>;\n before?: InputMaybe<Scalars['String']['input']>;\n filter?: InputMaybe<TransactionFilter>;\n first?: InputMaybe<Scalars['Int']['input']>;\n last?: InputMaybe<Scalars['Int']['input']>;\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\n/** A description of a dynamic field's name. */\nexport type DynamicFieldName = {\n /** The Base64-encoded BCS serialization of the dynamic field's 'name'. */\n bcs: Scalars['Base64']['input'];\n /** The type of the dynamic field's name, like 'u64' or '0x2::kiosk::Listing'. */\n type: Scalars['String']['input'];\n};\n\n/** The value of a dynamic field (`MoveValue`) or dynamic object field (`MoveObject`). */\nexport type DynamicFieldValue = MoveObject | MoveValue;\n\n/** System transaction that supersedes `ChangeEpochTransaction` as the new way to run transactions at the end of an epoch. Behaves similarly to `ChangeEpochTransaction` but can accommodate other optional transactions to run at the end of the epoch. */\nexport type EndOfEpochTransaction = {\n __typename?: 'EndOfEpochTransaction';\n /** The list of system transactions that are allowed to run at the end of the epoch. */\n transactions?: Maybe<EndOfEpochTransactionKindConnection>;\n};\n\n\n/** System transaction that supersedes `ChangeEpochTransaction` as the new way to run transactions at the end of an epoch. Behaves similarly to `ChangeEpochTransaction` but can accommodate other optional transactions to run at the end of the epoch. */\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 = AccumulatorRootCreateTransaction | AddressAliasStateCreateTransaction | AuthenticatorStateCreateTransaction | AuthenticatorStateExpireTransaction | BridgeCommitteeInitTransaction | BridgeStateCreateTransaction | ChangeEpochTransaction | CoinDenyListStateCreateTransaction | CoinRegistryCreateTransaction | DisplayRegistryCreateTransaction | RandomnessStateCreateTransaction | StoreExecutionTimeObservationsTransaction | WriteAccumulatorStorageCostTransaction;\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 * Activity on Sui is partitioned in time, into epochs.\n *\n * Epoch changes are opportunities for the network to reconfigure itself (perform protocol or system package upgrades, or change the committee) and distribute staking rewards. The network aims to keep epochs roughly the same duration as each other.\n *\n * During a particular epoch the following data is fixed:\n *\n * - protocol version,\n * - reference gas price,\n * - system package versions,\n * - validators in the committee.\n */\nexport type Epoch = {\n __typename?: 'Epoch';\n /** The epoch's corresponding checkpoints. */\n checkpoints?: Maybe<CheckpointConnection>;\n /**\n * State of the Coin DenyList object (0x403) at the start of this epoch.\n *\n * The DenyList controls access to Regulated Coins. Writes to the DenyList are accumulated and only take effect on the next epoch boundary. Consequently, it's possible to determine the state of the DenyList for a transaction by reading it at the start of the epoch the transaction is in.\n */\n coinDenyList?: Maybe<Object>;\n /** The timestamp associated with the last checkpoint in the epoch (or `null` if the epoch has not finished yet). */\n endTimestamp?: Maybe<Scalars['DateTime']['output']>;\n /** The epoch's id as a sequence number that starts at 0 and is incremented by one at every epoch change. */\n epochId: Scalars['UInt53']['output'];\n /** The storage fees paid for transactions executed during the epoch (or `null` if the epoch has not finished yet). */\n fundInflow?: Maybe<Scalars['BigInt']['output']>;\n /** The storage fee rebates paid to users who deleted the data associated with past transactions (or `null` if the epoch has not finished yet). */\n fundOutflow?: Maybe<Scalars['BigInt']['output']>;\n /**\n * The storage fund available in this epoch (or `null` if the epoch has not finished yet).\n * This fund is used to redistribute storage fees from past transactions to future validators.\n */\n fundSize?: Maybe<Scalars['BigInt']['output']>;\n /**\n * A commitment by the committee at the end of epoch on the contents of the live object set at that time.\n * This can be used to verify state snapshots.\n */\n liveObjectSetDigest?: Maybe<Scalars['String']['output']>;\n /** The difference between the fund inflow and outflow, representing the net amount of storage fees accumulated in this epoch (or `null` if the epoch has not finished yet). */\n netInflow?: Maybe<Scalars['BigInt']['output']>;\n /** The epoch's corresponding protocol configuration, including the feature flags and the configuration options. */\n protocolConfigs?: Maybe<ProtocolConfigs>;\n /** The minimum gas price that a quorum of validators are guaranteed to sign a transaction for in this epoch. */\n referenceGasPrice?: Maybe<Scalars['BigInt']['output']>;\n /** Information about whether this epoch was started in safe mode, which happens if the full epoch change logic fails. */\n safeMode?: Maybe<SafeMode>;\n /** The timestamp associated with the first checkpoint in the epoch. */\n startTimestamp?: Maybe<Scalars['DateTime']['output']>;\n /**\n * SUI set aside to account for objects stored on-chain, at the start of the epoch.\n * This is also used for storage rebates.\n */\n storageFund?: Maybe<StorageFund>;\n /** The system packages used by all transactions in this epoch. */\n systemPackages?: Maybe<MovePackageConnection>;\n /** Details of the system that are decided during genesis. */\n systemParameters?: Maybe<SystemParameters>;\n /** Parameters related to the subsidy that supplements staking rewards */\n systemStakeSubsidy?: Maybe<StakeSubsidy>;\n /**\n * The value of the `version` field of `0x5`, the `0x3::haneul::HaneulSystemState` object.\n * This version changes whenever the fields contained in the system state object (held in a dynamic field attached to `0x5`) change.\n */\n systemStateVersion?: Maybe<Scalars['UInt53']['output']>;\n /**\n * The total number of checkpoints in this epoch.\n *\n * Returns `None` when no checkpoint is set in scope (e.g. execution scope).\n */\n totalCheckpoints?: Maybe<Scalars['UInt53']['output']>;\n /** The total amount of gas fees (in GEUNHWA) that were paid in this epoch (or `null` if the epoch has not finished yet). */\n totalGasFees?: Maybe<Scalars['BigInt']['output']>;\n /** The total GEUNHWA rewarded as stake (or `null` if the epoch has not finished yet). */\n totalStakeRewards?: Maybe<Scalars['BigInt']['output']>;\n /** The amount added to total gas fees to make up the total stake rewards (or `null` if the epoch has not finished yet). */\n totalStakeSubsidies?: Maybe<Scalars['BigInt']['output']>;\n /** The total number of transaction blocks in this epoch (or `null` if the epoch has not finished yet). */\n totalTransactions?: Maybe<Scalars['UInt53']['output']>;\n /**\n * The transactions in this epoch, optionally filtered by transaction filters.\n *\n * Returns `None` when no checkpoint is set in scope (e.g. execution scope).\n */\n transactions?: Maybe<TransactionConnection>;\n /** Validator-related properties, including the active validators. */\n validatorSet?: Maybe<ValidatorSet>;\n};\n\n\n/**\n * Activity on Sui is partitioned in time, into epochs.\n *\n * Epoch changes are opportunities for the network to reconfigure itself (perform protocol or system package upgrades, or change the committee) and distribute staking rewards. The network aims to keep epochs roughly the same duration as each other.\n *\n * During a particular epoch the following data is fixed:\n *\n * - protocol version,\n * - reference gas price,\n * - system package versions,\n * - validators in the committee.\n */\nexport type EpochCheckpointsArgs = {\n after?: InputMaybe<Scalars['String']['input']>;\n before?: InputMaybe<Scalars['String']['input']>;\n filter?: InputMaybe<CheckpointFilter>;\n first?: InputMaybe<Scalars['Int']['input']>;\n last?: InputMaybe<Scalars['Int']['input']>;\n};\n\n\n/**\n * Activity on Sui is partitioned in time, into epochs.\n *\n * Epoch changes are opportunities for the network to reconfigure itself (perform protocol or system package upgrades, or change the committee) and distribute staking rewards. The network aims to keep epochs roughly the same duration as each other.\n *\n * During a particular epoch the following data is fixed:\n *\n * - protocol version,\n * - reference gas price,\n * - system package versions,\n * - validators in the committee.\n */\nexport type EpochSystemPackagesArgs = {\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 * Activity on Sui is partitioned in time, into epochs.\n *\n * Epoch changes are opportunities for the network to reconfigure itself (perform protocol or system package upgrades, or change the committee) and distribute staking rewards. The network aims to keep epochs roughly the same duration as each other.\n *\n * During a particular epoch the following data is fixed:\n *\n * - protocol version,\n * - reference gas price,\n * - system package versions,\n * - validators in the committee.\n */\nexport type EpochTransactionsArgs = {\n after?: InputMaybe<Scalars['String']['input']>;\n before?: InputMaybe<Scalars['String']['input']>;\n filter?: InputMaybe<TransactionFilter>;\n first?: InputMaybe<Scalars['Int']['input']>;\n last?: InputMaybe<Scalars['Int']['input']>;\n};\n\nexport type EpochConnection = {\n __typename?: 'EpochConnection';\n /** A list of edges. */\n edges: Array<EpochEdge>;\n /** A list of nodes. */\n nodes: Array<Epoch>;\n /** Information to aid in pagination. */\n pageInfo: PageInfo;\n};\n\n/** An edge in a connection. */\nexport type EpochEdge = {\n __typename?: 'EpochEdge';\n /** A cursor for use in pagination */\n cursor: Scalars['String']['output'];\n /** The item at the end of the edge */\n node: Epoch;\n};\n\nexport type Event = {\n __typename?: 'Event';\n /** The Move value emitted for this event. */\n contents?: Maybe<MoveValue>;\n /**\n * The Base64 encoded BCS serialized bytes of the entire Event structure from sui-types.\n * This includes: package_id, transaction_module, sender, type, and contents (which itself contains the BCS-serialized Move struct data).\n */\n eventBcs?: Maybe<Scalars['Base64']['output']>;\n /** Address of the sender of the transaction that emitted this event. */\n sender?: Maybe<Address>;\n /** The position of the event among the events from the same transaction. */\n sequenceNumber: Scalars['UInt53']['output'];\n /**\n * Timestamp corresponding to the checkpoint this event's transaction was finalized in.\n * All events from the same transaction share the same timestamp.\n *\n * `null` for simulated/executed transactions as they are not included in a checkpoint.\n */\n timestamp?: Maybe<Scalars['DateTime']['output']>;\n /** The transaction that emitted this event. This information is only available for events from indexed transactions, and not from transactions that have just been executed or dry-run. */\n transaction?: Maybe<Transaction>;\n /** The module containing the function that was called in the programmable transaction, that resulted in this event being emitted. */\n transactionModule?: Maybe<MoveModule>;\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 /** Limit to events that occured strictly after the given checkpoint. */\n afterCheckpoint?: InputMaybe<Scalars['UInt53']['input']>;\n /** Limit to events in the given checkpoint. */\n atCheckpoint?: InputMaybe<Scalars['UInt53']['input']>;\n /** Limit to event that occured strictly before the given checkpoint. */\n beforeCheckpoint?: InputMaybe<Scalars['UInt53']['input']>;\n /**\n * Events emitted by a particular module. An event is emitted by a particular module if some function in the module is called by a PTB and emits an event.\n *\n * Modules can be filtered by their package, or package::module. We currently do not support filtering by emitting module and event type at the same time so if both are provided in one filter, the query will error.\n */\n module?: InputMaybe<Scalars['String']['input']>;\n /** Filter on events by transaction sender address. */\n sender?: InputMaybe<Scalars['HaneulAddress']['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, or their fully qualified type name.\n *\n * Generic types can be queried by either the generic type name, e.g. `0x2::coin::Coin`, or by the full type name, such as `0x2::coin::Coin<0x2::haneul::HANEUL>`.\n */\n type?: InputMaybe<Scalars['String']['input']>;\n};\n\n/** Represents execution error information for failed transactions. */\nexport type ExecutionError = {\n __typename?: 'ExecutionError';\n /**\n * The error code of the Move abort, populated if this transaction failed with a Move abort.\n *\n * Returns the explicit code if the abort used `code` annotation (e.g., `abort(ERR, code = 5)` returns 5), otherwise returns the raw abort code containing encoded error information.\n */\n abortCode?: Maybe<Scalars['BigInt']['output']>;\n /**\n * An associated constant for the error. Only populated for clever errors.\n *\n * Constants are returned as human-readable strings when possible. Complex types are returned as Base64-encoded bytes.\n */\n constant?: Maybe<Scalars['String']['output']>;\n /** The function that the abort originated from. Only populated for Move aborts and primitive runtime errors that have function name information. */\n function?: Maybe<MoveFunction>;\n /** The error's name. Only populated for clever errors. */\n identifier?: Maybe<Scalars['String']['output']>;\n /** The instruction offset in the Move bytecode where the error occurred. Populated for Move aborts and primitive runtime errors. */\n instructionOffset?: Maybe<Scalars['Int']['output']>;\n /**\n * Human readable explanation of why the transaction failed.\n *\n * For Move aborts, the error message will be resolved to a human-readable form if possible, otherwise it will fall back to displaying the abort code and location.\n */\n message: Scalars['String']['output'];\n /** The module that the abort originated from. Only populated for Move aborts and primitive runtime errors. */\n module?: Maybe<MoveModule>;\n /** The source line number for the abort. Only populated for clever errors. */\n sourceLineNumber?: Maybe<Scalars['Int']['output']>;\n};\n\n/** The execution result of a transaction, including the transaction effects and any potential errors due to signing or quorum-driving. */\nexport type ExecutionResult = {\n __typename?: 'ExecutionResult';\n /** The effects of the transaction execution, if successful. */\n effects?: Maybe<TransactionEffects>;\n /**\n * Errors that occurred during execution (e.g., network errors, validation failures).\n * These are distinct from execution failures within the transaction itself.\n */\n errors?: Maybe<Array<Scalars['String']['output']>>;\n};\n\n/** The execution status of this transaction: success or failure. */\nexport enum ExecutionStatus {\n /** The transaction could not be executed. */\n Failure = 'FAILURE',\n /** The transaction was successfully executed. */\n Success = 'SUCCESS'\n}\n\n/** A boolean protocol configuration. */\nexport type FeatureFlag = {\n __typename?: 'FeatureFlag';\n /** Feature flag name. */\n key: Scalars['String']['output'];\n /** Feature flag value. */\n value: Scalars['Boolean']['output'];\n};\n\n/** Access to the gas inputs, after they have been smashed into one coin. The gas coin can only be used by reference, except for with `TransferObjectsTransaction` that can accept it by value. */\nexport type GasCoin = {\n __typename?: 'GasCoin';\n /** Placeholder field (gas coin has no additional data) */\n _?: Maybe<Scalars['Boolean']['output']>;\n};\n\n/**\n * Summary of charges from transactions.\n *\n * Storage is charged in three parts -- `storage_cost`, `-storage_rebate`, and `non_refundable_storage_fee` -- independently of `computation_cost`.\n *\n * The overall cost of a transaction, deducted from its gas coins, is its `computation_cost + storage_cost - storage_rebate`. `non_refundable_storage_fee` is collected from objects being mutated or deleted and accumulated by the system in storage funds, the remaining storage costs of previous object versions are what become the `storage_rebate`. The ratio between `non_refundable_storage_fee` and `storage_rebate` is set by the protocol.\n */\nexport type GasCostSummary = {\n __typename?: 'GasCostSummary';\n /** The sum cost of computation/execution */\n computationCost?: Maybe<Scalars['UInt53']['output']>;\n /** Amount that is retained by the system in the storage fund from the cost of the previous versions of objects being mutated or deleted. */\n nonRefundableStorageFee?: Maybe<Scalars['UInt53']['output']>;\n /** Cost for storage at the time the transaction is executed, calculated as the size of the objects being mutated in bytes multiplied by a storage cost per byte (part of the protocol). */\n storageCost?: Maybe<Scalars['UInt53']['output']>;\n /** Amount the user gets back from the storage cost of the previous versions of objects being mutated or deleted. */\n storageRebate?: Maybe<Scalars['UInt53']['output']>;\n};\n\n/** Effects related to gas (costs incurred and the identity of the smashed gas object returned). */\nexport type GasEffects = {\n __typename?: 'GasEffects';\n /** The gas object used to pay for this transaction. If multiple gas coins were provided, this represents the combined coin after smashing. */\n gasObject?: Maybe<Object>;\n /** Breakdown of the gas costs for this transaction. */\n gasSummary?: Maybe<GasCostSummary>;\n};\n\nexport type GasInput = {\n __typename?: 'GasInput';\n /** The maximum SUI that can be expended by executing this transaction */\n gasBudget?: Maybe<Scalars['BigInt']['output']>;\n /** Objects used to pay for a transaction's execution and storage */\n gasPayment?: Maybe<ObjectConnection>;\n /** An unsigned integer specifying the number of native tokens per gas unit this transaction will pay (in GEUNHWA). */\n gasPrice?: Maybe<Scalars['BigInt']['output']>;\n /** Address of the owner of the gas object(s) used. */\n gasSponsor?: Maybe<Address>;\n};\n\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/** System transaction that initializes the network and writes the initial set of objects on-chain. */\nexport type GenesisTransaction = {\n __typename?: 'GenesisTransaction';\n /** Objects to be created during genesis. */\n objects?: Maybe<ObjectConnection>;\n};\n\n\n/** System transaction that initializes the network and writes the initial set of objects on-chain. */\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 GraphQL types representing entities that are identified by an address.\n *\n * An address uniquely represents either the public key of an account, or an object's ID, but never both. It is not possible to determine which type an address represents up-front. If an object is wrapped, its contents will not be accessible via its address, but it will still be possible to access other objects it owns.\n */\nexport type IAddressable = {\n address: Scalars['HaneulAddress']['output'];\n /**\n * Fetch the total balance for coins with marker type `coinType` (e.g. `0x2::haneul::HANEUL`), owned by this address.\n *\n * If the address does not own any coins of that type, a balance of zero is returned.\n */\n balance?: Maybe<Balance>;\n /** Total balance across coins owned by this address, grouped by coin type. */\n balances?: Maybe<BalanceConnection>;\n /** The domain explicitly configured as the default HaneulNS name for this address. */\n defaultHaneulnsName?: Maybe<Scalars['String']['output']>;\n /**\n * Fetch the total balances keyed by coin types (e.g. `0x2::haneul::HANEUL`) owned by this address.\n *\n * Returns `null` when no checkpoint is set in scope (e.g. execution scope). If the address does not own any coins of a given type, a balance of zero is returned for that type.\n */\n multiGetBalances?: Maybe<Array<Balance>>;\n /** Objects owned by this address, optionally filtered by type. */\n objects?: Maybe<MoveObjectConnection>;\n};\n\n\n/**\n * Interface implemented by GraphQL types representing entities that are identified by an address.\n *\n * An address uniquely represents either the public key of an account, or an object's ID, but never both. It is not possible to determine which type an address represents up-front. If an object is wrapped, its contents will not be accessible via its address, but it will still be possible to access other objects it owns.\n */\nexport type IAddressableBalanceArgs = {\n coinType: Scalars['String']['input'];\n};\n\n\n/**\n * Interface implemented by GraphQL types representing entities that are identified by an address.\n *\n * An address uniquely represents either the public key of an account, or an object's ID, but never both. It is not possible to determine which type an address represents up-front. If an object is wrapped, its contents will not be accessible via its address, but it will still be possible to access other objects it owns.\n */\nexport type IAddressableBalancesArgs = {\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 are identified by an address.\n *\n * An address uniquely represents either the public key of an account, or an object's ID, but never both. It is not possible to determine which type an address represents up-front. If an object is wrapped, its contents will not be accessible via its address, but it will still be possible to access other objects it owns.\n */\nexport type IAddressableMultiGetBalancesArgs = {\n keys: Array<Scalars['String']['input']>;\n};\n\n\n/**\n * Interface implemented by GraphQL types representing entities that are identified by an address.\n *\n * An address uniquely represents either the public key of an account, or an object's ID, but never both. It is not possible to determine which type an address represents up-front. If an object is wrapped, its contents will not be accessible via its address, but it will still be possible to access other objects it owns.\n */\nexport type IAddressableObjectsArgs = {\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 * Interface implemented by all GraphQL types that represent a Move datatype definition (either a struct or an enum definition).\n *\n * This interface is used to provide a way to access fields that are shared by both structs and enums, e.g., the module that the datatype belongs to, the name of the datatype, type parameters etc.\n */\nexport type IMoveDatatype = {\n /** Abilities on this datatype definition. */\n abilities?: Maybe<Array<MoveAbility>>;\n /** The module that this datatype is defined in */\n module: MoveModule;\n /** The datatype's unqualified name */\n name: Scalars['String']['output'];\n /**\n * Constraints on the datatype's formal type parameters\n *\n * Move bytecode does not name type parameters, so when they are referenced (e.g. in field types), they are identified by their index in this list.\n */\n typeParameters?: Maybe<Array<MoveDatatypeTypeParameter>>;\n};\n\n/** Interface implemented by types that represent a Move object on-chain (A Move value whose type has `key`). */\nexport type IMoveObject = {\n /** The structured representation of the object's contents. */\n contents?: Maybe<MoveValue>;\n /**\n * Access a dynamic field on an object using its type and BCS-encoded name.\n *\n * Returns `null` if a dynamic field with that name could not be found attached to this object.\n */\n dynamicField?: Maybe<DynamicField>;\n /**\n * Dynamic fields and dynamic object fields owned by this object.\n *\n * Dynamic fields on wrapped objects can be accessed using `Address.dynamicFields`.\n */\n dynamicFields?: Maybe<DynamicFieldConnection>;\n /**\n * Access a dynamic object field on an object using its type and BCS-encoded name.\n *\n * Returns `null` if a dynamic object field with that name could not be found attached to this object.\n */\n dynamicObjectField?: Maybe<DynamicField>;\n /**\n * Whether this object can be transfered using the `TransferObjects` Programmable Transaction Command or `haneul::transfer::public_transfer`.\n *\n * Both these operations require the object to have both the `key` and `store` abilities.\n */\n hasPublicTransfer?: Maybe<Scalars['Boolean']['output']>;\n /** The Base64-encoded BCS serialize of this object, as a `MoveObject`. */\n moveObjectBcs?: Maybe<Scalars['Base64']['output']>;\n /**\n * Access dynamic fields on an object using their types and BCS-encoded names.\n *\n * Returns a list of dynamic fields that is guaranteed to be the same length as `keys`. If a dynamic field in `keys` could not be found in the store, its corresponding entry in the result will be `null`.\n */\n multiGetDynamicFields: Array<Maybe<DynamicField>>;\n /**\n * Access dynamic object fields on an object using their types and BCS-encoded names.\n *\n * Returns a list of dynamic object fields that is guaranteed to be the same length as `keys`. If a dynamic object field in `keys` could not be found in the store, its corresponding entry in the result will be `null`.\n */\n multiGetDynamicObjectFields: Array<Maybe<DynamicField>>;\n};\n\n\n/** Interface implemented by types that represent a Move object on-chain (A Move value whose type has `key`). */\nexport type IMoveObjectDynamicFieldArgs = {\n name: DynamicFieldName;\n};\n\n\n/** Interface implemented by types that represent a Move object on-chain (A Move value whose type has `key`). */\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/** Interface implemented by types that represent a Move object on-chain (A Move value whose type has `key`). */\nexport type IMoveObjectDynamicObjectFieldArgs = {\n name: DynamicFieldName;\n};\n\n\n/** Interface implemented by types that represent a Move object on-chain (A Move value whose type has `key`). */\nexport type IMoveObjectMultiGetDynamicFieldsArgs = {\n keys: Array<DynamicFieldName>;\n};\n\n\n/** Interface implemented by types that represent a Move object on-chain (A Move value whose type has `key`). */\nexport type IMoveObjectMultiGetDynamicObjectFieldsArgs = {\n keys: Array<DynamicFieldName>;\n};\n\n/** Interface implemented by versioned on-chain values that are addressable by an ID (also referred to as its address). This includes Move objects and packages. */\nexport type IObject = {\n /** 32-byte hash that identifies the object's contents, encoded in Base58. */\n digest?: Maybe<Scalars['String']['output']>;\n /** Fetch the object with the same ID, at a different version, root version bound, or checkpoint. */\n objectAt?: Maybe<Object>;\n /** The Base64-encoded BCS serialization of this object, as an `Object`. */\n objectBcs?: Maybe<Scalars['Base64']['output']>;\n /** Paginate all versions of this object after this one. */\n objectVersionsAfter?: Maybe<ObjectConnection>;\n /** Paginate all versions of this object before this one. */\n objectVersionsBefore?: Maybe<ObjectConnection>;\n /** The object's owner kind. */\n owner?: Maybe<Owner>;\n /** The transaction that created this version of the object */\n previousTransaction?: Maybe<Transaction>;\n /** The transactions that sent objects to this object. */\n receivedTransactions?: Maybe<TransactionConnection>;\n /** The SUI returned to the sponsor or sender of the transaction that modifies or deletes this object. */\n storageRebate?: Maybe<Scalars['BigInt']['output']>;\n /** The version of this object that this content comes from. */\n version?: Maybe<Scalars['UInt53']['output']>;\n};\n\n\n/** Interface implemented by versioned on-chain values that are addressable by an ID (also referred to as its address). This includes Move objects and packages. */\nexport type IObjectObjectAtArgs = {\n checkpoint?: InputMaybe<Scalars['UInt53']['input']>;\n rootVersion?: InputMaybe<Scalars['UInt53']['input']>;\n version?: InputMaybe<Scalars['UInt53']['input']>;\n};\n\n\n/** Interface implemented by versioned on-chain values that are addressable by an ID (also referred to as its address). This includes Move objects and packages. */\nexport type IObjectObjectVersionsAfterArgs = {\n after?: InputMaybe<Scalars['String']['input']>;\n before?: InputMaybe<Scalars['String']['input']>;\n filter?: InputMaybe<VersionFilter>;\n first?: InputMaybe<Scalars['Int']['input']>;\n last?: InputMaybe<Scalars['Int']['input']>;\n};\n\n\n/** Interface implemented by versioned on-chain values that are addressable by an ID (also referred to as its address). This includes Move objects and packages. */\nexport type IObjectObjectVersionsBeforeArgs = {\n after?: InputMaybe<Scalars['String']['input']>;\n before?: InputMaybe<Scalars['String']['input']>;\n filter?: InputMaybe<VersionFilter>;\n first?: InputMaybe<Scalars['Int']['input']>;\n last?: InputMaybe<Scalars['Int']['input']>;\n};\n\n\n/** Interface implemented by versioned on-chain values that are addressable by an ID (also referred to as its address). This includes Move objects and packages. */\nexport type IObjectReceivedTransactionsArgs = {\n after?: InputMaybe<Scalars['String']['input']>;\n before?: InputMaybe<Scalars['String']['input']>;\n filter?: InputMaybe<TransactionFilter>;\n first?: InputMaybe<Scalars['Int']['input']>;\n last?: InputMaybe<Scalars['Int']['input']>;\n};\n\n/** Object is accessible to all addresses, and is immutable. */\nexport type Immutable = {\n __typename?: 'Immutable';\n _?: Maybe<Scalars['Boolean']['output']>;\n};\n\nexport type Input = {\n __typename?: 'Input';\n /** The index of the input. */\n ix?: Maybe<Scalars['Int']['output']>;\n};\n\n/** Information used by a package to link to a specific version of its dependency. */\nexport type Linkage = {\n __typename?: 'Linkage';\n /** The ID on-chain of the first version of the dependency. */\n originalId?: Maybe<Scalars['HaneulAddress']['output']>;\n /** The ID on-chain of the version of the dependency that this package depends on. */\n upgradedId?: Maybe<Scalars['HaneulAddress']['output']>;\n /** The version of the dependency that this package depends on. */\n version?: Maybe<Scalars['UInt53']['output']>;\n};\n\n/** Create a vector (can be empty). */\nexport type MakeMoveVecCommand = {\n __typename?: 'MakeMoveVecCommand';\n /** The values to pack into the vector, all of the same type. */\n elements?: Maybe<Array<TransactionArgument>>;\n /** If the elements are not objects, or the vector is empty, a type must be supplied. */\n type?: Maybe<MoveType>;\n};\n\n/** Merges `coins` into the first `coin` (produces no results). */\nexport type MergeCoinsCommand = {\n __typename?: 'MergeCoinsCommand';\n /** The coin to merge into. */\n coin?: Maybe<TransactionArgument>;\n /** The coins to be merged. */\n coins: Array<TransactionArgument>;\n};\n\n/** Abilities are keywords in Sui Move that define how types behave at the compiler level. */\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\nexport type MoveCallCommand = {\n __typename?: 'MoveCallCommand';\n /** The actual function parameters passed in for this move call. */\n arguments: Array<TransactionArgument>;\n /** The function being called. */\n function: MoveFunction;\n};\n\n/** Description of a datatype, defined in a Move module. */\nexport type MoveDatatype = IMoveDatatype & {\n __typename?: 'MoveDatatype';\n /** Abilities on this datatype definition. */\n abilities?: Maybe<Array<MoveAbility>>;\n /** Attempts to convert the `MoveDatatype` to a `MoveEnum`. */\n asMoveEnum?: Maybe<MoveEnum>;\n /** Attempts to convert the `MoveDatatype` to a `MoveStruct`. */\n asMoveStruct?: Maybe<MoveStruct>;\n /** The module that this datatype is defined in. */\n module: MoveModule;\n /** The datatype's unqualified name. */\n name: Scalars['String']['output'];\n /**\n * Constraints on the datatype's formal type parameters.\n *\n * Move bytecode does not name type parameters, so when they are referenced (e.g. in field types), they are identified by their index in this list.\n */\n typeParameters?: Maybe<Array<MoveDatatypeTypeParameter>>;\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/** Declaration of a type parameter on a Move struct. */\nexport type MoveDatatypeTypeParameter = {\n __typename?: 'MoveDatatypeTypeParameter';\n /** Ability constraints on this type parameter. */\n constraints: Array<MoveAbility>;\n /**\n * Whether this type parameter is marked `phantom` or not.\n *\n * Phantom type parameters are not referenced in the struct's fields.\n */\n isPhantom: Scalars['Boolean']['output'];\n};\n\n/** Description of an enum type, defined in a Move module. */\nexport type MoveEnum = IMoveDatatype & {\n __typename?: 'MoveEnum';\n /** Abilities on this enum definition. */\n abilities?: Maybe<Array<MoveAbility>>;\n /** The module that this enum is defined in. */\n module: MoveModule;\n /** The enum's unqualified name. */\n name: Scalars['String']['output'];\n /**\n * Constraints on the enum's formal type parameters.\n *\n * Move bytecode does not name type parameters, so when they are referenced (e.g. in field types), they are identified by their index in this list.\n */\n typeParameters?: Maybe<Array<MoveDatatypeTypeParameter>>;\n /**\n * The names and fields of the enum's variants\n *\n * Field types reference type parameters by their index in the defining enum's `typeParameters` 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.\n *\n * Field types reference type parameters by their index in the defining struct's `typeParameters` list.\n */\n fields?: Maybe<Array<MoveField>>;\n /** The variant's name. */\n name?: Maybe<Scalars['String']['output']>;\n};\n\nexport type MoveField = {\n __typename?: 'MoveField';\n /** The field's name. */\n name?: Maybe<Scalars['String']['output']>;\n /**\n * The field's type.\n *\n * This type can reference type parameters introduced by the defining struct (see `typeParameters`).\n */\n type?: Maybe<OpenMoveType>;\n};\n\n/** A function defined in a Move module. */\nexport type MoveFunction = {\n __typename?: 'MoveFunction';\n /** Whether the function is marked `entry` or not. */\n isEntry?: Maybe<Scalars['Boolean']['output']>;\n /** The module that this function is defined in. */\n module: MoveModule;\n /** The function's unqualified name. */\n name: Scalars['String']['output'];\n /** The function's parameter types. These types can reference type parameters introduced by this function (see `typeParameters`). */\n parameters?: Maybe<Array<OpenMoveType>>;\n /** The function's return types. There can be multiple because functions in Move can return multiple values. These types can reference type parameters introduced by this function (see `typeParameters`). */\n return?: Maybe<Array<OpenMoveType>>;\n /**\n * Constraints on the function's formal type parameters.\n *\n * Move bytecode does not name type parameters, so when they are referenced (e.g. in parameter and return types), they are identified by their index in 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\n/** Declaration of a type parameter on a Move function. */\nexport type MoveFunctionTypeParameter = {\n __typename?: 'MoveFunctionTypeParameter';\n /** Ability constraints on this type parameter. */\n constraints: Array<MoveAbility>;\n};\n\n/**\n * Modules are a unit of code organization in Move.\n *\n * Modules belong to packages, and contain type and function definitions.\n */\nexport type MoveModule = {\n __typename?: 'MoveModule';\n /** Base64 encoded bytes of the serialized CompiledModule. */\n bytes?: Maybe<Scalars['Base64']['output']>;\n /** The datatype (struct or enum) named `name` in this module. */\n datatype?: Maybe<MoveDatatype>;\n /** Paginate through this module's datatype definitions. */\n datatypes?: Maybe<MoveDatatypeConnection>;\n /** Textual representation of the module's bytecode. */\n disassembly?: Maybe<Scalars['String']['output']>;\n /** The enum named `name` in this module. */\n enum?: Maybe<MoveEnum>;\n /** Paginate through this module's enum definitions. */\n enums?: Maybe<MoveEnumConnection>;\n /** Bytecode format version. */\n fileFormatVersion?: Maybe<Scalars['Int']['output']>;\n /** Modules that this module considers friends. These modules can call `public(package)` functions in this module. */\n friends?: Maybe<MoveModuleConnection>;\n /** The function named `name` in this module. */\n function?: Maybe<MoveFunction>;\n /** Paginate through this module's function definitions. */\n functions?: Maybe<MoveFunctionConnection>;\n /** The module's unqualified name. */\n name: Scalars['String']['output'];\n /** The package that this module was defined in. */\n package?: Maybe<MovePackage>;\n /** The struct named `name` in this module. */\n struct?: Maybe<MoveStruct>;\n /** Paginate through this module's struct definitions. */\n structs?: Maybe<MoveStructConnection>;\n};\n\n\n/**\n * Modules are a unit of code organization in Move.\n *\n * Modules belong to packages, and contain type and function definitions.\n */\nexport type MoveModuleDatatypeArgs = {\n name: Scalars['String']['input'];\n};\n\n\n/**\n * Modules are a unit of code organization in Move.\n *\n * Modules belong to packages, and contain type and function definitions.\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 * Modules are a unit of code organization in Move.\n *\n * Modules belong to packages, and contain type and function definitions.\n */\nexport type MoveModuleEnumArgs = {\n name: Scalars['String']['input'];\n};\n\n\n/**\n * Modules are a unit of code organization in Move.\n *\n * Modules belong to packages, and contain type and function definitions.\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 * Modules are a unit of code organization in Move.\n *\n * Modules belong to packages, and contain type and function definitions.\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 * Modules are a unit of code organization in Move.\n *\n * Modules belong to packages, and contain type and function definitions.\n */\nexport type MoveModuleFunctionArgs = {\n name: Scalars['String']['input'];\n};\n\n\n/**\n * Modules are a unit of code organization in Move.\n *\n * Modules belong to packages, and contain type and function definitions.\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 * Modules are a unit of code organization in Move.\n *\n * Modules belong to packages, and contain type and function definitions.\n */\nexport type MoveModuleStructArgs = {\n name: Scalars['String']['input'];\n};\n\n\n/**\n * Modules are a unit of code organization in Move.\n *\n * Modules belong to packages, and contain type and function definitions.\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/** A MoveObject is a kind of Object that reprsents data stored on-chain. */\nexport type MoveObject = IAddressable & IMoveObject & IObject & {\n __typename?: 'MoveObject';\n /** The MoveObject's ID. */\n address: Scalars['HaneulAddress']['output'];\n /** Attempts to convert the object into a CoinMetadata. */\n asCoinMetadata?: Maybe<CoinMetadata>;\n /** Attempts to convert the object into a DynamicField. */\n asDynamicField?: Maybe<DynamicField>;\n /**\n * Fetch the total balance for coins with marker type `coinType` (e.g. `0x2::haneul::HANEUL`), owned by this address.\n *\n * If the address does not own any coins of that type, a balance of zero is returned.\n */\n balance?: Maybe<Balance>;\n /** Total balance across coins owned by this address, grouped by coin type. */\n balances?: Maybe<BalanceConnection>;\n /** The structured representation of the object's contents. */\n contents?: Maybe<MoveValue>;\n /** The domain explicitly configured as the default HaneulNS name for this address. */\n defaultHaneulnsName?: Maybe<Scalars['String']['output']>;\n /** 32-byte hash that identifies the object's contents, encoded in Base58. */\n digest?: Maybe<Scalars['String']['output']>;\n /**\n * Access a dynamic field on an object using its type and BCS-encoded name.\n *\n * Returns `null` if a dynamic field with that name could not be found attached to this object.\n */\n dynamicField?: Maybe<DynamicField>;\n /**\n * Dynamic fields owned by this object.\n *\n * Dynamic fields on wrapped objects can be accessed using `Address.dynamicFields`.\n */\n dynamicFields?: Maybe<DynamicFieldConnection>;\n /**\n * Access a dynamic object field on an object using its type and BCS-encoded name.\n *\n * Returns `null` if a dynamic object field with that name could not be found attached to this object.\n */\n dynamicObjectField?: Maybe<DynamicField>;\n /**\n * Whether this object can be transfered using the `TransferObjects` Programmable Transaction Command or `haneul::transfer::public_transfer`.\n *\n * Both these operations require the object to have both the `key` and `store` abilities.\n */\n hasPublicTransfer?: Maybe<Scalars['Boolean']['output']>;\n /** The Base64-encoded BCS serialize of this object, as a `MoveObject`. */\n moveObjectBcs?: Maybe<Scalars['Base64']['output']>;\n /**\n * Fetch the total balances keyed by coin types (e.g. `0x2::haneul::HANEUL`) owned by this address.\n *\n * If the address does not own any coins of a given type, a balance of zero is returned for that type.\n */\n multiGetBalances?: Maybe<Array<Balance>>;\n /**\n * Access dynamic fields on an object using their types and BCS-encoded names.\n *\n * Returns a list of dynamic fields that is guaranteed to be the same length as `keys`. If a dynamic field in `keys` could not be found in the store, its corresponding entry in the result will be `null`.\n */\n multiGetDynamicFields: Array<Maybe<DynamicField>>;\n /**\n * Access dynamic object fields on an object using their types and BCS-encoded names.\n *\n * Returns a list of dynamic object fields that is guaranteed to be the same length as `keys`. If a dynamic object field in `keys` could not be found in the store, its corresponding entry in the result will be `null`.\n */\n multiGetDynamicObjectFields: Array<Maybe<DynamicField>>;\n /**\n * Fetch the object with the same ID, at a different version, root version bound, or checkpoint.\n *\n * If no additional bound is provided, the latest version of this object is fetched at the latest checkpoint.\n */\n objectAt?: Maybe<Object>;\n /** The Base64-encoded BCS serialization of this object, as an `Object`. */\n objectBcs?: Maybe<Scalars['Base64']['output']>;\n /** Paginate all versions of this object after this one. */\n objectVersionsAfter?: Maybe<ObjectConnection>;\n /** Paginate all versions of this object before this one. */\n objectVersionsBefore?: Maybe<ObjectConnection>;\n /** Objects owned by this object, optionally filtered by type. */\n objects?: Maybe<MoveObjectConnection>;\n /** The object's owner kind. */\n owner?: Maybe<Owner>;\n /** The transaction that created this version of the object. */\n previousTransaction?: Maybe<Transaction>;\n /** The transactions that sent objects to this object. */\n receivedTransactions?: Maybe<TransactionConnection>;\n /** The SUI returned to the sponsor or sender of the transaction that modifies or deletes this object. */\n storageRebate?: Maybe<Scalars['BigInt']['output']>;\n /** The version of this object that this content comes from. */\n version?: Maybe<Scalars['UInt53']['output']>;\n};\n\n\n/** A MoveObject is a kind of Object that reprsents data stored on-chain. */\nexport type MoveObjectBalanceArgs = {\n coinType: Scalars['String']['input'];\n};\n\n\n/** A MoveObject is a kind of Object that reprsents data stored on-chain. */\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/** A MoveObject is a kind of Object that reprsents data stored on-chain. */\nexport type MoveObjectDynamicFieldArgs = {\n name: DynamicFieldName;\n};\n\n\n/** A MoveObject is a kind of Object that reprsents data stored on-chain. */\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/** A MoveObject is a kind of Object that reprsents data stored on-chain. */\nexport type MoveObjectDynamicObjectFieldArgs = {\n name: DynamicFieldName;\n};\n\n\n/** A MoveObject is a kind of Object that reprsents data stored on-chain. */\nexport type MoveObjectMultiGetBalancesArgs = {\n keys: Array<Scalars['String']['input']>;\n};\n\n\n/** A MoveObject is a kind of Object that reprsents data stored on-chain. */\nexport type MoveObjectMultiGetDynamicFieldsArgs = {\n keys: Array<DynamicFieldName>;\n};\n\n\n/** A MoveObject is a kind of Object that reprsents data stored on-chain. */\nexport type MoveObjectMultiGetDynamicObjectFieldsArgs = {\n keys: Array<DynamicFieldName>;\n};\n\n\n/** A MoveObject is a kind of Object that reprsents data stored on-chain. */\nexport type MoveObjectObjectAtArgs = {\n checkpoint?: InputMaybe<Scalars['UInt53']['input']>;\n rootVersion?: InputMaybe<Scalars['UInt53']['input']>;\n version?: InputMaybe<Scalars['UInt53']['input']>;\n};\n\n\n/** A MoveObject is a kind of Object that reprsents data stored on-chain. */\nexport type MoveObjectObjectVersionsAfterArgs = {\n after?: InputMaybe<Scalars['String']['input']>;\n before?: InputMaybe<Scalars['String']['input']>;\n filter?: InputMaybe<VersionFilter>;\n first?: InputMaybe<Scalars['Int']['input']>;\n last?: InputMaybe<Scalars['Int']['input']>;\n};\n\n\n/** A MoveObject is a kind of Object that reprsents data stored on-chain. */\nexport type MoveObjectObjectVersionsBeforeArgs = {\n after?: InputMaybe<Scalars['String']['input']>;\n before?: InputMaybe<Scalars['String']['input']>;\n filter?: InputMaybe<VersionFilter>;\n first?: InputMaybe<Scalars['Int']['input']>;\n last?: InputMaybe<Scalars['Int']['input']>;\n};\n\n\n/** A MoveObject is a kind of Object that reprsents data stored on-chain. */\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/** A MoveObject is a kind of Object that reprsents data stored on-chain. */\nexport type MoveObjectReceivedTransactionsArgs = {\n after?: InputMaybe<Scalars['String']['input']>;\n before?: InputMaybe<Scalars['String']['input']>;\n filter?: InputMaybe<TransactionFilter>;\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/** A MovePackage is a kind of Object that represents code that has been published on-chain. It exposes information about its modules, type definitions, functions, and dependencies. */\nexport type MovePackage = IAddressable & IObject & {\n __typename?: 'MovePackage';\n /** The MovePackage's ID. */\n address: Scalars['HaneulAddress']['output'];\n /**\n * Fetch the total balance for coins with marker type `coinType` (e.g. `0x2::haneul::HANEUL`), owned by this address.\n *\n * If the address does not own any coins of that type, a balance of zero is returned.\n */\n balance?: Maybe<Balance>;\n /** Total balance across coins owned by this address, grouped by coin type. */\n balances?: Maybe<BalanceConnection>;\n /** The domain explicitly configured as the default HaneulNS name for this address. */\n defaultHaneulnsName?: Maybe<Scalars['String']['output']>;\n /** 32-byte hash that identifies the package's contents, encoded in Base58. */\n digest?: Maybe<Scalars['String']['output']>;\n /** The transitive dependencies of this package. */\n linkage?: Maybe<Array<Linkage>>;\n /** The module named `name` in this package. */\n module?: Maybe<MoveModule>;\n /** BCS representation of the package's modules. Modules appear as a sequence of pairs (module name, followed by module bytes), in alphabetic order by module name. */\n moduleBcs?: Maybe<Scalars['Base64']['output']>;\n /** Paginate through this package's modules. */\n modules?: Maybe<MoveModuleConnection>;\n /**\n * Fetch the total balances keyed by coin types (e.g. `0x2::haneul::HANEUL`) owned by this address.\n *\n * If the address does not own any coins of a given type, a balance of zero is returned for that type.\n */\n multiGetBalances?: Maybe<Array<Balance>>;\n /**\n * Fetch the package as an object with the same ID, at a different version, root version bound, or checkpoint.\n *\n * If no additional bound is provided, the latest version of this object is fetched at the latest checkpoint.\n */\n objectAt?: Maybe<Object>;\n /** The Base64-encoded BCS serialization of this package, as an `Object`. */\n objectBcs?: Maybe<Scalars['Base64']['output']>;\n /** Paginate all versions of this package treated as an object, after this one. */\n objectVersionsAfter?: Maybe<ObjectConnection>;\n /** Paginate all versions of this package treated as an object, before this one. */\n objectVersionsBefore?: Maybe<ObjectConnection>;\n /** Objects owned by this package, optionally filtered by type. */\n objects?: Maybe<MoveObjectConnection>;\n /** The object's owner kind. */\n owner?: Maybe<Owner>;\n /**\n * Fetch the package with the same original ID, at a different version, root version bound, or checkpoint.\n *\n * If no additional bound is provided, the latest version of this package is fetched at the latest checkpoint.\n */\n packageAt?: Maybe<MovePackage>;\n /** The Base64-encoded BCS serialization of this package, as a `MovePackage`. */\n packageBcs?: Maybe<Scalars['Base64']['output']>;\n /** Paginate all versions of this package after this one. */\n packageVersionsAfter?: Maybe<MovePackageConnection>;\n /** Paginate all versions of this package before this one. */\n packageVersionsBefore?: Maybe<MovePackageConnection>;\n /** The transaction that created this version of the object. */\n previousTransaction?: Maybe<Transaction>;\n /** The transactions that sent objects to this object. */\n receivedTransactions?: Maybe<TransactionConnection>;\n /** The SUI returned to the sponsor or sender of the transaction that modifies or deletes this object. */\n storageRebate?: Maybe<Scalars['BigInt']['output']>;\n /** A table identifying which versions of a package introduced each of its types. */\n typeOrigins?: Maybe<Array<TypeOrigin>>;\n /** The version of this package that this content comes from. */\n version?: Maybe<Scalars['UInt53']['output']>;\n};\n\n\n/** A MovePackage is a kind of Object that represents code that has been published on-chain. It exposes information about its modules, type definitions, functions, and dependencies. */\nexport type MovePackageBalanceArgs = {\n coinType: Scalars['String']['input'];\n};\n\n\n/** A MovePackage is a kind of Object that represents code that has been published on-chain. It exposes information about its modules, type definitions, functions, and dependencies. */\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/** A MovePackage is a kind of Object that represents code that has been published on-chain. It exposes information about its modules, type definitions, functions, and dependencies. */\nexport type MovePackageModuleArgs = {\n name: Scalars['String']['input'];\n};\n\n\n/** A MovePackage is a kind of Object that represents code that has been published on-chain. It exposes information about its modules, type definitions, functions, and dependencies. */\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/** A MovePackage is a kind of Object that represents code that has been published on-chain. It exposes information about its modules, type definitions, functions, and dependencies. */\nexport type MovePackageMultiGetBalancesArgs = {\n keys: Array<Scalars['String']['input']>;\n};\n\n\n/** A MovePackage is a kind of Object that represents code that has been published on-chain. It exposes information about its modules, type definitions, functions, and dependencies. */\nexport type MovePackageObjectAtArgs = {\n checkpoint?: InputMaybe<Scalars['UInt53']['input']>;\n rootVersion?: InputMaybe<Scalars['UInt53']['input']>;\n version?: InputMaybe<Scalars['UInt53']['input']>;\n};\n\n\n/** A MovePackage is a kind of Object that represents code that has been published on-chain. It exposes information about its modules, type definitions, functions, and dependencies. */\nexport type MovePackageObjectVersionsAfterArgs = {\n after?: InputMaybe<Scalars['String']['input']>;\n before?: InputMaybe<Scalars['String']['input']>;\n filter?: InputMaybe<VersionFilter>;\n first?: InputMaybe<Scalars['Int']['input']>;\n last?: InputMaybe<Scalars['Int']['input']>;\n};\n\n\n/** A MovePackage is a kind of Object that represents code that has been published on-chain. It exposes information about its modules, type definitions, functions, and dependencies. */\nexport type MovePackageObjectVersionsBeforeArgs = {\n after?: InputMaybe<Scalars['String']['input']>;\n before?: InputMaybe<Scalars['String']['input']>;\n filter?: InputMaybe<VersionFilter>;\n first?: InputMaybe<Scalars['Int']['input']>;\n last?: InputMaybe<Scalars['Int']['input']>;\n};\n\n\n/** A MovePackage is a kind of Object that represents code that has been published on-chain. It exposes information about its modules, type definitions, functions, and dependencies. */\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/** A MovePackage is a kind of Object that represents code that has been published on-chain. It exposes information about its modules, type definitions, functions, and dependencies. */\nexport type MovePackagePackageAtArgs = {\n checkpoint?: InputMaybe<Scalars['UInt53']['input']>;\n version?: InputMaybe<Scalars['UInt53']['input']>;\n};\n\n\n/** A MovePackage is a kind of Object that represents code that has been published on-chain. It exposes information about its modules, type definitions, functions, and dependencies. */\nexport type MovePackagePackageVersionsAfterArgs = {\n after?: InputMaybe<Scalars['String']['input']>;\n before?: InputMaybe<Scalars['String']['input']>;\n filter?: InputMaybe<VersionFilter>;\n first?: InputMaybe<Scalars['Int']['input']>;\n last?: InputMaybe<Scalars['Int']['input']>;\n};\n\n\n/** A MovePackage is a kind of Object that represents code that has been published on-chain. It exposes information about its modules, type definitions, functions, and dependencies. */\nexport type MovePackagePackageVersionsBeforeArgs = {\n after?: InputMaybe<Scalars['String']['input']>;\n before?: InputMaybe<Scalars['String']['input']>;\n filter?: InputMaybe<VersionFilter>;\n first?: InputMaybe<Scalars['Int']['input']>;\n last?: InputMaybe<Scalars['Int']['input']>;\n};\n\n\n/** A MovePackage is a kind of Object that represents code that has been published on-chain. It exposes information about its modules, type definitions, functions, and dependencies. */\nexport type MovePackageReceivedTransactionsArgs = {\n after?: InputMaybe<Scalars['String']['input']>;\n before?: InputMaybe<Scalars['String']['input']>;\n filter?: InputMaybe<TransactionFilter>;\n first?: InputMaybe<Scalars['Int']['input']>;\n last?: InputMaybe<Scalars['Int']['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/** Description of a struct type, defined in a Move module. */\nexport type MoveStruct = IMoveDatatype & {\n __typename?: 'MoveStruct';\n /** Abilities on this struct definition. */\n abilities?: Maybe<Array<MoveAbility>>;\n /**\n * The names and types of the struct's fields.\n *\n * Field types reference type parameters by their index in the defining struct's `typeParameters` list.\n */\n fields?: Maybe<Array<MoveField>>;\n /** The module that this struct is defined in. */\n module: MoveModule;\n /** The struct's unqualified name. */\n name: Scalars['String']['output'];\n /**\n * Constraints on the struct's formal type parameters.\n *\n * Move bytecode does not name type parameters, so when they are referenced (e.g. in field types), they are identified by their index in this list.\n */\n typeParameters?: Maybe<Array<MoveDatatypeTypeParameter>>;\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\n/** Represents instances of concrete types (no type parameters, no references). */\nexport type MoveType = {\n __typename?: 'MoveType';\n /** The abilities this concrete type has. Returns no abilities if the type is invalid. */\n abilities?: Maybe<Array<MoveAbility>>;\n /**\n * Structured representation of the \"shape\" of values that match this type. May return no\n * layout if the type is invalid.\n */\n layout?: Maybe<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?: Maybe<Scalars['Base64']['output']>;\n /**\n * A rendered JSON blob based on an on-chain template, substituted with data from this value.\n *\n * Returns `null` if the value's type does not have an associated `Display` template.\n */\n display?: Maybe<Display>;\n /**\n * Representation of a Move value in JSON, where:\n *\n * - Addresses, IDs, and UIDs are represented in canonical form, as JSON 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 * - Balances, Strings, and Urls are represented as JSON strings.\n * - Vectors of bytes are represented as Base64 blobs, and other vectors are represented by JSON arrays.\n * - Structs are represented by JSON objects.\n * - Enums are represented by JSON objects, with a field named `@variant` containing the variant name.\n * - Empty optional values are represented by `null`.\n */\n json?: Maybe<Scalars['JSON']['output']>;\n /** The value's type. */\n type?: Maybe<MoveType>;\n};\n\n/**\n * The visibility modifier describes which modules can access this module member.\n *\n * By default, a module member can be called only within the same module.\n */\nexport enum MoveVisibility {\n /** A friend member can be accessed in the module it is defined in and any other module in its package that is explicitly specified in its friend list. */\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/** A transaction that wanted to mutate a consensus-managed object but couldn't because it became not-consensus-managed before the transaction executed (for example, it was deleted, turned into an owned object, or wrapped). */\nexport type MutateConsensusStreamEnded = {\n __typename?: 'MutateConsensusStreamEnded';\n /** The ID of the consensus-managed object. */\n address?: Maybe<Scalars['HaneulAddress']['output']>;\n /** The sequence number associated with the consensus stream ending. */\n sequenceNumber?: Maybe<Scalars['UInt53']['output']>;\n};\n\n/** Mutations are used to write to the Sui network. */\nexport type Mutation = {\n __typename?: 'Mutation';\n /**\n * Execute a transaction, committing its effects on chain.\n *\n * - `transactionDataBcs` contains the BCS-encoded transaction data (Base64-encoded).\n * - `signatures` are a list of `flag || signature || pubkey` bytes, Base64-encoded.\n *\n * Waits until the transaction has reached finality on chain to return its transaction digest, or returns the error that prevented finality if that was not possible. A transaction is final when its effects are guaranteed on chain (it cannot be revoked).\n *\n * There may be a delay between transaction finality and when GraphQL requests (including the request that issued the transaction) reflect its effects. As a result, queries that depend on indexing the state of the chain (e.g. contents of output objects, address-level balance information at the time of the transaction), must wait for indexing to catch up by polling for the transaction digest using `Query.transaction`.\n */\n executeTransaction: ExecutionResult;\n};\n\n\n/** Mutations are used to write to the Sui network. */\nexport type MutationExecuteTransactionArgs = {\n signatures: Array<Scalars['Base64']['input']>;\n transactionDataBcs: Scalars['Base64']['input'];\n};\n\n/**\n * An Object on Sui is either a typed value (a Move Object) or a Package (modules containing functions and types).\n *\n * Every object on Sui is identified by a unique address, and has a version number that increases with every modification. Objects also hold metadata detailing their current owner (who can sign for access to the object and whether that access can modify and/or delete the object), and the digest of the last transaction that modified the object.\n */\nexport type Object = IAddressable & IObject & {\n __typename?: 'Object';\n /** The Object's ID. */\n address: Scalars['HaneulAddress']['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 * Fetch the total balance for coins with marker type `coinType` (e.g. `0x2::haneul::HANEUL`), owned by this address.\n *\n * If the address does not own any coins of that type, a balance of zero is returned.\n */\n balance?: Maybe<Balance>;\n /** Total balance across coins owned by this address, grouped by coin type. */\n balances?: Maybe<BalanceConnection>;\n /** The domain explicitly configured as the default HaneulNS name for this address. */\n defaultHaneulnsName?: Maybe<Scalars['String']['output']>;\n /** 32-byte hash that identifies the object's contents, encoded in Base58. */\n digest?: Maybe<Scalars['String']['output']>;\n /**\n * Access a dynamic field on an object using its type and BCS-encoded name.\n *\n * Returns `null` if a dynamic field with that name could not be found attached to this object.\n */\n dynamicField?: Maybe<DynamicField>;\n /** Dynamic fields owned by this object. */\n dynamicFields?: Maybe<DynamicFieldConnection>;\n /**\n * Access a dynamic object field on an object using its type and BCS-encoded name.\n *\n * Returns `null` if a dynamic object field with that name could not be found attached to this object.\n */\n dynamicObjectField?: Maybe<DynamicField>;\n /**\n * Fetch the total balances keyed by coin types (e.g. `0x2::haneul::HANEUL`) owned by this address.\n *\n * Returns `None` when no checkpoint is set in scope (e.g. execution scope).\n * If the address does not own any coins of a given type, a balance of zero is returned for that type.\n */\n multiGetBalances?: Maybe<Array<Balance>>;\n /**\n * Access dynamic fields on an object using their types and BCS-encoded names.\n *\n * Returns a list of dynamic fields that is guaranteed to be the same length as `keys`. If a dynamic field in `keys` could not be found in the store, its corresponding entry in the result will be `null`.\n */\n multiGetDynamicFields: Array<Maybe<DynamicField>>;\n /**\n * Access dynamic object fields on an object using their types and BCS-encoded names.\n *\n * Returns a list of dynamic object fields that is guaranteed to be the same length as `keys`. If a dynamic object field in `keys` could not be found in the store, its corresponding entry in the result will be `null`.\n */\n multiGetDynamicObjectFields: Array<Maybe<DynamicField>>;\n /**\n * Fetch the object with the same ID, at a different version, root version bound, or checkpoint.\n *\n * If no additional bound is provided, the latest version of this object is fetched at the latest checkpoint.\n */\n objectAt?: Maybe<Object>;\n /** The Base64-encoded BCS serialization of this object, as an `Object`. */\n objectBcs?: Maybe<Scalars['Base64']['output']>;\n /** Paginate all versions of this object after this one. */\n objectVersionsAfter?: Maybe<ObjectConnection>;\n /** Paginate all versions of this object before this one. */\n objectVersionsBefore?: Maybe<ObjectConnection>;\n /** Objects owned by this object, optionally filtered by type. */\n objects?: Maybe<MoveObjectConnection>;\n /** The object's owner kind. */\n owner?: Maybe<Owner>;\n /** The transaction that created this version of the object. */\n previousTransaction?: Maybe<Transaction>;\n /** The transactions that sent objects to this object */\n receivedTransactions?: Maybe<TransactionConnection>;\n /** The SUI returned to the sponsor or sender of the transaction that modifies or deletes this object. */\n storageRebate?: Maybe<Scalars['BigInt']['output']>;\n /** The version of this object that this content comes from. */\n version?: Maybe<Scalars['UInt53']['output']>;\n};\n\n\n/**\n * An Object on Sui is either a typed value (a Move Object) or a Package (modules containing functions and types).\n *\n * Every object on Sui is identified by a unique address, and has a version number that increases with every modification. Objects also hold metadata detailing their current owner (who can sign for access to the object and whether that access can modify and/or delete the object), and the digest of the last transaction that modified the object.\n */\nexport type ObjectBalanceArgs = {\n coinType: Scalars['String']['input'];\n};\n\n\n/**\n * An Object on Sui is either a typed value (a Move Object) or a Package (modules containing functions and types).\n *\n * Every object on Sui is identified by a unique address, and has a version number that increases with every modification. Objects also hold metadata detailing their current owner (who can sign for access to the object and whether that access can modify and/or delete the object), and the digest of the last transaction that modified the object.\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 on Sui is either a typed value (a Move Object) or a Package (modules containing functions and types).\n *\n * Every object on Sui is identified by a unique address, and has a version number that increases with every modification. Objects also hold metadata detailing their current owner (who can sign for access to the object and whether that access can modify and/or delete the object), and the digest of the last transaction that modified the object.\n */\nexport type ObjectDynamicFieldArgs = {\n name: DynamicFieldName;\n};\n\n\n/**\n * An Object on Sui is either a typed value (a Move Object) or a Package (modules containing functions and types).\n *\n * Every object on Sui is identified by a unique address, and has a version number that increases with every modification. Objects also hold metadata detailing their current owner (who can sign for access to the object and whether that access can modify and/or delete the object), and the digest of the last transaction that modified the object.\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 on Sui is either a typed value (a Move Object) or a Package (modules containing functions and types).\n *\n * Every object on Sui is identified by a unique address, and has a version number that increases with every modification. Objects also hold metadata detailing their current owner (who can sign for access to the object and whether that access can modify and/or delete the object), and the digest of the last transaction that modified the object.\n */\nexport type ObjectDynamicObjectFieldArgs = {\n name: DynamicFieldName;\n};\n\n\n/**\n * An Object on Sui is either a typed value (a Move Object) or a Package (modules containing functions and types).\n *\n * Every object on Sui is identified by a unique address, and has a version number that increases with every modification. Objects also hold metadata detailing their current owner (who can sign for access to the object and whether that access can modify and/or delete the object), and the digest of the last transaction that modified the object.\n */\nexport type ObjectMultiGetBalancesArgs = {\n keys: Array<Scalars['String']['input']>;\n};\n\n\n/**\n * An Object on Sui is either a typed value (a Move Object) or a Package (modules containing functions and types).\n *\n * Every object on Sui is identified by a unique address, and has a version number that increases with every modification. Objects also hold metadata detailing their current owner (who can sign for access to the object and whether that access can modify and/or delete the object), and the digest of the last transaction that modified the object.\n */\nexport type ObjectMultiGetDynamicFieldsArgs = {\n keys: Array<DynamicFieldName>;\n};\n\n\n/**\n * An Object on Sui is either a typed value (a Move Object) or a Package (modules containing functions and types).\n *\n * Every object on Sui is identified by a unique address, and has a version number that increases with every modification. Objects also hold metadata detailing their current owner (who can sign for access to the object and whether that access can modify and/or delete the object), and the digest of the last transaction that modified the object.\n */\nexport type ObjectMultiGetDynamicObjectFieldsArgs = {\n keys: Array<DynamicFieldName>;\n};\n\n\n/**\n * An Object on Sui is either a typed value (a Move Object) or a Package (modules containing functions and types).\n *\n * Every object on Sui is identified by a unique address, and has a version number that increases with every modification. Objects also hold metadata detailing their current owner (who can sign for access to the object and whether that access can modify and/or delete the object), and the digest of the last transaction that modified the object.\n */\nexport type ObjectObjectAtArgs = {\n checkpoint?: InputMaybe<Scalars['UInt53']['input']>;\n rootVersion?: InputMaybe<Scalars['UInt53']['input']>;\n version?: InputMaybe<Scalars['UInt53']['input']>;\n};\n\n\n/**\n * An Object on Sui is either a typed value (a Move Object) or a Package (modules containing functions and types).\n *\n * Every object on Sui is identified by a unique address, and has a version number that increases with every modification. Objects also hold metadata detailing their current owner (who can sign for access to the object and whether that access can modify and/or delete the object), and the digest of the last transaction that modified the object.\n */\nexport type ObjectObjectVersionsAfterArgs = {\n after?: InputMaybe<Scalars['String']['input']>;\n before?: InputMaybe<Scalars['String']['input']>;\n filter?: InputMaybe<VersionFilter>;\n first?: InputMaybe<Scalars['Int']['input']>;\n last?: InputMaybe<Scalars['Int']['input']>;\n};\n\n\n/**\n * An Object on Sui is either a typed value (a Move Object) or a Package (modules containing functions and types).\n *\n * Every object on Sui is identified by a unique address, and has a version number that increases with every modification. Objects also hold metadata detailing their current owner (who can sign for access to the object and whether that access can modify and/or delete the object), and the digest of the last transaction that modified the object.\n */\nexport type ObjectObjectVersionsBeforeArgs = {\n after?: InputMaybe<Scalars['String']['input']>;\n before?: InputMaybe<Scalars['String']['input']>;\n filter?: InputMaybe<VersionFilter>;\n first?: InputMaybe<Scalars['Int']['input']>;\n last?: InputMaybe<Scalars['Int']['input']>;\n};\n\n\n/**\n * An Object on Sui is either a typed value (a Move Object) or a Package (modules containing functions and types).\n *\n * Every object on Sui is identified by a unique address, and has a version number that increases with every modification. Objects also hold metadata detailing their current owner (who can sign for access to the object and whether that access can modify and/or delete the object), and the digest of the last transaction that modified the object.\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 on Sui is either a typed value (a Move Object) or a Package (modules containing functions and types).\n *\n * Every object on Sui is identified by a unique address, and has a version number that increases with every modification. Objects also hold metadata detailing their current owner (who can sign for access to the object and whether that access can modify and/or delete the object), and the digest of the last transaction that modified the object.\n */\nexport type ObjectReceivedTransactionsArgs = {\n after?: InputMaybe<Scalars['String']['input']>;\n before?: InputMaybe<Scalars['String']['input']>;\n filter?: InputMaybe<TransactionFilter>;\n first?: InputMaybe<Scalars['Int']['input']>;\n last?: InputMaybe<Scalars['Int']['input']>;\n};\n\nexport type ObjectChange = {\n __typename?: 'ObjectChange';\n /** The address of the object that has changed. */\n address: Scalars['HaneulAddress']['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 * A filter over the live object set, the filter can be one of:\n *\n * - A filter on type (all live objects whose type matches that filter).\n * - Fetching all objects owned by an address or object, optionally filtered by type.\n * - Fetching all shared or immutable objects, filtered by type.\n */\nexport type ObjectFilter = {\n /**\n * Specifies the address of the owning address or object.\n *\n * This field is required if `ownerKind` is \"ADDRESS\" or \"OBJECT\". If provided without `ownerKind`, `ownerKind` defaults to \"ADDRESS\".\n */\n owner?: InputMaybe<Scalars['HaneulAddress']['input']>;\n /**\n * Filter on whether the object is address-owned, object-owned, shared, or immutable.\n *\n * - If this field is set to \"ADDRESS\" or \"OBJECT\", then an owner filter must also be provided.\n * - If this field is set to \"SHARED\" or \"IMMUTABLE\", then a type filter must also be provided.\n */\n ownerKind?: InputMaybe<OwnerKind>;\n /**\n * Filter on the object's type.\n *\n * The filter can be one of:\n *\n * - A package address: `0x2`,\n * - A module: `0x2::coin`,\n * - A fully-qualified name: `0x2::coin::Coin`,\n * - A type instantiation: `0x2::coin::Coin<0x2::haneul::HANEUL>`.\n */\n type?: InputMaybe<Scalars['String']['input']>;\n};\n\n/**\n * Identifies a specific version of an object.\n *\n * The `address` field must be specified, as well as at most one of `version`, `rootVersion`, or `atCheckpoint`. If none are provided, the object is fetched at the current checkpoint.\n *\n * Specifying a `version` or a `rootVersion` disables nested queries for paginating owned objects or dynamic fields (these queries are only supported at checkpoint boundaries).\n *\n * See `Query.object` for more details.\n */\nexport type ObjectKey = {\n /** The object's ID. */\n address: Scalars['HaneulAddress']['input'];\n /** If specified, tries to fetch the latest version as of this checkpoint. Fails if the checkpoint is later than the RPC's latest checkpoint. */\n atCheckpoint?: InputMaybe<Scalars['UInt53']['input']>;\n /**\n * If specified, tries to fetch the latest version of the object at or before this version. Nested dynamic field accesses will also be subject to this bound.\n *\n * This can be used to fetch a child or ancestor object bounded by its root object's version. For any wrapped or child (object-owned) object, its root object can be defined recursively as:\n *\n * - The root object of the object it is wrapped in, if it is wrapped.\n * - The root object of its owner, if it is owned by another object.\n * - The object itself, if it is not object-owned or wrapped.\n */\n rootVersion?: InputMaybe<Scalars['UInt53']['input']>;\n /** If specified, tries to fetch the object at this exact version. */\n version?: InputMaybe<Scalars['UInt53']['input']>;\n};\n\n/** Object is exclusively owned by a single object, and is mutable. Note that the owning object may be inaccessible because it is wrapped. */\nexport type ObjectOwner = {\n __typename?: 'ObjectOwner';\n /** The owner's address. */\n address?: Maybe<Address>;\n};\n\n/**\n * Represents types that could contain references or free type parameters. Such types can appear\n * as function parameters, in fields of structs, or as 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/** Placeholder for unimplemented command types */\nexport type OtherCommand = {\n __typename?: 'OtherCommand';\n /** Placeholder field for unimplemented commands */\n _?: Maybe<Scalars['Boolean']['output']>;\n};\n\n/** A Move object, either immutable, or owned mutable. */\nexport type OwnedOrImmutable = {\n __typename?: 'OwnedOrImmutable';\n object?: Maybe<Object>;\n};\n\n/** The object's owner kind. */\nexport type Owner = AddressOwner | ConsensusAddressOwner | Immutable | ObjectOwner | Shared;\n\n/** Filter on who owns an object. */\nexport enum OwnerKind {\n /** Object is owned by an address. */\n Address = 'ADDRESS',\n /** Object is frozen. */\n Immutable = 'IMMUTABLE',\n /** Object is a child of another object (e.g. a dynamic field or dynamic object field). */\n Object = 'OBJECT',\n /** Object is shared among multiple owners. */\n Shared = 'SHARED'\n}\n\n/** Filter for paginating packages published within a range of checkpoints. */\nexport type PackageCheckpointFilter = {\n /** Filter to packages that were published strictly after this checkpoint, defaults to fetching from the earliest checkpoint known to this RPC (this could be the genesis checkpoint, or some later checkpoint if data has been pruned). */\n afterCheckpoint?: InputMaybe<Scalars['UInt53']['input']>;\n /** Filter to packages published strictly before this checkpoint, defaults to fetching up to the latest checkpoint (inclusive). */\n beforeCheckpoint?: InputMaybe<Scalars['UInt53']['input']>;\n};\n\n/**\n * Identifies a specific version of a package.\n *\n * The `address` field must be specified, as well as at most one of `version`, or `atCheckpoint`. If neither is provided, the package is fetched at the current checkpoint.\n *\n * See `Query.package` for more details.\n */\nexport type PackageKey = {\n /** The object's ID. */\n address: Scalars['HaneulAddress']['input'];\n /** If specified, tries to fetch the latest version as of this checkpoint. */\n atCheckpoint?: InputMaybe<Scalars['UInt53']['input']>;\n /** If specified, tries to fetch the package at this exact version. */\n version?: InputMaybe<Scalars['UInt53']['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\nexport type PerEpochConfig = {\n __typename?: 'PerEpochConfig';\n /** The per-epoch configuration object as of when the transaction was executed. */\n object?: Maybe<Object>;\n};\n\n/** ProgrammableSystemTransaction is identical to ProgrammableTransaction, but GraphQL does not allow multiple variants with the same type. */\nexport type ProgrammableSystemTransaction = {\n __typename?: 'ProgrammableSystemTransaction';\n /** The transaction commands, executed sequentially. */\n commands?: Maybe<CommandConnection>;\n /** Input objects or primitive values. */\n inputs?: Maybe<TransactionInputConnection>;\n};\n\n\n/** ProgrammableSystemTransaction is identical to ProgrammableTransaction, but GraphQL does not allow multiple variants with the same type. */\nexport type ProgrammableSystemTransactionCommandsArgs = {\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/** ProgrammableSystemTransaction is identical to ProgrammableTransaction, but GraphQL does not allow multiple variants with the same type. */\nexport type ProgrammableSystemTransactionInputsArgs = {\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 ProgrammableTransaction = {\n __typename?: 'ProgrammableTransaction';\n /** The transaction commands, executed sequentially. */\n commands?: Maybe<CommandConnection>;\n /** Input objects or primitive values. */\n inputs?: Maybe<TransactionInputConnection>;\n};\n\n\nexport type ProgrammableTransactionCommandsArgs = {\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 ProgrammableTransactionInputsArgs = {\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/** A protocol configuration that can hold an arbitrary value (or no value at all). */\nexport type ProtocolConfig = {\n __typename?: 'ProtocolConfig';\n /** Configuration name. */\n key: Scalars['String']['output'];\n /** Configuration value. */\n value?: Maybe<Scalars['String']['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 boundaries. Configuration is split into feature flags (which are just booleans), and configs which can take any value (including no value at all), and will be represented by a string.\n */\nexport type ProtocolConfigs = {\n __typename?: 'ProtocolConfigs';\n /** Query for the value of the configuration with name `key`. */\n config?: Maybe<ProtocolConfig>;\n /** List all available configurations and their values. */\n configs: Array<ProtocolConfig>;\n /** Query for the state of the feature flag with name `key`. */\n featureFlag?: Maybe<FeatureFlag>;\n /** List all available feature flags and their values. */\n featureFlags: Array<FeatureFlag>;\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 boundaries. Configuration is split into feature flags (which are just booleans), and configs which can take any value (including no value at all), and will be represented by a string.\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 boundaries. Configuration is split into feature flags (which are just booleans), and configs which can take any value (including no value at all), and will be represented by a string.\n */\nexport type ProtocolConfigsFeatureFlagArgs = {\n key: Scalars['String']['input'];\n};\n\n/** Publishes a Move Package. */\nexport type PublishCommand = {\n __typename?: 'PublishCommand';\n /** IDs of the transitive dependencies of the package to be published. */\n dependencies?: Maybe<Array<Scalars['HaneulAddress']['output']>>;\n /** Bytecode for the modules to be published, BCS serialized and Base64 encoded. */\n modules?: Maybe<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?: Maybe<Scalars['Base64']['output']>;\n};\n\nexport type Query = {\n __typename?: 'Query';\n /**\n * Look-up an account by its HaneulAddress.\n *\n * If `rootVersion` is specified, nested dynamic field accesses will be fetched at or before this version. This can be used to fetch a child or ancestor object bounded by its root object's version, when its immediate parent is wrapped, or a value in a dynamic object field. For any wrapped or child (object-owned) object, its root object can be defined recursively as:\n *\n * - The root object of the object it is wrapped in, if it is wrapped.\n * - The root object of its owner, if it is owned by another object.\n * - The object itself, if it is not object-owned or wrapped.\n *\n * Specifying a `rootVersion` disables nested queries for paginating owned objects or dynamic fields (these queries are only supported at checkpoint boundaries).\n */\n address: Address;\n /** First four bytes of the network's genesis checkpoint digest (uniquely identifies the network), hex-encoded. */\n chainIdentifier: Scalars['String']['output'];\n /**\n * Fetch a checkpoint by its sequence number, or the latest checkpoint if no sequence number is provided.\n *\n * Returns `null` if the checkpoint does not exist in the store, either because it never existed or because it was pruned.\n */\n checkpoint?: Maybe<Checkpoint>;\n /** Paginate checkpoints in the network, optionally bounded to checkpoints in the given epoch. */\n checkpoints?: Maybe<CheckpointConnection>;\n /**\n * Fetch the CoinMetadata for a given coin type.\n *\n * Returns `null` if no CoinMetadata object exists for the given coin type.\n */\n coinMetadata?: Maybe<CoinMetadata>;\n /**\n * Fetch an epoch by its ID, or fetch the latest epoch if no ID is provided.\n *\n * Returns `null` if the epoch does not exist yet, or was pruned.\n */\n epoch?: Maybe<Epoch>;\n /** Paginate epochs that are in the network. */\n epochs?: Maybe<EpochConnection>;\n /** Paginate events that are emitted in the network, optionally filtered by event filters. */\n events?: Maybe<EventConnection>;\n /** Look-up an account by its HaneulNS name, assuming it has a valid, unexpired name registration. */\n haneulnsName?: Maybe<Address>;\n /**\n * Fetch checkpoints by their sequence numbers.\n *\n * Returns a list of checkpoints that is guaranteed to be the same length as `keys`. If a checkpoint in `keys` could not be found in the store, its corresponding entry in the result will be `null`. This could be because the checkpoint does not exist yet, or because it was pruned.\n */\n multiGetCheckpoints: Array<Maybe<Checkpoint>>;\n /**\n * Fetch epochs by their IDs.\n *\n * Returns a list of epochs that is guaranteed to be the same length as `keys`. If an epoch in `keys` could not be found in the store, its corresponding entry in the result will be `null`. This could be because the epoch does not exist yet, or because it was pruned.\n */\n multiGetEpochs: Array<Maybe<Epoch>>;\n /**\n * Fetch objects by their keys.\n *\n * Returns a list of objects that is guaranteed to be the same length as `keys`. If an object in `keys` could not be found in the store, its corresponding entry in the result will be `null`. This could be because the object never existed, or because it was pruned.\n */\n multiGetObjects: Array<Maybe<Object>>;\n /**\n * Fetch packages by their keys.\n *\n * Returns a list of packages that is guaranteed to be the same length as `keys`. If a package in `keys` could not be found in the store, its corresponding entry in the result will be `null`. This could be because that address never pointed to a package, or because the package was pruned.\n */\n multiGetPackages: Array<Maybe<MovePackage>>;\n /**\n * Fetch transaction effects by their transactions' digests.\n *\n * Returns a list of transaction effects that is guaranteed to be the same length as `keys`. If a digest in `keys` could not be found in the store, its corresponding entry in the result will be `null`. This could be because the transaction effects never existed, or because it was pruned.\n */\n multiGetTransactionEffects: Array<Maybe<TransactionEffects>>;\n /**\n * Fetch transactions by their digests.\n *\n * Returns a list of transactions that is guaranteed to be the same length as `keys`. If a digest in `keys` could not be found in the store, its corresponding entry in the result will be `null`. This could be because the transaction never existed, or because it was pruned.\n */\n multiGetTransactions: Array<Maybe<Transaction>>;\n /**\n * Fetch types by their string representations.\n *\n * Types are canonicalized: In the input they can be at any package address at or after the package that first defines them, and in the output they will be relocated to the package that first defines them.\n *\n * Returns a list of types that is guaranteed to be the same length as `keys`. If a type in `keys` could not be found, its corresponding entry in the result will be `null`.\n */\n multiGetTypes: Array<Maybe<MoveType>>;\n /**\n * Fetch an object by its address.\n *\n * If `version` is specified, the object will be fetched at that exact version.\n *\n * If `rootVersion` is specified, the object will be fetched at the latest version at or before this version. Nested dynamic field accesses will also be subject to this bound. This can be used to fetch a child or ancestor object bounded by its root object's version. For any wrapped or child (object-owned) object, its root object can be defined recursively as:\n *\n * - The root object of the object it is wrapped in, if it is wrapped.\n * - The root object of its owner, if it is owned by another object.\n * - The object itself, if it is not object-owned or wrapped.\n *\n * Specifying a `version` or a `rootVersion` disables nested queries for paginating owned objects or dynamic fields (these queries are only supported at checkpoint boundaries).\n *\n * If `atCheckpoint` is specified, the object will be fetched at the latest version as of this checkpoint. This will fail if the provided checkpoint is after the RPC's latest checkpoint.\n *\n * If none of the above are specified, the object is fetched at the latest checkpoint.\n *\n * It is an error to specify more than one of `version`, `rootVersion`, or `atCheckpoint`.\n *\n * Returns `null` if an object cannot be found that meets this criteria.\n */\n object?: Maybe<Object>;\n /** Paginate all versions of an object at `address`, optionally bounding the versions exclusively from below with `filter.afterVersion` or from above with `filter.beforeVersion`. */\n objectVersions?: Maybe<ObjectConnection>;\n /**\n * Paginate objects in the live object set, optionally filtered by owner and/or type. `filter` can be one of:\n *\n * - A filter on type (all live objects whose type matches that filter).\n * - Fetching all objects owned by an address or object, optionally filtered by type.\n * - Fetching all shared or immutable objects, filtered by type.\n */\n objects?: Maybe<ObjectConnection>;\n /**\n * Fetch a package by its address.\n *\n * If `version` is specified, the package loaded is the one that shares its original ID with the package at `address`, but whose version is `version`.\n *\n * If `atCheckpoint` is specified, the package loaded is the one with the largest version among all packages sharing an original ID with the package at `address` and was published at or before `atCheckpoint`.\n *\n * If neither are specified, the package is fetched at the latest checkpoint.\n *\n * It is an error to specify both `version` and `atCheckpoint`, and `null` will be returned if the package cannot be found as of the latest checkpoint, or the address points to an object that is not a package.\n *\n * Note that this interpretation of `version` and \"latest\" differs from the one used by `Query.object`, because non-system package upgrades generate objects with different IDs. To fetch a package using the versioning semantics of objects, use `Object.asMovePackage` nested under `Query.object`.\n */\n package?: Maybe<MovePackage>;\n /**\n * Paginate all versions of a package at `address`, optionally bounding the versions exclusively from below with `filter.afterVersion` or from above with `filter.beforeVersion`.\n *\n * Different versions of a package will have different object IDs, unless they are system packages, but will share the same original ID.\n */\n packageVersions?: Maybe<MovePackageConnection>;\n /** Paginate all packages published on-chain, optionally bounded to packages published strictly after `filter.afterCheckpoint` and/or strictly before `filter.beforeCheckpoint`. */\n packages?: Maybe<MovePackageConnection>;\n /** Fetch the protocol config by protocol version, or the latest protocol config used on chain if no version is provided. */\n protocolConfigs?: Maybe<ProtocolConfigs>;\n /** Configuration for this RPC service. */\n serviceConfig: ServiceConfig;\n /**\n * Simulate a transaction to preview its effects without executing it on chain.\n *\n * Accepts a JSON transaction matching the [Sui gRPC API schema](https://docs.haneul.io/references/fullnode-protocol#sui-rpc-v2-Transaction).\n * The JSON format allows for partial transaction specification where certain fields can be automatically resolved by the server.\n *\n * Alternatively, for already serialized transactions, you can pass BCS-encoded data:\n * `{\"bcs\": {\"value\": \"<base64>\"}}`\n *\n * Unlike `executeTransaction`, this does not require signatures since the transaction is not committed to the blockchain. This allows for previewing transaction effects, estimating gas costs, and testing transaction logic without spending gas or requiring valid signatures.\n *\n * - `checksEnabled`: If true, enables transaction validation checks during simulation. Defaults to true.\n * - `doGasSelection`: If true, enables automatic gas coin selection and budget estimation. Defaults to false.\n */\n simulateTransaction: SimulationResult;\n /**\n * Fetch a transaction by its digest.\n *\n * Returns `null` if the transaction does not exist in the store, either because it never existed or because it was pruned.\n */\n transaction?: Maybe<Transaction>;\n /**\n * Fetch transaction effects by its transaction's digest.\n *\n * Returns `null` if the transaction effects do not exist in the store, either because that transaction was not executed, or it was pruned.\n */\n transactionEffects?: Maybe<TransactionEffects>;\n /** The transactions that exist in the network, optionally filtered by transaction filters. */\n transactions?: Maybe<TransactionConnection>;\n /**\n * Fetch a structured representation of a concrete type, including its layout information.\n *\n * Types are canonicalized: In the input they can be at any package address at or after the package that first defines them, and in the output they will be relocated to the package that first defines them.\n *\n * Fails if the type is malformed, returns `null` if a type mentioned does not exist.\n */\n type?: Maybe<MoveType>;\n /**\n * Verify a zkLogin signature os from the given `author`.\n *\n * Returns a `ZkLoginVerifyResult` where `success` is `true` and `error` is empty if the signature is valid. If the signature is invalid, `success` is `false` and `error` contains the relevant error message.\n *\n * - `bytes` are either the bytes of a serialized personal message, or `TransactionData`, Base64-encoded.\n * - `signature` is a serialized zkLogin signature, also Base64-encoded.\n * - `intentScope` indicates whether `bytes` are to be parsed as a personal message or `TransactionData`.\n * - `author` is the signer's address.\n */\n verifyZkLoginSignature: ZkLoginVerifyResult;\n};\n\n\nexport type QueryAddressArgs = {\n address: Scalars['HaneulAddress']['input'];\n rootVersion?: InputMaybe<Scalars['UInt53']['input']>;\n};\n\n\nexport type QueryCheckpointArgs = {\n sequenceNumber?: InputMaybe<Scalars['UInt53']['input']>;\n};\n\n\nexport type QueryCheckpointsArgs = {\n after?: InputMaybe<Scalars['String']['input']>;\n before?: InputMaybe<Scalars['String']['input']>;\n filter?: InputMaybe<CheckpointFilter>;\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 QueryEpochArgs = {\n epochId?: InputMaybe<Scalars['UInt53']['input']>;\n};\n\n\nexport type QueryEpochsArgs = {\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 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 QueryHaneulnsNameArgs = {\n address: Scalars['String']['input'];\n rootVersion?: InputMaybe<Scalars['UInt53']['input']>;\n};\n\n\nexport type QueryMultiGetCheckpointsArgs = {\n keys: Array<Scalars['UInt53']['input']>;\n};\n\n\nexport type QueryMultiGetEpochsArgs = {\n keys: Array<Scalars['UInt53']['input']>;\n};\n\n\nexport type QueryMultiGetObjectsArgs = {\n keys: Array<ObjectKey>;\n};\n\n\nexport type QueryMultiGetPackagesArgs = {\n keys: Array<PackageKey>;\n};\n\n\nexport type QueryMultiGetTransactionEffectsArgs = {\n keys: Array<Scalars['String']['input']>;\n};\n\n\nexport type QueryMultiGetTransactionsArgs = {\n keys: Array<Scalars['String']['input']>;\n};\n\n\nexport type QueryMultiGetTypesArgs = {\n keys: Array<Scalars['String']['input']>;\n};\n\n\nexport type QueryObjectArgs = {\n address: Scalars['HaneulAddress']['input'];\n atCheckpoint?: InputMaybe<Scalars['UInt53']['input']>;\n rootVersion?: InputMaybe<Scalars['UInt53']['input']>;\n version?: InputMaybe<Scalars['UInt53']['input']>;\n};\n\n\nexport type QueryObjectVersionsArgs = {\n address: Scalars['HaneulAddress']['input'];\n after?: InputMaybe<Scalars['String']['input']>;\n before?: InputMaybe<Scalars['String']['input']>;\n filter?: InputMaybe<VersionFilter>;\n first?: InputMaybe<Scalars['Int']['input']>;\n last?: InputMaybe<Scalars['Int']['input']>;\n};\n\n\nexport type QueryObjectsArgs = {\n after?: InputMaybe<Scalars['String']['input']>;\n before?: InputMaybe<Scalars['String']['input']>;\n filter: ObjectFilter;\n first?: InputMaybe<Scalars['Int']['input']>;\n last?: InputMaybe<Scalars['Int']['input']>;\n};\n\n\nexport type QueryPackageArgs = {\n address: Scalars['HaneulAddress']['input'];\n atCheckpoint?: InputMaybe<Scalars['UInt53']['input']>;\n version?: InputMaybe<Scalars['UInt53']['input']>;\n};\n\n\nexport type QueryPackageVersionsArgs = {\n address: Scalars['HaneulAddress']['input'];\n after?: InputMaybe<Scalars['String']['input']>;\n before?: InputMaybe<Scalars['String']['input']>;\n filter?: InputMaybe<VersionFilter>;\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<PackageCheckpointFilter>;\n first?: InputMaybe<Scalars['Int']['input']>;\n last?: InputMaybe<Scalars['Int']['input']>;\n};\n\n\nexport type QueryProtocolConfigsArgs = {\n version?: InputMaybe<Scalars['UInt53']['input']>;\n};\n\n\nexport type QuerySimulateTransactionArgs = {\n checksEnabled?: InputMaybe<Scalars['Boolean']['input']>;\n doGasSelection?: InputMaybe<Scalars['Boolean']['input']>;\n transaction: Scalars['JSON']['input'];\n};\n\n\nexport type QueryTransactionArgs = {\n digest: Scalars['String']['input'];\n};\n\n\nexport type QueryTransactionEffectsArgs = {\n digest: Scalars['String']['input'];\n};\n\n\nexport type QueryTransactionsArgs = {\n after?: InputMaybe<Scalars['String']['input']>;\n before?: InputMaybe<Scalars['String']['input']>;\n filter?: InputMaybe<TransactionFilter>;\n first?: InputMaybe<Scalars['Int']['input']>;\n last?: InputMaybe<Scalars['Int']['input']>;\n};\n\n\nexport type QueryTypeArgs = {\n type: Scalars['String']['input'];\n};\n\n\nexport type QueryVerifyZkLoginSignatureArgs = {\n author: Scalars['HaneulAddress']['input'];\n bytes: Scalars['Base64']['input'];\n intentScope: ZkLoginIntentScope;\n signature: Scalars['Base64']['input'];\n};\n\n/** System transaction for creating the on-chain randomness state. */\nexport type RandomnessStateCreateTransaction = {\n __typename?: 'RandomnessStateCreateTransaction';\n /** A workaround to define an empty variant of a GraphQL union. */\n _?: Maybe<Scalars['Boolean']['output']>;\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<Scalars['Int']['output']>;\n /** Updated random bytes, Base64 encoded. */\n randomBytes?: Maybe<Scalars['Base64']['output']>;\n /** The initial version of the randomness object that it was shared at. */\n randomnessObjInitialSharedVersion?: Maybe<Scalars['Int']['output']>;\n /** Randomness round of the update. */\n randomnessRound?: Maybe<Scalars['Int']['output']>;\n};\n\n/** A transaction that wanted to read a consensus-managed object but couldn't because it became not-consensus-managed before the transaction executed (for example, it was deleted, turned into an owned object, or wrapped). */\nexport type ReadConsensusStreamEnded = {\n __typename?: 'ReadConsensusStreamEnded';\n /** The ID of the consensus-managed object. */\n address?: Maybe<Scalars['HaneulAddress']['output']>;\n /** The sequence number associated with the consensus stream ending. */\n sequenceNumber?: Maybe<Scalars['UInt53']['output']>;\n};\n\n/** A Move object that can be received in this transaction. */\nexport type Receiving = {\n __typename?: 'Receiving';\n object?: Maybe<Object>;\n};\n\n/** Whether the currency is regulated or not. */\nexport enum RegulatedState {\n /** A `DenyCap` or a `RegulatedCoinMetadata` exists for this currency. */\n Regulated = 'REGULATED',\n /** The currency was created without a deny list. */\n Unregulated = 'UNREGULATED'\n}\n\nexport type SafeMode = {\n __typename?: 'SafeMode';\n /**\n * Whether safe mode was used for the last epoch change.\n * The system will retry a full epoch change on every epoch boundary and automatically reset this flag if so.\n */\n enabled?: Maybe<Scalars['Boolean']['output']>;\n /** Accumulated fees for computation and cost that have not been added to the various reward pools, because the full epoch change did not happen. */\n gasSummary?: Maybe<GasCostSummary>;\n};\n\nexport type ServiceConfig = {\n __typename?: 'ServiceConfig';\n /** Range of checkpoints for which data is available for a query type, field and optional filter. If filter is not provided, the strictest retention range for the query and type is returned. */\n availableRange: AvailableRange;\n /**\n * Number of elements a paginated connection will return if a page size is not supplied.\n *\n * Accepts `type` and `field` arguments which identify the connection that is being queried. If the field in question is paginated, its default page size is returned. If it does not exist or is not paginated, `null` is returned.\n */\n defaultPageSize?: Maybe<Scalars['Int']['output']>;\n /** Maximum output size of a disassembled MoveModule, in bytes. */\n maxDisassembledModuleSize?: Maybe<Scalars['Int']['output']>;\n /** Maximum depth of nested field access supported in display outputs. */\n maxDisplayFieldDepth?: Maybe<Scalars['Int']['output']>;\n /** Maximum output size of a display output. */\n maxDisplayOutputSize?: Maybe<Scalars['Int']['output']>;\n /** Maximum budget in bytes to spend when outputting a structured `MoveValue`. */\n maxMoveValueBound?: Maybe<Scalars['Int']['output']>;\n /** Maximum nesting allowed in datatype fields when calculating the layout of a single type. */\n maxMoveValueDepth?: Maybe<Scalars['Int']['output']>;\n /** Maximum number of elements that can be requested from a multi-get query. A request to fetch more keys will result in an error. */\n maxMultiGetSize?: Maybe<Scalars['Int']['output']>;\n /**\n * Maximum number of estimated output nodes in a GraphQL response.\n *\n * The estimate is an upperbound of how many nodes there would be in the output assuming every requested field is present, paginated requests return full page sizes, and multi-get queries find all requested keys. Below is a worked example query:\n *\n * ```graphql\n * | 0: query { # 514 = total\n * | 1: checkpoint { # 1\n * | 2: sequenceNumber # 1\n * | 3: }\n * | 4:\n * | 5: multiGetObjects([$a, $b, $c]) { # 1 (* 3)\n * | 6: address # 3\n * | 7: digest # 3\n * | 8: }\n * | 9:\n * | 10: # default page size is 20\n * | 11: transactions { # 1 (* 20)\n * | 12: pageInfo { # 1\n * | 13: hasNextPage # 1\n * | 14: endCursor # 1\n * | 15: }\n * | 16:\n * | 17: nodes # 1\n * | 18: { # 20\n * | 19: digest # 20\n * | 20: effects { # 20\n * | 21: objectChanges(first: 10) { # 20 (* 10)\n * | 22: nodes # 20\n * | 23: { # 200\n * | 24: address # 200\n * | 25: }\n * | 26: }\n * | 27: }\n * | 28: }\n * | 29: }\n * | 30: }\n * ```\n */\n maxOutputNodes?: Maybe<Scalars['Int']['output']>;\n /**\n * Maximum number of elements that can be requested from a paginated connection. A request to fetch more elements will result in an error.\n *\n * Accepts `type` and `field` arguments which identify the connection that is being queried. If the field in question is paginated, its max page size is returned. If it does not exist or is not paginated, `null` is returned.\n */\n maxPageSize?: Maybe<Scalars['Int']['output']>;\n /** Maximum depth of a GraphQL query that can be accepted by this service. */\n maxQueryDepth?: Maybe<Scalars['Int']['output']>;\n /** The maximum number of nodes (field names) the service will accept in a single query. */\n maxQueryNodes?: Maybe<Scalars['Int']['output']>;\n /** Maximum size in bytes of a single GraphQL request, excluding the elements covered by `maxTransactionPayloadSize`. */\n maxQueryPayloadSize?: Maybe<Scalars['Int']['output']>;\n /**\n * Maximum size in bytes allowed for the `txBytes` and `signatures` parameters of an `executeTransaction` or `simulateTransaction` field, or the `bytes` and `signature` parameters of a `verifyZkLoginSignature` field.\n *\n * This is cumulative across all matching fields in a single GraphQL request.\n */\n maxTransactionPayloadSize?: Maybe<Scalars['Int']['output']>;\n /** Maximum amount of nesting among type arguments (type arguments nest when a type argument is itself generic and has arguments). */\n maxTypeArgumentDepth?: Maybe<Scalars['Int']['output']>;\n /** Maximum number of type parameters a type can have. */\n maxTypeArgumentWidth?: Maybe<Scalars['Int']['output']>;\n /** Maximum number of datatypes that need to be processed when calculating the layout of a single type. */\n maxTypeNodes?: Maybe<Scalars['Int']['output']>;\n /** Maximum time in milliseconds spent waiting for a response from fullnode after issuing a transaction to execute. Note that the transaction may still succeed even in the case of a timeout. Transactions are idempotent, so a transaction that times out should be re-submitted until the network returns a definite response (success or failure, not timeout). */\n mutationTimeoutMs?: Maybe<Scalars['Int']['output']>;\n /** Maximum time in milliseconds that will be spent to serve one query request. */\n queryTimeoutMs?: Maybe<Scalars['Int']['output']>;\n};\n\n\nexport type ServiceConfigAvailableRangeArgs = {\n field?: InputMaybe<Scalars['String']['input']>;\n filters?: InputMaybe<Array<Scalars['String']['input']>>;\n type: Scalars['String']['input'];\n};\n\n\nexport type ServiceConfigDefaultPageSizeArgs = {\n field: Scalars['String']['input'];\n type: Scalars['String']['input'];\n};\n\n\nexport type ServiceConfigMaxPageSizeArgs = {\n field: Scalars['String']['input'];\n type: Scalars['String']['input'];\n};\n\n/** Object is shared, can be used by any address, and is mutable. */\nexport type Shared = {\n __typename?: 'Shared';\n /** The version at which the object became shared. */\n initialSharedVersion?: Maybe<Scalars['UInt53']['output']>;\n};\n\n/** A Move object that's shared. */\nexport type SharedInput = {\n __typename?: 'SharedInput';\n /** The address of the shared object. */\n address?: Maybe<Scalars['HaneulAddress']['output']>;\n /** The version that this object was shared at. */\n initialSharedVersion?: Maybe<Scalars['UInt53']['output']>;\n /**\n * Controls whether the transaction block can reference the shared object as a mutable reference or by value.\n *\n * This has implications for scheduling: Transactions that just read shared objects at a certain version (mutable = false) can be executed concurrently, while transactions that write shared objects (mutable = true) must be executed serially with respect to each other.\n */\n mutable?: Maybe<Scalars['Boolean']['output']>;\n};\n\n/** The result of simulating a transaction, including the predicted effects and any errors. */\nexport type SimulationResult = {\n __typename?: 'SimulationResult';\n /**\n * The predicted effects of the transaction if it were executed.\n *\n * `None` if the simulation failed due to an error.\n */\n effects?: Maybe<TransactionEffects>;\n /**\n * Error message if the simulation failed.\n *\n * `None` if the simulation was successful.\n */\n error?: Maybe<Scalars['String']['output']>;\n /** The intermediate outputs for each command of the transaction simulation, including contents of mutated references and return values. */\n outputs?: Maybe<Array<CommandResult>>;\n};\n\n/** Splits off coins with denominations in `amounts` from `coin`, returning multiple results (as many as there are amounts.) */\nexport type SplitCoinsCommand = {\n __typename?: 'SplitCoinsCommand';\n /** The denominations to split off from the coin. */\n amounts: Array<TransactionArgument>;\n /** The coin to split. */\n coin?: Maybe<TransactionArgument>;\n};\n\n/** Parameters that control the distribution of the stake subsidy. */\nexport type StakeSubsidy = {\n __typename?: 'StakeSubsidy';\n /** SUI set aside for stake subsidies -- reduces over time as stake subsidies are paid out over time. */\n balance?: Maybe<Scalars['BigInt']['output']>;\n /** Amount of stake subsidy deducted from the balance per distribution -- decays over time. */\n currentDistributionAmount?: Maybe<Scalars['BigInt']['output']>;\n /** Percentage of the current distribution amount to deduct at the end of the current subsidy period, expressed in basis points. */\n decreaseRate?: Maybe<Scalars['Int']['output']>;\n /**\n * Number of times stake subsidies have been distributed.\n * Subsidies are distributed with other staking rewards, at the end of the epoch.\n */\n distributionCounter?: Maybe<Scalars['Int']['output']>;\n /** Maximum number of stake subsidy distributions that occur with the same distribution amount (before the amount is reduced). */\n periodLength?: Maybe<Scalars['Int']['output']>;\n};\n\n/** SUI 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 storage rebates.\n * The system maintains an invariant that the sum of all storage fees into the storage fund is equal to the sum of all storage rebates out, 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/** System transaction for storing execution time observations. */\nexport type StoreExecutionTimeObservationsTransaction = {\n __typename?: 'StoreExecutionTimeObservationsTransaction';\n /** A workaround to define an empty variant of a GraphQL union. */\n _?: Maybe<Scalars['Boolean']['output']>;\n};\n\n/** Future behavior of a currency's supply. */\nexport enum SupplyState {\n /** The supply can only decrease. */\n BurnOnly = 'BURN_ONLY',\n /** The supply can neither increase nor decrease. */\n Fixed = 'FIXED'\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 /** The epoch at which stake subsidies start being paid out. */\n stakeSubsidyStartEpoch?: Maybe<Scalars['UInt53']['output']>;\n /** The number of epochs that a validator has to recover from having less than `validatorLowStakeThreshold` stake. */\n validatorLowStakeGracePeriod?: Maybe<Scalars['BigInt']['output']>;\n /** Validators with stake below this threshold will enter the grace period (see `validatorLowStakeGracePeriod`), after which they are removed from the active validator set. */\n validatorLowStakeThreshold?: Maybe<Scalars['BigInt']['output']>;\n /** Validators with stake below this threshold will be removed from the active validator set at the next epoch boundary, without a grace period. */\n validatorVeryLowStakeThreshold?: Maybe<Scalars['BigInt']['output']>;\n};\n\n/** Description of a transaction, the unit of activity on Sui. */\nexport type Transaction = {\n __typename?: 'Transaction';\n /** A 32-byte hash that uniquely identifies the transaction contents, encoded in Base58. */\n digest: Scalars['String']['output'];\n /** The results to the chain of executing this transaction. */\n effects?: Maybe<TransactionEffects>;\n /** This field is set by senders of a transaction block. It is an epoch reference that sets a deadline after which validators will no longer consider the transaction valid. By default, there is no deadline for when a transaction must execute. */\n expiration?: Maybe<Epoch>;\n /** The gas input field provides information on what objects were used as gas as well as the owner of the gas object(s) and information on the gas price and budget. */\n gasInput?: Maybe<GasInput>;\n /** The type of this transaction as well as the commands and/or parameters comprising the transaction of this kind. */\n kind?: Maybe<TransactionKind>;\n /** The address corresponding to the public key that signed this transaction. System transactions do not have senders. */\n sender?: Maybe<Address>;\n /** User signatures for this transaction. */\n signatures: Array<UserSignature>;\n /** The Base64-encoded BCS serialization of this transaction, as a `TransactionData`. */\n transactionBcs?: Maybe<Scalars['Base64']['output']>;\n};\n\n/** An argument to a programmable transaction command. */\nexport type TransactionArgument = GasCoin | Input | TxResult;\n\nexport type TransactionConnection = {\n __typename?: 'TransactionConnection';\n /** A list of edges. */\n edges: Array<TransactionEdge>;\n /** A list of nodes. */\n nodes: Array<Transaction>;\n /** Information to aid in pagination. */\n pageInfo: PageInfo;\n};\n\n/** An edge in a connection. */\nexport type TransactionEdge = {\n __typename?: 'TransactionEdge';\n /** A cursor for use in pagination */\n cursor: Scalars['String']['output'];\n /** The item at the end of the edge */\n node: Transaction;\n};\n\n/** The results of executing a transaction. */\nexport type TransactionEffects = {\n __typename?: 'TransactionEffects';\n /** The effect this transaction had on the balances (sum of coin values per coin type) of addresses and objects. */\n balanceChanges?: Maybe<BalanceChangeConnection>;\n /** The checkpoint this transaction was finalized in. */\n checkpoint?: Maybe<Checkpoint>;\n /** Transactions whose outputs this transaction depends upon. */\n dependencies?: Maybe<TransactionConnection>;\n /**\n * A 32-byte hash that uniquely identifies the transaction contents, encoded in Base58.\n *\n * Note that this is different from the execution digest, which is the unique hash of the transaction effects.\n */\n digest: Scalars['String']['output'];\n /** The Base64-encoded BCS serialization of these effects, as `TransactionEffects`. */\n effectsBcs?: Maybe<Scalars['Base64']['output']>;\n /** A 32-byte hash that uniquely identifies the effects contents, encoded in Base58. */\n effectsDigest?: Maybe<Scalars['String']['output']>;\n /** The epoch this transaction was finalized in. */\n epoch?: Maybe<Epoch>;\n /** Events emitted by this transaction. */\n events?: Maybe<EventConnection>;\n /** Rich execution error information for failed transactions. */\n executionError?: Maybe<ExecutionError>;\n /** Effects related to the gas object used for the transaction (costs incurred and the identity of the smashed gas object returned). */\n gasEffects?: Maybe<GasEffects>;\n /** The latest version of all objects (apart from packages) that have been created or modified by this transaction, immediately following this transaction. */\n lamportVersion?: Maybe<Scalars['UInt53']['output']>;\n /** The before and after state of objects that were modified by this transaction. */\n objectChanges?: Maybe<ObjectChangeConnection>;\n /** Whether the transaction executed successfully or not. */\n status?: Maybe<ExecutionStatus>;\n /**\n * Timestamp corresponding to the checkpoint this transaction was finalized in.\n *\n * `null` for executed/simulated transactions that have not been included in a checkpoint.\n */\n timestamp?: Maybe<Scalars['DateTime']['output']>;\n /** The transaction that ran to produce these effects. */\n transaction?: Maybe<Transaction>;\n /** The unchanged consensus-managed objects that were referenced by this transaction. */\n unchangedConsensusObjects?: Maybe<UnchangedConsensusObjectConnection>;\n};\n\n\n/** The results of executing a transaction. */\nexport type TransactionEffectsBalanceChangesArgs = {\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 results of executing a transaction. */\nexport type TransactionEffectsDependenciesArgs = {\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 results of executing a transaction. */\nexport type TransactionEffectsEventsArgs = {\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 results of executing a transaction. */\nexport type TransactionEffectsObjectChangesArgs = {\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 results of executing a transaction. */\nexport type TransactionEffectsUnchangedConsensusObjectsArgs = {\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 TransactionFilter = {\n /**\n * Limit to transactions that interacted with the given address.\n * The address could be a sender, sponsor, or recipient of the transaction.\n */\n affectedAddress?: InputMaybe<Scalars['HaneulAddress']['input']>;\n /**\n * Limit to transactions that interacted with the given object.\n * The object could have been created, read, modified, deleted, wrapped, or unwrapped by the transaction.\n * Objects that were passed as a `Receiving` input are not considered to have been affected by a transaction unless they were actually received.\n */\n affectedObject?: InputMaybe<Scalars['HaneulAddress']['input']>;\n /** Filter to transactions that occurred strictly after the given checkpoint. */\n afterCheckpoint?: InputMaybe<Scalars['UInt53']['input']>;\n /** Filter to transactions in the given checkpoint. */\n atCheckpoint?: InputMaybe<Scalars['UInt53']['input']>;\n /** Filter to transaction that occurred strictly before the given checkpoint. */\n beforeCheckpoint?: InputMaybe<Scalars['UInt53']['input']>;\n /** Filter transactions by move function called. Calls can be filtered by the `package`, `package::module`, or the `package::module::name` of their function. */\n function?: InputMaybe<Scalars['String']['input']>;\n /** An input filter selecting for either system or programmable transactions. */\n kind?: InputMaybe<TransactionKindInput>;\n /** Limit to transactions that were sent by the given address. */\n sentAddress?: InputMaybe<Scalars['HaneulAddress']['input']>;\n};\n\n/** Input argument to a Programmable Transaction Block (PTB) command. */\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/** Different types of transactions that can be executed on the Sui network. */\nexport type TransactionKind = AuthenticatorStateUpdateTransaction | ChangeEpochTransaction | ConsensusCommitPrologueTransaction | EndOfEpochTransaction | GenesisTransaction | ProgrammableSystemTransaction | ProgrammableTransaction | RandomnessStateUpdateTransaction;\n\n/** An input filter selecting for either system or programmable transactions. */\nexport enum TransactionKindInput {\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\n/** Transfers `inputs` to `address`. All inputs must have the `store` ability (allows public transfer) and must not be previously immutable or shared. */\nexport type TransferObjectsCommand = {\n __typename?: 'TransferObjectsCommand';\n /** The address to transfer to. */\n address?: Maybe<TransactionArgument>;\n /** The objects to transfer. */\n inputs: Array<TransactionArgument>;\n};\n\n/** The result of another command. */\nexport type TxResult = {\n __typename?: 'TxResult';\n /** The index of the command that produced this result. */\n cmd?: Maybe<Scalars['Int']['output']>;\n /** For nested results, the index within the result. */\n ix?: Maybe<Scalars['Int']['output']>;\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?: Maybe<Scalars['HaneulAddress']['output']>;\n /** Module defining the type. */\n module?: Maybe<Scalars['String']['output']>;\n /** Name of the struct. */\n struct?: Maybe<Scalars['String']['output']>;\n};\n\n/** Details pertaining to consensus-managed objects that are referenced by but not changed by a transaction. */\nexport type UnchangedConsensusObject = ConsensusObjectCancelled | ConsensusObjectRead | MutateConsensusStreamEnded | PerEpochConfig | ReadConsensusStreamEnded;\n\nexport type UnchangedConsensusObjectConnection = {\n __typename?: 'UnchangedConsensusObjectConnection';\n /** A list of edges. */\n edges: Array<UnchangedConsensusObjectEdge>;\n /** A list of nodes. */\n nodes: Array<UnchangedConsensusObject>;\n /** Information to aid in pagination. */\n pageInfo: PageInfo;\n};\n\n/** An edge in a connection. */\nexport type UnchangedConsensusObjectEdge = {\n __typename?: 'UnchangedConsensusObjectEdge';\n /** A cursor for use in pagination */\n cursor: Scalars['String']['output'];\n /** The item at the end of the edge */\n node: UnchangedConsensusObject;\n};\n\n/** Upgrades a Move Package. */\nexport type UpgradeCommand = {\n __typename?: 'UpgradeCommand';\n /** ID of the package being upgraded. */\n currentPackage?: Maybe<Scalars['HaneulAddress']['output']>;\n /** IDs of the transitive dependencies of the package to be published. */\n dependencies?: Maybe<Array<Scalars['HaneulAddress']['output']>>;\n /** Bytecode for the modules to be published, BCS serialized and Base64 encoded. */\n modules?: Maybe<Array<Scalars['Base64']['output']>>;\n /** The `UpgradeTicket` authorizing the upgrade. */\n upgradeTicket?: Maybe<TransactionArgument>;\n};\n\nexport type UserSignature = {\n __typename?: 'UserSignature';\n /**\n * The signature bytes, Base64-encoded.\n * For simple signatures: flag || signature || pubkey\n * For complex signatures: flag || bcs_serialized_struct\n */\n signatureBytes?: Maybe<Scalars['Base64']['output']>;\n};\n\nexport type Validator = IAddressable & {\n __typename?: 'Validator';\n /** The validator's address. */\n address: Scalars['HaneulAddress']['output'];\n /** The number of epochs for which this validator has been below the low stake threshold. */\n atRisk?: Maybe<Scalars['UInt53']['output']>;\n /**\n * Fetch the total balance for coins with marker type `coinType` (e.g. `0x2::haneul::HANEUL`), owned by this address.\n *\n * If the address does not own any coins of that type, a balance of zero is returned.\n */\n balance?: Maybe<Balance>;\n /** Total balance across coins owned by this address, grouped by coin type. */\n balances?: Maybe<BalanceConnection>;\n /** The fee charged by the validator for staking services. */\n commissionRate?: Maybe<Scalars['Int']['output']>;\n /** Validator's set of credentials such as public keys, network addresses and others. */\n credentials?: Maybe<ValidatorCredentials>;\n /** The domain explicitly configured as the default HaneulNS name for this address. */\n defaultHaneulnsName?: Maybe<Scalars['String']['output']>;\n /** Validator's description. */\n description?: Maybe<Scalars['String']['output']>;\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 table from epoch number to `PoolTokenExchangeRate` value.\n * The exchange rate is used to determine the amount of SUI tokens that each past SUI staker can withdraw in the future.\n */\n exchangeRatesTable?: Maybe<Address>;\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 /**\n * Fetch the total balances keyed by coin types (e.g. `0x2::haneul::HANEUL`) owned by this address.\n *\n * Returns `None` when no checkpoint is set in scope (e.g. execution scope).\n * If the address does not own any coins of a given type, a balance of zero is returned for that type.\n */\n multiGetBalances?: Maybe<Array<Balance>>;\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 /** The total number of SUI tokens in this pool plus the pending stake amount for this epoch. */\n nextEpochStake?: Maybe<Scalars['BigInt']['output']>;\n /** Objects owned by this object, optionally filtered by type. */\n objects?: Maybe<MoveObjectConnection>;\n /**\n * The validator's current valid `Cap` object. Validators can delegate the operation ability to another address.\n * The address holding this `Cap` object can then update the reference gas price and tallying rule on behalf of the validator.\n */\n operationCap?: Maybe<MoveObject>;\n /** Pending pool token withdrawn during the current epoch, emptied at epoch boundaries. */\n pendingPoolTokenWithdraw?: Maybe<Scalars['BigInt']['output']>;\n /** Pending stake amount for this epoch. */\n pendingStake?: Maybe<Scalars['BigInt']['output']>;\n /** Pending stake withdrawn during the current epoch, emptied at epoch boundaries. */\n pendingTotalHaneulWithdraw?: 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 /** Other validators this validator has reported. */\n reportRecords?: Maybe<ValidatorConnection>;\n /** The epoch stake rewards will be added here at the end of each epoch. */\n rewardsPool?: Maybe<Scalars['BigInt']['output']>;\n /** The epoch at which this pool became active. */\n stakingPoolActivationEpoch?: Maybe<Scalars['UInt53']['output']>;\n /** The total number of SUI tokens in this pool. */\n stakingPoolHaneulBalance?: Maybe<Scalars['BigInt']['output']>;\n /** The ID of this validator's `0x3::staking_pool::StakingPool`. */\n stakingPoolId: Scalars['HaneulAddress']['output'];\n /** The voting power of this validator in basis points (e.g., 100 = 1% voting power). */\n votingPower?: Maybe<Scalars['Int']['output']>;\n};\n\n\nexport type ValidatorBalanceArgs = {\n coinType: Scalars['String']['input'];\n};\n\n\nexport type ValidatorBalancesArgs = {\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 ValidatorMultiGetBalancesArgs = {\n keys: Array<Scalars['String']['input']>;\n};\n\n\nexport type ValidatorObjectsArgs = {\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 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 ValidatorAggregatedSignature = {\n __typename?: 'ValidatorAggregatedSignature';\n /** The epoch when this aggregate signature was produced. */\n epoch?: Maybe<Epoch>;\n /** The Base64 encoded BLS12381 aggregated signature. */\n signature?: Maybe<Scalars['Base64']['output']>;\n /** The indexes of validators that contributed to this signature. */\n signersMap: Array<Scalars['Int']['output']>;\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 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 workerAddress?: Maybe<Scalars['String']['output']>;\n workerPubKey?: 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 list of active validators. */\n activeValidators?: Maybe<ValidatorConnection>;\n /** Object ID of the `Table` storing the inactive staking pools. */\n inactivePoolsId?: Maybe<Scalars['HaneulAddress']['output']>;\n /** Size of the inactive pools `Table`. */\n inactivePoolsSize?: Maybe<Scalars['Int']['output']>;\n /** Object ID of the wrapped object `TableVec` storing the pending active validators. */\n pendingActiveValidatorsId?: Maybe<Scalars['HaneulAddress']['output']>;\n /** Size of the pending active validators table. */\n pendingActiveValidatorsSize?: Maybe<Scalars['Int']['output']>;\n /** Validators that are pending removal from the active validator set, expressed as indices in to `activeValidators`. */\n pendingRemovals?: Maybe<Array<Scalars['Int']['output']>>;\n /**\n * Object ID of the `Table` storing the mapping from staking pool ids to the addresses of the corresponding validators.\n * This is needed because a validator's address can potentially change but the object ID of its pool will not.\n */\n stakingPoolMappingsId?: Maybe<Scalars['HaneulAddress']['output']>;\n /** Size of the stake pool mappings `Table`. */\n stakingPoolMappingsSize?: Maybe<Scalars['Int']['output']>;\n /** Total amount of stake for all active validators at the beginning of the epoch. */\n totalStake?: Maybe<Scalars['BigInt']['output']>;\n /** Object ID of the `Table` storing the validator candidates. */\n validatorCandidatesId?: Maybe<Scalars['HaneulAddress']['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/** Filter for paginating the history of an Object or MovePackage. */\nexport type VersionFilter = {\n /** Filter to versions that are strictly newer than this one, defaults to fetching from the earliest version known to this RPC (this could be the initial version, or some later version if the initial version has been pruned). */\n afterVersion?: InputMaybe<Scalars['UInt53']['input']>;\n /** Filter to versions that are strictly older than this one, defaults to fetching up to the latest version (inclusive). */\n beforeVersion?: InputMaybe<Scalars['UInt53']['input']>;\n};\n\n/** System transaction for writing the pre-computed storage cost for accumulator objects. */\nexport type WriteAccumulatorStorageCostTransaction = {\n __typename?: 'WriteAccumulatorStorageCostTransaction';\n /** A workaround to define an empty variant of a GraphQL union. */\n _?: Maybe<Scalars['Boolean']['output']>;\n};\n\n/** An enum that specifies the intent scope to be used to parse the bytes for signature verification. */\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 error field capture reasons why the signature could not be verified, assuming the inputs are valid and there are no internal errors. */\n error?: Maybe<Scalars['String']['output']>;\n /** The boolean result of the verification. If true, errors should be empty. */\n success?: Maybe<Scalars['Boolean']['output']>;\n};\n\nexport type GetAllBalancesQueryVariables = Exact<{\n owner: Scalars['HaneulAddress']['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', totalBalance?: string | null, coinType?: { __typename?: 'MoveType', repr: string } | null }> } | null } };\n\nexport type GetBalanceQueryVariables = Exact<{\n owner: Scalars['HaneulAddress']['input'];\n coinType?: Scalars['String']['input'];\n}>;\n\n\nexport type GetBalanceQuery = { __typename?: 'Query', address: { __typename?: 'Address', balance?: { __typename?: 'Balance', totalBalance?: string | null, coinType?: { __typename?: 'MoveType', repr: string } | null } | null } };\n\nexport type GetCoinsQueryVariables = Exact<{\n owner: Scalars['HaneulAddress']['input'];\n first?: InputMaybe<Scalars['Int']['input']>;\n cursor?: InputMaybe<Scalars['String']['input']>;\n type?: Scalars['String']['input'];\n}>;\n\n\nexport type GetCoinsQuery = { __typename?: 'Query', address: { __typename?: 'Address', address: string, objects?: { __typename?: 'MoveObjectConnection', pageInfo: { __typename?: 'PageInfo', hasNextPage: boolean, endCursor?: string | null }, nodes: Array<{ __typename?: 'MoveObject', address: string, version?: number | null, digest?: string | null, owner?:\n | { __typename: 'AddressOwner', address?: { __typename?: 'Address', address: string } | null }\n | { __typename: 'ConsensusAddressOwner', startVersion?: number | null, address?: { __typename?: 'Address', address: string } | null }\n | { __typename: 'Immutable' }\n | { __typename: 'ObjectOwner', address?: { __typename?: 'Address', address: string } | null }\n | { __typename: 'Shared', initialSharedVersion?: number | null }\n | null, contents?: { __typename?: 'MoveValue', bcs?: string | null, json?: unknown | null, type?: { __typename?: 'MoveType', repr: string } | null } | null, previousTransaction?: { __typename?: 'Transaction', digest: string } | null }> } | null } };\n\nexport type GetDynamicFieldsQueryVariables = Exact<{\n parentId: Scalars['HaneulAddress']['input'];\n first?: InputMaybe<Scalars['Int']['input']>;\n cursor?: InputMaybe<Scalars['String']['input']>;\n}>;\n\n\nexport type GetDynamicFieldsQuery = { __typename?: 'Query', address: { __typename?: 'Address', dynamicFields?: { __typename?: 'DynamicFieldConnection', pageInfo: { __typename?: 'PageInfo', hasNextPage: boolean, endCursor?: string | null }, nodes: Array<{ __typename?: 'DynamicField', name?: { __typename?: 'MoveValue', bcs?: string | null, type?: { __typename?: 'MoveType', repr: string } | null } | null, value?:\n | { __typename: 'MoveObject', contents?: { __typename?: 'MoveValue', type?: { __typename?: 'MoveType', repr: string } | null } | null }\n | { __typename: 'MoveValue', type?: { __typename?: 'MoveType', repr: string } | null }\n | null }> } | null } };\n\nexport type GetMoveFunctionQueryVariables = Exact<{\n package: Scalars['HaneulAddress']['input'];\n module: Scalars['String']['input'];\n function: Scalars['String']['input'];\n}>;\n\n\nexport type GetMoveFunctionQuery = { __typename?: 'Query', package?: { __typename?: 'MovePackage', module?: { __typename?: 'MoveModule', function?: { __typename?: 'MoveFunction', name: string, visibility?: MoveVisibility | null, isEntry?: boolean | null, typeParameters?: Array<{ __typename?: 'MoveFunctionTypeParameter', constraints: Array<MoveAbility> }> | null, parameters?: Array<{ __typename?: 'OpenMoveType', signature: OpenMoveTypeSignature }> | null, return?: Array<{ __typename?: 'OpenMoveType', signature: OpenMoveTypeSignature }> | null } | null } | null } | null };\n\nexport type GetReferenceGasPriceQueryVariables = Exact<{ [key: string]: never; }>;\n\n\nexport type GetReferenceGasPriceQuery = { __typename?: 'Query', epoch?: { __typename?: 'Epoch', referenceGasPrice?: string | null } | null };\n\nexport type DefaultHaneulnsNameQueryVariables = Exact<{\n address: Scalars['HaneulAddress']['input'];\n}>;\n\n\nexport type DefaultHaneulnsNameQuery = { __typename?: 'Query', address: { __typename?: 'Address', defaultHaneulnsName?: string | null } };\n\nexport type GetOwnedObjectsQueryVariables = Exact<{\n owner: Scalars['HaneulAddress']['input'];\n limit?: InputMaybe<Scalars['Int']['input']>;\n cursor?: InputMaybe<Scalars['String']['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', address: string, digest?: string | null, version?: number | null, contents?: { __typename?: 'MoveValue', bcs?: string | null, type?: { __typename?: 'MoveType', repr: string } | null } | null, owner?:\n | { __typename: 'AddressOwner', address?: { __typename?: 'Address', address: string } | null }\n | { __typename: 'ConsensusAddressOwner', startVersion?: number | null, address?: { __typename?: 'Address', address: string } | null }\n | { __typename: 'Immutable' }\n | { __typename: 'ObjectOwner', address?: { __typename?: 'Address', address: string } | null }\n | { __typename: 'Shared', initialSharedVersion?: number | null }\n | null, previousTransaction?: { __typename?: 'Transaction', digest: string } | null }> } | null } };\n\nexport type MultiGetObjectsQueryVariables = Exact<{\n objectKeys: Array<ObjectKey> | ObjectKey;\n}>;\n\n\nexport type MultiGetObjectsQuery = { __typename?: 'Query', multiGetObjects: Array<{ __typename?: 'Object', address: string, digest?: string | null, version?: number | null, asMoveObject?: { __typename?: 'MoveObject', contents?: { __typename?: 'MoveValue', bcs?: string | null, type?: { __typename?: 'MoveType', repr: string } | null } | null } | null, owner?:\n | { __typename: 'AddressOwner', address?: { __typename?: 'Address', address: string } | null }\n | { __typename: 'ConsensusAddressOwner', startVersion?: number | null, address?: { __typename?: 'Address', address: string } | null }\n | { __typename: 'Immutable' }\n | { __typename: 'ObjectOwner', address?: { __typename?: 'Address', address: string } | null }\n | { __typename: 'Shared', initialSharedVersion?: number | null }\n | null, previousTransaction?: { __typename?: 'Transaction', digest: string } | null } | null> };\n\nexport type Object_FieldsFragment = { __typename?: 'Object', address: string, digest?: string | null, version?: number | null, asMoveObject?: { __typename?: 'MoveObject', contents?: { __typename?: 'MoveValue', bcs?: string | null, type?: { __typename?: 'MoveType', repr: string } | null } | null } | null, owner?:\n | { __typename: 'AddressOwner', address?: { __typename?: 'Address', address: string } | null }\n | { __typename: 'ConsensusAddressOwner', startVersion?: number | null, address?: { __typename?: 'Address', address: string } | null }\n | { __typename: 'Immutable' }\n | { __typename: 'ObjectOwner', address?: { __typename?: 'Address', address: string } | null }\n | { __typename: 'Shared', initialSharedVersion?: number | null }\n | null, previousTransaction?: { __typename?: 'Transaction', digest: string } | null };\n\nexport type Move_Object_FieldsFragment = { __typename?: 'MoveObject', address: string, digest?: string | null, version?: number | null, contents?: { __typename?: 'MoveValue', bcs?: string | null, type?: { __typename?: 'MoveType', repr: string } | null } | null, owner?:\n | { __typename: 'AddressOwner', address?: { __typename?: 'Address', address: string } | null }\n | { __typename: 'ConsensusAddressOwner', startVersion?: number | null, address?: { __typename?: 'Address', address: string } | null }\n | { __typename: 'Immutable' }\n | { __typename: 'ObjectOwner', address?: { __typename?: 'Address', address: string } | null }\n | { __typename: 'Shared', initialSharedVersion?: number | null }\n | null, previousTransaction?: { __typename?: 'Transaction', digest: string } | null };\n\ntype Object_Owner_Fields_AddressOwner_Fragment = { __typename: 'AddressOwner', address?: { __typename?: 'Address', address: string } | null };\n\ntype Object_Owner_Fields_ConsensusAddressOwner_Fragment = { __typename: 'ConsensusAddressOwner', startVersion?: number | null, address?: { __typename?: 'Address', address: string } | null };\n\ntype Object_Owner_Fields_Immutable_Fragment = { __typename: 'Immutable' };\n\ntype Object_Owner_Fields_ObjectOwner_Fragment = { __typename: 'ObjectOwner', address?: { __typename?: 'Address', address: string } | null };\n\ntype Object_Owner_Fields_Shared_Fragment = { __typename: 'Shared', initialSharedVersion?: number | null };\n\nexport type Object_Owner_FieldsFragment =\n | Object_Owner_Fields_AddressOwner_Fragment\n | Object_Owner_Fields_ConsensusAddressOwner_Fragment\n | Object_Owner_Fields_Immutable_Fragment\n | Object_Owner_Fields_ObjectOwner_Fragment\n | Object_Owner_Fields_Shared_Fragment\n;\n\nexport type SimulateTransactionQueryVariables = Exact<{\n transaction: Scalars['JSON']['input'];\n}>;\n\n\nexport type SimulateTransactionQuery = { __typename?: 'Query', simulateTransaction: { __typename?: 'SimulationResult', error?: string | null, effects?: { __typename?: 'TransactionEffects', transaction?: { __typename?: 'Transaction', digest: string, transactionBcs?: string | null, signatures: Array<{ __typename?: 'UserSignature', signatureBytes?: string | null }>, effects?: { __typename?: 'TransactionEffects', effectsBcs?: string | null, epoch?: { __typename?: 'Epoch', epochId: number } | null, unchangedConsensusObjects?: { __typename?: 'UnchangedConsensusObjectConnection', nodes: Array<\n | { __typename: 'ConsensusObjectCancelled' }\n | { __typename: 'ConsensusObjectRead', object?: { __typename?: 'Object', asMoveObject?: { __typename?: 'MoveObject', address: string, contents?: { __typename?: 'MoveValue', type?: { __typename?: 'MoveType', repr: string } | null } | null } | null } | null }\n | { __typename: 'MutateConsensusStreamEnded' }\n | { __typename: 'PerEpochConfig' }\n | { __typename: 'ReadConsensusStreamEnded' }\n > } | null, objectChanges?: { __typename?: 'ObjectChangeConnection', nodes: Array<{ __typename?: 'ObjectChange', address: string, inputState?: { __typename?: 'Object', version?: number | null, asMoveObject?: { __typename?: 'MoveObject', address: string, contents?: { __typename?: 'MoveValue', type?: { __typename?: 'MoveType', repr: string } | null } | null } | null } | null, outputState?: { __typename?: 'Object', asMoveObject?: { __typename?: 'MoveObject', address: string, contents?: { __typename?: 'MoveValue', type?: { __typename?: 'MoveType', repr: string } | null } | null } | null } | null }> } | null, balanceChanges?: { __typename?: 'BalanceChangeConnection', pageInfo: { __typename?: 'PageInfo', hasNextPage: boolean }, nodes: Array<{ __typename?: 'BalanceChange', amount?: string | null, owner?: { __typename?: 'Address', address: string } | null, coinType?: { __typename?: 'MoveType', repr: string } | null }> } | null } | null } | null } | null } };\n\nexport type ExecuteTransactionMutationVariables = Exact<{\n transactionDataBcs: Scalars['Base64']['input'];\n signatures: Array<Scalars['Base64']['input']> | Scalars['Base64']['input'];\n}>;\n\n\nexport type ExecuteTransactionMutation = { __typename?: 'Mutation', executeTransaction: { __typename?: 'ExecutionResult', errors?: Array<string> | null, effects?: { __typename?: 'TransactionEffects', transaction?: { __typename?: 'Transaction', digest: string, transactionBcs?: string | null, signatures: Array<{ __typename?: 'UserSignature', signatureBytes?: string | null }>, effects?: { __typename?: 'TransactionEffects', effectsBcs?: string | null, epoch?: { __typename?: 'Epoch', epochId: number } | null, unchangedConsensusObjects?: { __typename?: 'UnchangedConsensusObjectConnection', nodes: Array<\n | { __typename: 'ConsensusObjectCancelled' }\n | { __typename: 'ConsensusObjectRead', object?: { __typename?: 'Object', asMoveObject?: { __typename?: 'MoveObject', address: string, contents?: { __typename?: 'MoveValue', type?: { __typename?: 'MoveType', repr: string } | null } | null } | null } | null }\n | { __typename: 'MutateConsensusStreamEnded' }\n | { __typename: 'PerEpochConfig' }\n | { __typename: 'ReadConsensusStreamEnded' }\n > } | null, objectChanges?: { __typename?: 'ObjectChangeConnection', nodes: Array<{ __typename?: 'ObjectChange', address: string, inputState?: { __typename?: 'Object', version?: number | null, asMoveObject?: { __typename?: 'MoveObject', address: string, contents?: { __typename?: 'MoveValue', type?: { __typename?: 'MoveType', repr: string } | null } | null } | null } | null, outputState?: { __typename?: 'Object', asMoveObject?: { __typename?: 'MoveObject', address: string, contents?: { __typename?: 'MoveValue', type?: { __typename?: 'MoveType', repr: string } | null } | null } | null } | null }> } | null, balanceChanges?: { __typename?: 'BalanceChangeConnection', pageInfo: { __typename?: 'PageInfo', hasNextPage: boolean }, nodes: Array<{ __typename?: 'BalanceChange', amount?: string | null, owner?: { __typename?: 'Address', address: string } | null, coinType?: { __typename?: 'MoveType', repr: string } | null }> } | null } | null } | null } | null } };\n\nexport type GetTransactionBlockQueryVariables = Exact<{\n digest: Scalars['String']['input'];\n}>;\n\n\nexport type GetTransactionBlockQuery = { __typename?: 'Query', transaction?: { __typename?: 'Transaction', digest: string, transactionBcs?: string | null, signatures: Array<{ __typename?: 'UserSignature', signatureBytes?: string | null }>, effects?: { __typename?: 'TransactionEffects', effectsBcs?: string | null, epoch?: { __typename?: 'Epoch', epochId: number } | null, unchangedConsensusObjects?: { __typename?: 'UnchangedConsensusObjectConnection', nodes: Array<\n | { __typename: 'ConsensusObjectCancelled' }\n | { __typename: 'ConsensusObjectRead', object?: { __typename?: 'Object', asMoveObject?: { __typename?: 'MoveObject', address: string, contents?: { __typename?: 'MoveValue', type?: { __typename?: 'MoveType', repr: string } | null } | null } | null } | null }\n | { __typename: 'MutateConsensusStreamEnded' }\n | { __typename: 'PerEpochConfig' }\n | { __typename: 'ReadConsensusStreamEnded' }\n > } | null, objectChanges?: { __typename?: 'ObjectChangeConnection', nodes: Array<{ __typename?: 'ObjectChange', address: string, inputState?: { __typename?: 'Object', version?: number | null, asMoveObject?: { __typename?: 'MoveObject', address: string, contents?: { __typename?: 'MoveValue', type?: { __typename?: 'MoveType', repr: string } | null } | null } | null } | null, outputState?: { __typename?: 'Object', asMoveObject?: { __typename?: 'MoveObject', address: string, contents?: { __typename?: 'MoveValue', type?: { __typename?: 'MoveType', repr: string } | null } | null } | null } | null }> } | null, balanceChanges?: { __typename?: 'BalanceChangeConnection', pageInfo: { __typename?: 'PageInfo', hasNextPage: boolean }, nodes: Array<{ __typename?: 'BalanceChange', amount?: string | null, owner?: { __typename?: 'Address', address: string } | null, coinType?: { __typename?: 'MoveType', repr: string } | null }> } | null } | null } | null };\n\nexport type Transaction_FieldsFragment = { __typename?: 'Transaction', digest: string, transactionBcs?: string | null, signatures: Array<{ __typename?: 'UserSignature', signatureBytes?: string | null }>, effects?: { __typename?: 'TransactionEffects', effectsBcs?: string | null, epoch?: { __typename?: 'Epoch', epochId: number } | null, unchangedConsensusObjects?: { __typename?: 'UnchangedConsensusObjectConnection', nodes: Array<\n | { __typename: 'ConsensusObjectCancelled' }\n | { __typename: 'ConsensusObjectRead', object?: { __typename?: 'Object', asMoveObject?: { __typename?: 'MoveObject', address: string, contents?: { __typename?: 'MoveValue', type?: { __typename?: 'MoveType', repr: string } | null } | null } | null } | null }\n | { __typename: 'MutateConsensusStreamEnded' }\n | { __typename: 'PerEpochConfig' }\n | { __typename: 'ReadConsensusStreamEnded' }\n > } | null, objectChanges?: { __typename?: 'ObjectChangeConnection', nodes: Array<{ __typename?: 'ObjectChange', address: string, inputState?: { __typename?: 'Object', version?: number | null, asMoveObject?: { __typename?: 'MoveObject', address: string, contents?: { __typename?: 'MoveValue', type?: { __typename?: 'MoveType', repr: string } | null } | null } | null } | null, outputState?: { __typename?: 'Object', asMoveObject?: { __typename?: 'MoveObject', address: string, contents?: { __typename?: 'MoveValue', type?: { __typename?: 'MoveType', repr: string } | null } | null } | null } | null }> } | null, balanceChanges?: { __typename?: 'BalanceChangeConnection', pageInfo: { __typename?: 'PageInfo', hasNextPage: boolean }, nodes: Array<{ __typename?: 'BalanceChange', amount?: string | null, owner?: { __typename?: 'Address', address: string } | null, coinType?: { __typename?: 'MoveType', repr: string } | null }> } | null } | null };\n\nexport type VerifyZkLoginSignatureQueryVariables = Exact<{\n bytes: Scalars['Base64']['input'];\n signature: Scalars['Base64']['input'];\n intentScope: ZkLoginIntentScope;\n author: Scalars['HaneulAddress']['input'];\n}>;\n\n\nexport type VerifyZkLoginSignatureQuery = { __typename?: 'Query', verifyZkLoginSignature: { __typename?: 'ZkLoginVerifyResult', success?: boolean | null, error?: string | null } };\n\nexport class TypedDocumentString<TResult, TVariables>\n extends String\n implements DocumentTypeDecoration<TResult, TVariables>\n{\n __apiType?: NonNullable<DocumentTypeDecoration<TResult, TVariables>['__apiType']>;\n private value: string;\n public __meta__?: Record<string, any> | undefined;\n\n constructor(value: string, __meta__?: Record<string, any> | undefined) {\n super(value);\n this.value = value;\n this.__meta__ = __meta__;\n }\n\n override toString(): string & DocumentTypeDecoration<TResult, TVariables> {\n return this.value;\n }\n}\nexport const Object_Owner_FieldsFragmentDoc = new TypedDocumentString(`\n fragment OBJECT_OWNER_FIELDS on Owner {\n __typename\n ... on AddressOwner {\n address {\n address\n }\n }\n ... on ObjectOwner {\n address {\n address\n }\n }\n ... on Shared {\n initialSharedVersion\n }\n ... on ConsensusAddressOwner {\n startVersion\n address {\n address\n }\n }\n}\n `, {\"fragmentName\":\"OBJECT_OWNER_FIELDS\"}) as unknown as TypedDocumentString<Object_Owner_FieldsFragment, unknown>;\nexport const Object_FieldsFragmentDoc = new TypedDocumentString(`\n fragment OBJECT_FIELDS on Object {\n address\n digest\n version\n asMoveObject {\n contents {\n bcs\n type {\n repr\n }\n }\n }\n owner {\n ...OBJECT_OWNER_FIELDS\n }\n previousTransaction {\n digest\n }\n}\n fragment OBJECT_OWNER_FIELDS on Owner {\n __typename\n ... on AddressOwner {\n address {\n address\n }\n }\n ... on ObjectOwner {\n address {\n address\n }\n }\n ... on Shared {\n initialSharedVersion\n }\n ... on ConsensusAddressOwner {\n startVersion\n address {\n address\n }\n }\n}`, {\"fragmentName\":\"OBJECT_FIELDS\"}) as unknown as TypedDocumentString<Object_FieldsFragment, unknown>;\nexport const Move_Object_FieldsFragmentDoc = new TypedDocumentString(`\n fragment MOVE_OBJECT_FIELDS on MoveObject {\n address\n digest\n version\n contents {\n bcs\n type {\n repr\n }\n }\n owner {\n ...OBJECT_OWNER_FIELDS\n }\n previousTransaction {\n digest\n }\n}\n fragment OBJECT_OWNER_FIELDS on Owner {\n __typename\n ... on AddressOwner {\n address {\n address\n }\n }\n ... on ObjectOwner {\n address {\n address\n }\n }\n ... on Shared {\n initialSharedVersion\n }\n ... on ConsensusAddressOwner {\n startVersion\n address {\n address\n }\n }\n}`, {\"fragmentName\":\"MOVE_OBJECT_FIELDS\"}) as unknown as TypedDocumentString<Move_Object_FieldsFragment, unknown>;\nexport const Transaction_FieldsFragmentDoc = new TypedDocumentString(`\n fragment TRANSACTION_FIELDS on Transaction {\n digest\n transactionBcs\n signatures {\n signatureBytes\n }\n effects {\n effectsBcs\n epoch {\n epochId\n }\n unchangedConsensusObjects {\n nodes {\n __typename\n ... on ConsensusObjectRead {\n object {\n asMoveObject {\n address\n contents {\n type {\n repr\n }\n }\n }\n }\n }\n }\n }\n objectChanges {\n nodes {\n address\n inputState {\n version\n asMoveObject {\n address\n contents {\n type {\n repr\n }\n }\n }\n }\n outputState {\n asMoveObject {\n address\n contents {\n type {\n repr\n }\n }\n }\n }\n }\n }\n balanceChanges(first: 50) {\n pageInfo {\n hasNextPage\n }\n nodes {\n owner {\n address\n }\n coinType {\n repr\n }\n amount\n }\n }\n }\n}\n `, {\"fragmentName\":\"TRANSACTION_FIELDS\"}) as unknown as TypedDocumentString<Transaction_FieldsFragment, unknown>;\nexport const GetAllBalancesDocument = new TypedDocumentString(`\n query getAllBalances($owner: HaneulAddress!, $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 totalBalance\n }\n }\n }\n}\n `) as unknown as TypedDocumentString<GetAllBalancesQuery, GetAllBalancesQueryVariables>;\nexport const GetBalanceDocument = new TypedDocumentString(`\n query getBalance($owner: HaneulAddress!, $coinType: String! = \"0x2::haneul::HANEUL\") {\n address(address: $owner) {\n balance(coinType: $coinType) {\n coinType {\n repr\n }\n totalBalance\n }\n }\n}\n `) as unknown as TypedDocumentString<GetBalanceQuery, GetBalanceQueryVariables>;\nexport const GetCoinsDocument = new TypedDocumentString(`\n query getCoins($owner: HaneulAddress!, $first: Int, $cursor: String, $type: String! = \"0x2::coin::Coin<0x2::haneul::HANEUL>\") {\n address(address: $owner) {\n address\n objects(first: $first, after: $cursor, filter: {type: $type}) {\n pageInfo {\n hasNextPage\n endCursor\n }\n nodes {\n owner {\n ...OBJECT_OWNER_FIELDS\n }\n contents {\n bcs\n json\n type {\n repr\n }\n }\n address\n version\n digest\n previousTransaction {\n digest\n }\n }\n }\n }\n}\n fragment OBJECT_OWNER_FIELDS on Owner {\n __typename\n ... on AddressOwner {\n address {\n address\n }\n }\n ... on ObjectOwner {\n address {\n address\n }\n }\n ... on Shared {\n initialSharedVersion\n }\n ... on ConsensusAddressOwner {\n startVersion\n address {\n address\n }\n }\n}`) as unknown as TypedDocumentString<GetCoinsQuery, GetCoinsQueryVariables>;\nexport const GetDynamicFieldsDocument = new TypedDocumentString(`\n query getDynamicFields($parentId: HaneulAddress!, $first: Int, $cursor: String) {\n address(address: $parentId) {\n dynamicFields(first: $first, after: $cursor) {\n pageInfo {\n hasNextPage\n endCursor\n }\n nodes {\n name {\n bcs\n type {\n repr\n }\n }\n value {\n __typename\n ... on MoveValue {\n type {\n repr\n }\n }\n ... on MoveObject {\n contents {\n type {\n repr\n }\n }\n }\n }\n }\n }\n }\n}\n `) as unknown as TypedDocumentString<GetDynamicFieldsQuery, GetDynamicFieldsQueryVariables>;\nexport const GetMoveFunctionDocument = new TypedDocumentString(`\n query getMoveFunction($package: HaneulAddress!, $module: String!, $function: String!) {\n package(address: $package) {\n module(name: $module) {\n function(name: $function) {\n name\n visibility\n isEntry\n typeParameters {\n constraints\n }\n parameters {\n signature\n }\n return {\n signature\n }\n }\n }\n }\n}\n `) as unknown as TypedDocumentString<GetMoveFunctionQuery, GetMoveFunctionQueryVariables>;\nexport const GetReferenceGasPriceDocument = new TypedDocumentString(`\n query getReferenceGasPrice {\n epoch {\n referenceGasPrice\n }\n}\n `) as unknown as TypedDocumentString<GetReferenceGasPriceQuery, GetReferenceGasPriceQueryVariables>;\nexport const DefaultHaneulnsNameDocument = new TypedDocumentString(`\n query defaultHaneulnsName($address: HaneulAddress!) {\n address(address: $address) {\n defaultHaneulnsName\n }\n}\n `) as unknown as TypedDocumentString<DefaultHaneulnsNameQuery, DefaultHaneulnsNameQueryVariables>;\nexport const GetOwnedObjectsDocument = new TypedDocumentString(`\n query getOwnedObjects($owner: HaneulAddress!, $limit: Int, $cursor: String, $filter: ObjectFilter) {\n address(address: $owner) {\n objects(first: $limit, after: $cursor, filter: $filter) {\n pageInfo {\n hasNextPage\n endCursor\n }\n nodes {\n ...MOVE_OBJECT_FIELDS\n }\n }\n }\n}\n fragment MOVE_OBJECT_FIELDS on MoveObject {\n address\n digest\n version\n contents {\n bcs\n type {\n repr\n }\n }\n owner {\n ...OBJECT_OWNER_FIELDS\n }\n previousTransaction {\n digest\n }\n}\nfragment OBJECT_OWNER_FIELDS on Owner {\n __typename\n ... on AddressOwner {\n address {\n address\n }\n }\n ... on ObjectOwner {\n address {\n address\n }\n }\n ... on Shared {\n initialSharedVersion\n }\n ... on ConsensusAddressOwner {\n startVersion\n address {\n address\n }\n }\n}`) as unknown as TypedDocumentString<GetOwnedObjectsQuery, GetOwnedObjectsQueryVariables>;\nexport const MultiGetObjectsDocument = new TypedDocumentString(`\n query multiGetObjects($objectKeys: [ObjectKey!]!) {\n multiGetObjects(keys: $objectKeys) {\n ...OBJECT_FIELDS\n }\n}\n fragment OBJECT_FIELDS on Object {\n address\n digest\n version\n asMoveObject {\n contents {\n bcs\n type {\n repr\n }\n }\n }\n owner {\n ...OBJECT_OWNER_FIELDS\n }\n previousTransaction {\n digest\n }\n}\nfragment OBJECT_OWNER_FIELDS on Owner {\n __typename\n ... on AddressOwner {\n address {\n address\n }\n }\n ... on ObjectOwner {\n address {\n address\n }\n }\n ... on Shared {\n initialSharedVersion\n }\n ... on ConsensusAddressOwner {\n startVersion\n address {\n address\n }\n }\n}`) as unknown as TypedDocumentString<MultiGetObjectsQuery, MultiGetObjectsQueryVariables>;\nexport const SimulateTransactionDocument = new TypedDocumentString(`\n query simulateTransaction($transaction: JSON!) {\n simulateTransaction(transaction: $transaction) {\n error\n effects {\n transaction {\n ...TRANSACTION_FIELDS\n }\n }\n }\n}\n fragment TRANSACTION_FIELDS on Transaction {\n digest\n transactionBcs\n signatures {\n signatureBytes\n }\n effects {\n effectsBcs\n epoch {\n epochId\n }\n unchangedConsensusObjects {\n nodes {\n __typename\n ... on ConsensusObjectRead {\n object {\n asMoveObject {\n address\n contents {\n type {\n repr\n }\n }\n }\n }\n }\n }\n }\n objectChanges {\n nodes {\n address\n inputState {\n version\n asMoveObject {\n address\n contents {\n type {\n repr\n }\n }\n }\n }\n outputState {\n asMoveObject {\n address\n contents {\n type {\n repr\n }\n }\n }\n }\n }\n }\n balanceChanges(first: 50) {\n pageInfo {\n hasNextPage\n }\n nodes {\n owner {\n address\n }\n coinType {\n repr\n }\n amount\n }\n }\n }\n}`) as unknown as TypedDocumentString<SimulateTransactionQuery, SimulateTransactionQueryVariables>;\nexport const ExecuteTransactionDocument = new TypedDocumentString(`\n mutation executeTransaction($transactionDataBcs: Base64!, $signatures: [Base64!]!) {\n executeTransaction(\n transactionDataBcs: $transactionDataBcs\n signatures: $signatures\n ) {\n errors\n effects {\n transaction {\n ...TRANSACTION_FIELDS\n }\n }\n }\n}\n fragment TRANSACTION_FIELDS on Transaction {\n digest\n transactionBcs\n signatures {\n signatureBytes\n }\n effects {\n effectsBcs\n epoch {\n epochId\n }\n unchangedConsensusObjects {\n nodes {\n __typename\n ... on ConsensusObjectRead {\n object {\n asMoveObject {\n address\n contents {\n type {\n repr\n }\n }\n }\n }\n }\n }\n }\n objectChanges {\n nodes {\n address\n inputState {\n version\n asMoveObject {\n address\n contents {\n type {\n repr\n }\n }\n }\n }\n outputState {\n asMoveObject {\n address\n contents {\n type {\n repr\n }\n }\n }\n }\n }\n }\n balanceChanges(first: 50) {\n pageInfo {\n hasNextPage\n }\n nodes {\n owner {\n address\n }\n coinType {\n repr\n }\n amount\n }\n }\n }\n}`) as unknown as TypedDocumentString<ExecuteTransactionMutation, ExecuteTransactionMutationVariables>;\nexport const GetTransactionBlockDocument = new TypedDocumentString(`\n query getTransactionBlock($digest: String!) {\n transaction(digest: $digest) {\n ...TRANSACTION_FIELDS\n }\n}\n fragment TRANSACTION_FIELDS on Transaction {\n digest\n transactionBcs\n signatures {\n signatureBytes\n }\n effects {\n effectsBcs\n epoch {\n epochId\n }\n unchangedConsensusObjects {\n nodes {\n __typename\n ... on ConsensusObjectRead {\n object {\n asMoveObject {\n address\n contents {\n type {\n repr\n }\n }\n }\n }\n }\n }\n }\n objectChanges {\n nodes {\n address\n inputState {\n version\n asMoveObject {\n address\n contents {\n type {\n repr\n }\n }\n }\n }\n outputState {\n asMoveObject {\n address\n contents {\n type {\n repr\n }\n }\n }\n }\n }\n }\n balanceChanges(first: 50) {\n pageInfo {\n hasNextPage\n }\n nodes {\n owner {\n address\n }\n coinType {\n repr\n }\n amount\n }\n }\n }\n}`) as unknown as TypedDocumentString<GetTransactionBlockQuery, GetTransactionBlockQueryVariables>;\nexport const VerifyZkLoginSignatureDocument = new TypedDocumentString(`\n query verifyZkLoginSignature($bytes: Base64!, $signature: Base64!, $intentScope: ZkLoginIntentScope!, $author: HaneulAddress!) {\n verifyZkLoginSignature(\n bytes: $bytes\n signature: $signature\n intentScope: $intentScope\n author: $author\n ) {\n success\n error\n }\n}\n `) as unknown as TypedDocumentString<VerifyZkLoginSignatureQuery, VerifyZkLoginSignatureQueryVariables>;"],
|
|
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;AAkSO,IAAK,iCAAL,kBAAKA,oCAAL;AAEL,EAAAA,gCAAA,cAAW;AAEX,EAAAA,gCAAA,UAAO;AAJG,SAAAA;AAAA,GAAA;AA2iBL,IAAK,oCAAL,kBAAKC,uCAAL;AAEL,EAAAA,mCAAA,mBAAgB;AAEhB,EAAAA,mCAAA,eAAY;AAEZ,EAAAA,mCAAA,2BAAwB;AAExB,EAAAA,mCAAA,aAAU;AARA,SAAAA;AAAA,GAAA;AA6qBL,IAAK,kBAAL,kBAAKC,qBAAL;AAEL,EAAAA,iBAAA,aAAU;AAEV,EAAAA,iBAAA,aAAU;AAJA,SAAAA;AAAA,GAAA;AA0WL,IAAK,cAAL,kBAAKC,iBAAL;AAEL,EAAAA,aAAA,UAAO;AAEP,EAAAA,aAAA,UAAO;AAEP,EAAAA,aAAA,SAAM;AAEN,EAAAA,aAAA,WAAQ;AARE,SAAAA;AAAA,GAAA;AAs1BL,IAAK,iBAAL,kBAAKC,oBAAL;AAEL,EAAAA,gBAAA,YAAS;AAET,EAAAA,gBAAA,aAAU;AAEV,EAAAA,gBAAA,YAAS;AANC,SAAAA;AAAA,GAAA;AA6aL,IAAK,YAAL,kBAAKC,eAAL;AAEL,EAAAA,WAAA,aAAU;AAEV,EAAAA,WAAA,eAAY;AAEZ,EAAAA,WAAA,YAAS;AAET,EAAAA,WAAA,YAAS;AARC,SAAAA;AAAA,GAAA;AAukBL,IAAK,iBAAL,kBAAKC,oBAAL;AAEL,EAAAA,gBAAA,eAAY;AAEZ,EAAAA,gBAAA,iBAAc;AAJJ,SAAAA;AAAA,GAAA;AAyNL,IAAK,cAAL,kBAAKC,iBAAL;AAEL,EAAAA,aAAA,cAAW;AAEX,EAAAA,aAAA,WAAQ;AAJE,SAAAA;AAAA,GAAA;AAqNL,IAAK,uBAAL,kBAAKC,0BAAL;AAEL,EAAAA,sBAAA,oBAAiB;AAKjB,EAAAA,sBAAA,cAAW;AAPD,SAAAA;AAAA,GAAA;AAySL,IAAK,qBAAL,kBAAKC,wBAAL;AAEL,EAAAA,oBAAA,qBAAkB;AAElB,EAAAA,oBAAA,qBAAkB;AAJR,SAAAA;AAAA,GAAA;AA2ML,MAAM,4BACH,OAEV;AAAA,EAKE,YAAY,OAAe,UAA4C;AACrE,UAAM,KAAK;AACX,SAAK,QAAQ;AACb,SAAK,WAAW;AAAA,EAClB;AAAA,EAES,WAAiE;AACxE,WAAO,KAAK;AAAA,EACd;AACF;AACO,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,OAuB/D,EAAC,gBAAe,sBAAqB,CAAC;AACtC,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,IAyC5D,EAAC,gBAAe,gBAAe,CAAC;AAC7B,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,IAuCjE,EAAC,gBAAe,qBAAoB,CAAC;AAClC,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;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA,OAuE9D,EAAC,gBAAe,qBAAoB,CAAC;AACrC,MAAM,yBAAyB,IAAI,oBAAoB;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA,KAiBzD;AACE,MAAM,qBAAqB,IAAI,oBAAoB;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA,KAWrD;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;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA,EAmDtD;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,KAkC3D;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,KAqB1D;AACE,MAAM,+BAA+B,IAAI,oBAAoB;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA,KAM/D;AACE,MAAM,8BAA8B,IAAI,oBAAoB;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA,KAM9D;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,EAoD7D;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,EA8C7D;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,EAgFjE;AACK,MAAM,6BAA6B,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,EAmFhE;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,EA2EjE;AACK,MAAM,iCAAiC,IAAI,oBAAoB;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA,KAYjE;",
|
|
6
|
+
"names": ["AddressTransactionRelationship", "ConsensusObjectCancellationReason", "ExecutionStatus", "MoveAbility", "MoveVisibility", "OwnerKind", "RegulatedState", "SupplyState", "TransactionKindInput", "ZkLoginIntentScope"]
|
|
7
|
+
}
|