@haneullabs/haneul 0.1.0 → 2.5.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 +339 -113
- package/README.md +107 -77
- package/dist/_virtual/rolldown_runtime.mjs +18 -0
- package/dist/bcs/bcs.d.mts +27 -0
- package/dist/bcs/bcs.d.mts.map +1 -0
- package/dist/bcs/bcs.mjs +293 -0
- package/dist/bcs/bcs.mjs.map +1 -0
- package/dist/bcs/effects.mjs +224 -0
- package/dist/bcs/effects.mjs.map +1 -0
- package/dist/bcs/index.d.mts +3051 -0
- package/dist/bcs/index.d.mts.map +1 -0
- package/dist/bcs/index.mjs +62 -0
- package/dist/bcs/index.mjs.map +1 -0
- package/dist/bcs/pure.d.mts +26 -0
- package/dist/bcs/pure.d.mts.map +1 -0
- package/dist/bcs/pure.mjs +29 -0
- package/dist/bcs/pure.mjs.map +1 -0
- package/dist/bcs/type-tag-serializer.d.mts +12 -0
- package/dist/bcs/type-tag-serializer.d.mts.map +1 -0
- package/dist/bcs/type-tag-serializer.mjs +57 -0
- package/dist/bcs/type-tag-serializer.mjs.map +1 -0
- package/dist/bcs/types.d.mts +40 -0
- package/dist/bcs/types.d.mts.map +1 -0
- package/dist/client/cache.d.mts +19 -0
- package/dist/client/cache.d.mts.map +1 -0
- package/dist/client/cache.mjs +48 -0
- package/dist/client/cache.mjs.map +1 -0
- package/dist/client/client.d.mts +21 -0
- package/dist/client/client.d.mts.map +1 -0
- package/dist/client/client.mjs +30 -0
- package/dist/client/client.mjs.map +1 -0
- package/dist/client/core-resolver.d.mts +9 -0
- package/dist/client/core-resolver.d.mts.map +1 -0
- package/dist/client/core-resolver.mjs +249 -0
- package/dist/client/core-resolver.mjs.map +1 -0
- package/dist/client/core.d.mts +48 -0
- package/dist/client/core.d.mts.map +1 -0
- package/dist/client/core.mjs +120 -0
- package/dist/client/core.mjs.map +1 -0
- package/dist/client/errors.d.mts +15 -0
- package/dist/client/errors.d.mts.map +1 -0
- package/dist/client/errors.mjs +28 -0
- package/dist/client/errors.mjs.map +1 -0
- package/dist/client/index.d.mts +8 -0
- package/dist/client/index.mjs +7 -0
- package/dist/client/mvr.d.mts +12 -0
- package/dist/client/mvr.d.mts.map +1 -0
- package/dist/client/mvr.mjs +250 -0
- package/dist/client/mvr.mjs.map +1 -0
- package/dist/client/transaction-resolver.mjs +405 -0
- package/dist/client/transaction-resolver.mjs.map +1 -0
- package/dist/client/types.d.mts +720 -0
- package/dist/client/types.d.mts.map +1 -0
- package/dist/client/utils.d.mts +35 -0
- package/dist/client/utils.d.mts.map +1 -0
- package/dist/client/utils.mjs +387 -0
- package/dist/client/utils.mjs.map +1 -0
- package/dist/cryptography/index.d.mts +7 -0
- package/dist/cryptography/index.mjs +8 -0
- package/dist/cryptography/intent.d.mts +11 -0
- package/dist/cryptography/intent.d.mts.map +1 -0
- package/dist/cryptography/intent.mjs +20 -0
- package/dist/cryptography/intent.mjs.map +1 -0
- package/dist/cryptography/keypair.d.mts +83 -0
- package/dist/cryptography/keypair.d.mts.map +1 -0
- package/dist/cryptography/keypair.mjs +96 -0
- package/dist/cryptography/keypair.mjs.map +1 -0
- package/dist/cryptography/mnemonics.d.mts +31 -0
- package/dist/cryptography/mnemonics.d.mts.map +1 -0
- package/dist/cryptography/mnemonics.mjs +45 -0
- package/dist/cryptography/mnemonics.mjs.map +1 -0
- package/dist/cryptography/publickey.d.mts +65 -0
- package/dist/cryptography/publickey.d.mts.map +1 -0
- package/dist/cryptography/publickey.mjs +105 -0
- package/dist/cryptography/publickey.mjs.map +1 -0
- package/dist/cryptography/signature-scheme.d.mts +28 -0
- package/dist/cryptography/signature-scheme.d.mts.map +1 -0
- package/dist/cryptography/signature-scheme.mjs +27 -0
- package/dist/cryptography/signature-scheme.mjs.map +1 -0
- package/dist/cryptography/signature.d.mts +75 -0
- package/dist/cryptography/signature.d.mts.map +1 -0
- package/dist/cryptography/signature.mjs +46 -0
- package/dist/cryptography/signature.mjs.map +1 -0
- package/dist/faucet/faucet.d.mts +25 -0
- package/dist/faucet/faucet.d.mts.map +1 -0
- package/dist/faucet/faucet.mjs +42 -0
- package/dist/faucet/faucet.mjs.map +1 -0
- package/dist/faucet/index.d.mts +2 -0
- package/dist/faucet/index.mjs +3 -0
- package/dist/graphql/client.d.mts +87 -0
- package/dist/graphql/client.d.mts.map +1 -0
- package/dist/graphql/client.mjs +118 -0
- package/dist/graphql/client.mjs.map +1 -0
- package/dist/graphql/core.d.mts +38 -0
- package/dist/graphql/core.d.mts.map +1 -0
- package/dist/graphql/core.mjs +640 -0
- package/dist/graphql/core.mjs.map +1 -0
- package/dist/graphql/generated/queries.d.mts +14 -0
- package/dist/graphql/generated/queries.d.mts.map +1 -0
- package/dist/graphql/generated/queries.mjs +812 -0
- package/dist/graphql/generated/queries.mjs.map +1 -0
- package/dist/graphql/generated/tada-env.d.mts +11244 -0
- package/dist/graphql/generated/tada-env.d.mts.map +1 -0
- package/dist/graphql/index.d.mts +2 -0
- package/dist/graphql/index.mjs +3 -0
- package/dist/graphql/schema/index.d.mts +13 -0
- package/dist/graphql/schema/index.d.mts.map +1 -0
- package/dist/graphql/schema/index.mjs +8 -0
- package/dist/graphql/schema/index.mjs.map +1 -0
- package/dist/graphql/types.d.mts +75 -0
- package/dist/graphql/types.d.mts.map +1 -0
- package/dist/grpc/client.d.mts +63 -0
- package/dist/grpc/client.d.mts.map +1 -0
- package/dist/grpc/client.mjs +105 -0
- package/dist/grpc/client.mjs.map +1 -0
- package/dist/grpc/core.d.mts +40 -0
- package/dist/grpc/core.d.mts.map +1 -0
- package/dist/grpc/core.mjs +810 -0
- package/dist/grpc/core.mjs.map +1 -0
- package/dist/grpc/index.d.mts +4 -0
- package/dist/grpc/index.mjs +5 -0
- package/dist/grpc/proto/google/protobuf/any.d.mts +173 -0
- package/dist/grpc/proto/google/protobuf/any.d.mts.map +1 -0
- package/dist/grpc/proto/google/protobuf/any.mjs +101 -0
- package/dist/grpc/proto/google/protobuf/any.mjs.map +1 -0
- package/dist/grpc/proto/google/protobuf/duration.d.mts +106 -0
- package/dist/grpc/proto/google/protobuf/duration.d.mts.map +1 -0
- package/dist/grpc/proto/google/protobuf/duration.mjs +62 -0
- package/dist/grpc/proto/google/protobuf/duration.mjs.map +1 -0
- package/dist/grpc/proto/google/protobuf/field_mask.d.mts +233 -0
- package/dist/grpc/proto/google/protobuf/field_mask.d.mts.map +1 -0
- package/dist/grpc/proto/google/protobuf/field_mask.mjs +46 -0
- package/dist/grpc/proto/google/protobuf/field_mask.mjs.map +1 -0
- package/dist/grpc/proto/google/protobuf/struct.d.mts +171 -0
- package/dist/grpc/proto/google/protobuf/struct.d.mts.map +1 -0
- package/dist/grpc/proto/google/protobuf/struct.mjs +208 -0
- package/dist/grpc/proto/google/protobuf/struct.mjs.map +1 -0
- package/dist/grpc/proto/google/protobuf/timestamp.d.mts +147 -0
- package/dist/grpc/proto/google/protobuf/timestamp.d.mts.map +1 -0
- package/dist/grpc/proto/google/protobuf/timestamp.mjs +87 -0
- package/dist/grpc/proto/google/protobuf/timestamp.mjs.map +1 -0
- package/dist/grpc/proto/google/rpc/status.d.mts +51 -0
- package/dist/grpc/proto/google/rpc/status.d.mts.map +1 -0
- package/dist/grpc/proto/google/rpc/status.mjs +37 -0
- package/dist/grpc/proto/google/rpc/status.mjs.map +1 -0
- package/dist/grpc/proto/haneul/rpc/v2/argument.d.mts +71 -0
- package/dist/grpc/proto/haneul/rpc/v2/argument.d.mts.map +1 -0
- package/dist/grpc/proto/haneul/rpc/v2/argument.mjs +74 -0
- package/dist/grpc/proto/haneul/rpc/v2/argument.mjs.map +1 -0
- package/dist/grpc/proto/haneul/rpc/v2/balance_change.d.mts +39 -0
- package/dist/grpc/proto/haneul/rpc/v2/balance_change.d.mts.map +1 -0
- package/dist/grpc/proto/haneul/rpc/v2/balance_change.mjs +38 -0
- package/dist/grpc/proto/haneul/rpc/v2/balance_change.mjs.map +1 -0
- package/dist/grpc/proto/haneul/rpc/v2/bcs.d.mts +35 -0
- package/dist/grpc/proto/haneul/rpc/v2/bcs.d.mts.map +1 -0
- package/dist/grpc/proto/haneul/rpc/v2/bcs.mjs +28 -0
- package/dist/grpc/proto/haneul/rpc/v2/bcs.mjs.map +1 -0
- package/dist/grpc/proto/haneul/rpc/v2/checkpoint.d.mts +73 -0
- package/dist/grpc/proto/haneul/rpc/v2/checkpoint.d.mts.map +1 -0
- package/dist/grpc/proto/haneul/rpc/v2/checkpoint.mjs +68 -0
- package/dist/grpc/proto/haneul/rpc/v2/checkpoint.mjs.map +1 -0
- package/dist/grpc/proto/haneul/rpc/v2/checkpoint_contents.d.mts +104 -0
- package/dist/grpc/proto/haneul/rpc/v2/checkpoint_contents.d.mts.map +1 -0
- package/dist/grpc/proto/haneul/rpc/v2/checkpoint_contents.mjs +100 -0
- package/dist/grpc/proto/haneul/rpc/v2/checkpoint_contents.mjs.map +1 -0
- package/dist/grpc/proto/haneul/rpc/v2/checkpoint_summary.d.mts +200 -0
- package/dist/grpc/proto/haneul/rpc/v2/checkpoint_summary.d.mts.map +1 -0
- package/dist/grpc/proto/haneul/rpc/v2/checkpoint_summary.mjs +180 -0
- package/dist/grpc/proto/haneul/rpc/v2/checkpoint_summary.mjs.map +1 -0
- package/dist/grpc/proto/haneul/rpc/v2/effects.d.mts +398 -0
- package/dist/grpc/proto/haneul/rpc/v2/effects.d.mts.map +1 -0
- package/dist/grpc/proto/haneul/rpc/v2/effects.mjs +438 -0
- package/dist/grpc/proto/haneul/rpc/v2/effects.mjs.map +1 -0
- package/dist/grpc/proto/haneul/rpc/v2/epoch.d.mts +67 -0
- package/dist/grpc/proto/haneul/rpc/v2/epoch.d.mts.map +1 -0
- package/dist/grpc/proto/haneul/rpc/v2/epoch.mjs +83 -0
- package/dist/grpc/proto/haneul/rpc/v2/epoch.mjs.map +1 -0
- package/dist/grpc/proto/haneul/rpc/v2/error_reason.d.mts +21 -0
- package/dist/grpc/proto/haneul/rpc/v2/error_reason.d.mts.map +1 -0
- package/dist/grpc/proto/haneul/rpc/v2/error_reason.mjs +23 -0
- package/dist/grpc/proto/haneul/rpc/v2/error_reason.mjs.map +1 -0
- package/dist/grpc/proto/haneul/rpc/v2/event.d.mts +93 -0
- package/dist/grpc/proto/haneul/rpc/v2/event.d.mts.map +1 -0
- package/dist/grpc/proto/haneul/rpc/v2/event.mjs +89 -0
- package/dist/grpc/proto/haneul/rpc/v2/event.mjs.map +1 -0
- package/dist/grpc/proto/haneul/rpc/v2/executed_transaction.d.mts +85 -0
- package/dist/grpc/proto/haneul/rpc/v2/executed_transaction.d.mts.map +1 -0
- package/dist/grpc/proto/haneul/rpc/v2/executed_transaction.mjs +83 -0
- package/dist/grpc/proto/haneul/rpc/v2/executed_transaction.mjs.map +1 -0
- package/dist/grpc/proto/haneul/rpc/v2/execution_status.d.mts +914 -0
- package/dist/grpc/proto/haneul/rpc/v2/execution_status.d.mts.map +1 -0
- package/dist/grpc/proto/haneul/rpc/v2/execution_status.mjs +916 -0
- package/dist/grpc/proto/haneul/rpc/v2/execution_status.mjs.map +1 -0
- package/dist/grpc/proto/haneul/rpc/v2/gas_cost_summary.d.mts +46 -0
- package/dist/grpc/proto/haneul/rpc/v2/gas_cost_summary.d.mts.map +1 -0
- package/dist/grpc/proto/haneul/rpc/v2/gas_cost_summary.mjs +49 -0
- package/dist/grpc/proto/haneul/rpc/v2/gas_cost_summary.mjs.map +1 -0
- package/dist/grpc/proto/haneul/rpc/v2/input.d.mts +190 -0
- package/dist/grpc/proto/haneul/rpc/v2/input.d.mts.map +1 -0
- package/dist/grpc/proto/haneul/rpc/v2/input.mjs +196 -0
- package/dist/grpc/proto/haneul/rpc/v2/input.mjs.map +1 -0
- package/dist/grpc/proto/haneul/rpc/v2/jwk.d.mts +75 -0
- package/dist/grpc/proto/haneul/rpc/v2/jwk.d.mts.map +1 -0
- package/dist/grpc/proto/haneul/rpc/v2/jwk.mjs +66 -0
- package/dist/grpc/proto/haneul/rpc/v2/jwk.mjs.map +1 -0
- package/dist/grpc/proto/haneul/rpc/v2/ledger_service.client.d.mts +87 -0
- package/dist/grpc/proto/haneul/rpc/v2/ledger_service.client.d.mts.map +1 -0
- package/dist/grpc/proto/haneul/rpc/v2/ledger_service.client.mjs +70 -0
- package/dist/grpc/proto/haneul/rpc/v2/ledger_service.client.mjs.map +1 -0
- package/dist/grpc/proto/haneul/rpc/v2/ledger_service.d.mts +424 -0
- package/dist/grpc/proto/haneul/rpc/v2/ledger_service.d.mts.map +1 -0
- package/dist/grpc/proto/haneul/rpc/v2/ledger_service.mjs +411 -0
- package/dist/grpc/proto/haneul/rpc/v2/ledger_service.mjs.map +1 -0
- package/dist/grpc/proto/haneul/rpc/v2/move_package.d.mts +584 -0
- package/dist/grpc/proto/haneul/rpc/v2/move_package.d.mts.map +1 -0
- package/dist/grpc/proto/haneul/rpc/v2/move_package.mjs +574 -0
- package/dist/grpc/proto/haneul/rpc/v2/move_package.mjs.map +1 -0
- package/dist/grpc/proto/haneul/rpc/v2/move_package_service.client.d.mts +59 -0
- package/dist/grpc/proto/haneul/rpc/v2/move_package_service.client.d.mts.map +1 -0
- package/dist/grpc/proto/haneul/rpc/v2/move_package_service.client.mjs +47 -0
- package/dist/grpc/proto/haneul/rpc/v2/move_package_service.client.mjs.map +1 -0
- package/dist/grpc/proto/haneul/rpc/v2/move_package_service.d.mts +232 -0
- package/dist/grpc/proto/haneul/rpc/v2/move_package_service.d.mts.map +1 -0
- package/dist/grpc/proto/haneul/rpc/v2/move_package_service.mjs +231 -0
- package/dist/grpc/proto/haneul/rpc/v2/move_package_service.mjs.map +1 -0
- package/dist/grpc/proto/haneul/rpc/v2/name_service.client.d.mts +43 -0
- package/dist/grpc/proto/haneul/rpc/v2/name_service.client.d.mts.map +1 -0
- package/dist/grpc/proto/haneul/rpc/v2/name_service.client.mjs +33 -0
- package/dist/grpc/proto/haneul/rpc/v2/name_service.client.mjs.map +1 -0
- package/dist/grpc/proto/haneul/rpc/v2/name_service.d.mts +149 -0
- package/dist/grpc/proto/haneul/rpc/v2/name_service.d.mts.map +1 -0
- package/dist/grpc/proto/haneul/rpc/v2/name_service.mjs +135 -0
- package/dist/grpc/proto/haneul/rpc/v2/name_service.mjs.map +1 -0
- package/dist/grpc/proto/haneul/rpc/v2/object.d.mts +132 -0
- package/dist/grpc/proto/haneul/rpc/v2/object.d.mts.map +1 -0
- package/dist/grpc/proto/haneul/rpc/v2/object.mjs +125 -0
- package/dist/grpc/proto/haneul/rpc/v2/object.mjs.map +1 -0
- package/dist/grpc/proto/haneul/rpc/v2/object_reference.d.mts +39 -0
- package/dist/grpc/proto/haneul/rpc/v2/object_reference.d.mts.map +1 -0
- package/dist/grpc/proto/haneul/rpc/v2/object_reference.mjs +39 -0
- package/dist/grpc/proto/haneul/rpc/v2/object_reference.mjs.map +1 -0
- package/dist/grpc/proto/haneul/rpc/v2/owner.d.mts +66 -0
- package/dist/grpc/proto/haneul/rpc/v2/owner.d.mts.map +1 -0
- package/dist/grpc/proto/haneul/rpc/v2/owner.mjs +69 -0
- package/dist/grpc/proto/haneul/rpc/v2/owner.mjs.map +1 -0
- package/dist/grpc/proto/haneul/rpc/v2/protocol_config.d.mts +35 -0
- package/dist/grpc/proto/haneul/rpc/v2/protocol_config.d.mts.map +1 -0
- package/dist/grpc/proto/haneul/rpc/v2/protocol_config.mjs +45 -0
- package/dist/grpc/proto/haneul/rpc/v2/protocol_config.mjs.map +1 -0
- package/dist/grpc/proto/haneul/rpc/v2/signature.d.mts +635 -0
- package/dist/grpc/proto/haneul/rpc/v2/signature.d.mts.map +1 -0
- package/dist/grpc/proto/haneul/rpc/v2/signature.mjs +573 -0
- package/dist/grpc/proto/haneul/rpc/v2/signature.mjs.map +1 -0
- package/dist/grpc/proto/haneul/rpc/v2/signature_scheme.d.mts +44 -0
- package/dist/grpc/proto/haneul/rpc/v2/signature_scheme.d.mts.map +1 -0
- package/dist/grpc/proto/haneul/rpc/v2/signature_scheme.mjs +46 -0
- package/dist/grpc/proto/haneul/rpc/v2/signature_scheme.mjs.map +1 -0
- package/dist/grpc/proto/haneul/rpc/v2/signature_verification_service.client.d.mts +39 -0
- package/dist/grpc/proto/haneul/rpc/v2/signature_verification_service.client.d.mts.map +1 -0
- package/dist/grpc/proto/haneul/rpc/v2/signature_verification_service.client.mjs +28 -0
- package/dist/grpc/proto/haneul/rpc/v2/signature_verification_service.client.mjs.map +1 -0
- package/dist/grpc/proto/haneul/rpc/v2/signature_verification_service.d.mts +84 -0
- package/dist/grpc/proto/haneul/rpc/v2/signature_verification_service.d.mts.map +1 -0
- package/dist/grpc/proto/haneul/rpc/v2/signature_verification_service.mjs +77 -0
- package/dist/grpc/proto/haneul/rpc/v2/signature_verification_service.mjs.map +1 -0
- package/dist/grpc/proto/haneul/rpc/v2/state_service.client.d.mts +67 -0
- package/dist/grpc/proto/haneul/rpc/v2/state_service.client.d.mts.map +1 -0
- package/dist/grpc/proto/haneul/rpc/v2/state_service.client.mjs +54 -0
- package/dist/grpc/proto/haneul/rpc/v2/state_service.client.mjs.map +1 -0
- package/dist/grpc/proto/haneul/rpc/v2/state_service.d.mts +709 -0
- package/dist/grpc/proto/haneul/rpc/v2/state_service.d.mts.map +1 -0
- package/dist/grpc/proto/haneul/rpc/v2/state_service.mjs +672 -0
- package/dist/grpc/proto/haneul/rpc/v2/state_service.mjs.map +1 -0
- package/dist/grpc/proto/haneul/rpc/v2/subscription_service.client.d.mts +59 -0
- package/dist/grpc/proto/haneul/rpc/v2/subscription_service.client.d.mts.map +1 -0
- package/dist/grpc/proto/haneul/rpc/v2/subscription_service.client.mjs +38 -0
- package/dist/grpc/proto/haneul/rpc/v2/subscription_service.client.mjs.map +1 -0
- package/dist/grpc/proto/haneul/rpc/v2/subscription_service.d.mts +62 -0
- package/dist/grpc/proto/haneul/rpc/v2/subscription_service.d.mts.map +1 -0
- package/dist/grpc/proto/haneul/rpc/v2/subscription_service.mjs +55 -0
- package/dist/grpc/proto/haneul/rpc/v2/subscription_service.mjs.map +1 -0
- package/dist/grpc/proto/haneul/rpc/v2/system_state.d.mts +689 -0
- package/dist/grpc/proto/haneul/rpc/v2/system_state.d.mts.map +1 -0
- package/dist/grpc/proto/haneul/rpc/v2/system_state.mjs +733 -0
- package/dist/grpc/proto/haneul/rpc/v2/system_state.mjs.map +1 -0
- package/dist/grpc/proto/haneul/rpc/v2/transaction.d.mts +1403 -0
- package/dist/grpc/proto/haneul/rpc/v2/transaction.d.mts.map +1 -0
- package/dist/grpc/proto/haneul/rpc/v2/transaction.mjs +1280 -0
- package/dist/grpc/proto/haneul/rpc/v2/transaction.mjs.map +1 -0
- package/dist/grpc/proto/haneul/rpc/v2/transaction_execution_service.client.d.mts +43 -0
- package/dist/grpc/proto/haneul/rpc/v2/transaction_execution_service.client.d.mts.map +1 -0
- package/dist/grpc/proto/haneul/rpc/v2/transaction_execution_service.client.mjs +33 -0
- package/dist/grpc/proto/haneul/rpc/v2/transaction_execution_service.client.mjs.map +1 -0
- package/dist/grpc/proto/haneul/rpc/v2/transaction_execution_service.d.mts +189 -0
- package/dist/grpc/proto/haneul/rpc/v2/transaction_execution_service.d.mts.map +1 -0
- package/dist/grpc/proto/haneul/rpc/v2/transaction_execution_service.mjs +193 -0
- package/dist/grpc/proto/haneul/rpc/v2/transaction_execution_service.mjs.map +1 -0
- package/dist/grpc/proto/types.d.mts +39 -0
- package/dist/grpc/proto/types.d.mts.map +1 -0
- package/dist/grpc/proto/types.mjs +240 -0
- package/dist/grpc/proto/types.mjs.map +1 -0
- package/dist/jsonRpc/client.d.mts +350 -0
- package/dist/jsonRpc/client.d.mts.map +1 -0
- package/dist/jsonRpc/client.mjs +710 -0
- package/dist/jsonRpc/client.mjs.map +1 -0
- package/dist/jsonRpc/core.d.mts +79 -0
- package/dist/jsonRpc/core.d.mts.map +1 -0
- package/dist/jsonRpc/core.mjs +768 -0
- package/dist/jsonRpc/core.mjs.map +1 -0
- package/dist/jsonRpc/errors.d.mts +15 -0
- package/dist/jsonRpc/errors.d.mts.map +1 -0
- package/dist/jsonRpc/errors.mjs +38 -0
- package/dist/jsonRpc/errors.mjs.map +1 -0
- package/dist/jsonRpc/http-transport.d.mts +48 -0
- package/dist/jsonRpc/http-transport.d.mts.map +1 -0
- package/dist/jsonRpc/http-transport.mjs +68 -0
- package/dist/jsonRpc/http-transport.mjs.map +1 -0
- package/dist/jsonRpc/index.d.mts +12 -0
- package/dist/jsonRpc/index.mjs +6 -0
- package/dist/jsonRpc/network.d.mts +5 -0
- package/dist/jsonRpc/network.d.mts.map +1 -0
- package/dist/jsonRpc/network.mjs +14 -0
- package/dist/jsonRpc/network.mjs.map +1 -0
- package/dist/jsonRpc/rpc-websocket-client.d.mts +26 -0
- package/dist/jsonRpc/rpc-websocket-client.d.mts.map +1 -0
- package/dist/jsonRpc/rpc-websocket-client.mjs +135 -0
- package/dist/jsonRpc/rpc-websocket-client.mjs.map +1 -0
- package/dist/jsonRpc/types/chain.d.mts +101 -0
- package/dist/jsonRpc/types/chain.d.mts.map +1 -0
- package/dist/jsonRpc/types/changes.d.mts +24 -0
- package/dist/jsonRpc/types/changes.d.mts.map +1 -0
- package/dist/jsonRpc/types/coins.d.mts +11 -0
- package/dist/jsonRpc/types/coins.d.mts.map +1 -0
- package/dist/jsonRpc/types/common.d.mts +6 -0
- package/dist/jsonRpc/types/common.d.mts.map +1 -0
- package/dist/jsonRpc/types/generated.d.mts +1523 -0
- package/dist/jsonRpc/types/generated.d.mts.map +1 -0
- package/dist/jsonRpc/types/index.d.mts +6 -0
- package/dist/jsonRpc/types/params.d.mts +655 -0
- package/dist/jsonRpc/types/params.d.mts.map +1 -0
- package/dist/keypairs/ed25519/ed25519-hd-key.mjs +45 -0
- package/dist/keypairs/ed25519/ed25519-hd-key.mjs.map +1 -0
- package/dist/keypairs/ed25519/index.d.mts +3 -0
- package/dist/keypairs/ed25519/index.mjs +4 -0
- package/dist/keypairs/ed25519/keypair.d.mts +79 -0
- package/dist/keypairs/ed25519/keypair.d.mts.map +1 -0
- package/dist/keypairs/ed25519/keypair.mjs +125 -0
- package/dist/keypairs/ed25519/keypair.mjs.map +1 -0
- package/dist/keypairs/ed25519/publickey.d.mts +35 -0
- package/dist/keypairs/ed25519/publickey.d.mts.map +1 -0
- package/dist/keypairs/ed25519/publickey.mjs +61 -0
- package/dist/keypairs/ed25519/publickey.mjs.map +1 -0
- package/dist/keypairs/passkey/index.d.mts +3 -0
- package/dist/keypairs/passkey/index.mjs +4 -0
- package/dist/keypairs/passkey/keypair.d.mts +116 -0
- package/dist/keypairs/passkey/keypair.d.mts.map +1 -0
- package/dist/keypairs/passkey/keypair.mjs +221 -0
- package/dist/keypairs/passkey/keypair.mjs.map +1 -0
- package/dist/keypairs/passkey/publickey.d.mts +35 -0
- package/dist/keypairs/passkey/publickey.d.mts.map +1 -0
- package/dist/keypairs/passkey/publickey.mjs +142 -0
- package/dist/keypairs/passkey/publickey.mjs.map +1 -0
- package/dist/keypairs/passkey/types.d.mts +16 -0
- package/dist/keypairs/passkey/types.d.mts.map +1 -0
- package/dist/keypairs/secp256k1/index.d.mts +3 -0
- package/dist/keypairs/secp256k1/index.mjs +4 -0
- package/dist/keypairs/secp256k1/keypair.d.mts +78 -0
- package/dist/keypairs/secp256k1/keypair.d.mts.map +1 -0
- package/dist/keypairs/secp256k1/keypair.mjs +125 -0
- package/dist/keypairs/secp256k1/keypair.mjs.map +1 -0
- package/dist/keypairs/secp256k1/publickey.d.mts +35 -0
- package/dist/keypairs/secp256k1/publickey.d.mts.map +1 -0
- package/dist/keypairs/secp256k1/publickey.mjs +61 -0
- package/dist/keypairs/secp256k1/publickey.mjs.map +1 -0
- package/dist/keypairs/secp256r1/index.d.mts +3 -0
- package/dist/keypairs/secp256r1/index.mjs +4 -0
- package/dist/keypairs/secp256r1/keypair.d.mts +78 -0
- package/dist/keypairs/secp256r1/keypair.d.mts.map +1 -0
- package/dist/keypairs/secp256r1/keypair.mjs +124 -0
- package/dist/keypairs/secp256r1/keypair.mjs.map +1 -0
- package/dist/keypairs/secp256r1/publickey.d.mts +35 -0
- package/dist/keypairs/secp256r1/publickey.d.mts.map +1 -0
- package/dist/keypairs/secp256r1/publickey.mjs +62 -0
- package/dist/keypairs/secp256r1/publickey.mjs.map +1 -0
- package/dist/multisig/index.d.mts +3 -0
- package/dist/multisig/index.mjs +4 -0
- package/dist/multisig/publickey.d.mts +119 -0
- package/dist/multisig/publickey.d.mts.map +1 -0
- package/dist/multisig/publickey.mjs +192 -0
- package/dist/multisig/publickey.mjs.map +1 -0
- package/dist/multisig/signer.d.mts +24 -0
- package/dist/multisig/signer.d.mts.map +1 -0
- package/dist/multisig/signer.mjs +53 -0
- package/dist/multisig/signer.mjs.map +1 -0
- package/dist/transactions/Arguments.d.mts +56 -0
- package/dist/transactions/Arguments.d.mts.map +1 -0
- package/dist/transactions/Arguments.mjs +15 -0
- package/dist/transactions/Arguments.mjs.map +1 -0
- package/dist/transactions/Commands.d.mts +71 -0
- package/dist/transactions/Commands.d.mts.map +1 -0
- package/dist/transactions/Commands.mjs +104 -0
- package/dist/transactions/Commands.mjs.map +1 -0
- package/dist/transactions/Inputs.d.mts +49 -0
- package/dist/transactions/Inputs.d.mts.map +1 -0
- package/dist/transactions/Inputs.mjs +66 -0
- package/dist/transactions/Inputs.mjs.map +1 -0
- package/dist/transactions/ObjectCache.d.mts +84 -0
- package/dist/transactions/ObjectCache.d.mts.map +1 -0
- package/dist/transactions/ObjectCache.mjs +173 -0
- package/dist/transactions/ObjectCache.mjs.map +1 -0
- package/dist/transactions/Transaction.d.mts +492 -0
- package/dist/transactions/Transaction.d.mts.map +1 -0
- package/dist/transactions/Transaction.mjs +520 -0
- package/dist/transactions/Transaction.mjs.map +1 -0
- package/dist/transactions/TransactionData.d.mts +61 -0
- package/dist/transactions/TransactionData.d.mts.map +1 -0
- package/dist/transactions/TransactionData.mjs +282 -0
- package/dist/transactions/TransactionData.mjs.map +1 -0
- package/dist/transactions/data/internal.d.mts +571 -0
- package/dist/transactions/data/internal.d.mts.map +1 -0
- package/dist/transactions/data/internal.mjs +197 -0
- package/dist/transactions/data/internal.mjs.map +1 -0
- package/dist/transactions/data/v1.d.mts +249 -0
- package/dist/transactions/data/v1.d.mts.map +1 -0
- package/dist/transactions/data/v1.mjs +352 -0
- package/dist/transactions/data/v1.mjs.map +1 -0
- package/dist/transactions/data/v2.d.mts +180 -0
- package/dist/transactions/data/v2.d.mts.map +1 -0
- package/dist/transactions/data/v2.mjs +100 -0
- package/dist/transactions/data/v2.mjs.map +1 -0
- package/dist/transactions/executor/caching.mjs +74 -0
- package/dist/transactions/executor/caching.mjs.map +1 -0
- package/dist/transactions/executor/parallel.d.mts +46 -0
- package/dist/transactions/executor/parallel.d.mts.map +1 -0
- package/dist/transactions/executor/parallel.mjs +304 -0
- package/dist/transactions/executor/parallel.mjs.map +1 -0
- package/dist/transactions/executor/queue.mjs +42 -0
- package/dist/transactions/executor/queue.mjs.map +1 -0
- package/dist/transactions/executor/serial.d.mts +34 -0
- package/dist/transactions/executor/serial.d.mts.map +1 -0
- package/dist/transactions/executor/serial.mjs +130 -0
- package/dist/transactions/executor/serial.mjs.map +1 -0
- package/dist/transactions/hash.mjs +20 -0
- package/dist/transactions/hash.mjs.map +1 -0
- package/dist/transactions/index.d.mts +16 -0
- package/dist/transactions/index.mjs +13 -0
- package/dist/transactions/intents/CoinWithBalance.d.mts +17 -0
- package/dist/transactions/intents/CoinWithBalance.d.mts.map +1 -0
- package/dist/transactions/intents/CoinWithBalance.mjs +193 -0
- package/dist/transactions/intents/CoinWithBalance.mjs.map +1 -0
- package/dist/transactions/object.d.mts +24 -0
- package/dist/transactions/object.d.mts.map +1 -0
- package/dist/transactions/object.mjs +55 -0
- package/dist/transactions/object.mjs.map +1 -0
- package/dist/transactions/plugins/NamedPackagesPlugin.mjs +24 -0
- package/dist/transactions/plugins/NamedPackagesPlugin.mjs.map +1 -0
- package/dist/transactions/pure.d.mts +25 -0
- package/dist/transactions/pure.d.mts.map +1 -0
- package/dist/transactions/pure.mjs +33 -0
- package/dist/transactions/pure.mjs.map +1 -0
- package/dist/transactions/resolve.d.mts +16 -0
- package/dist/transactions/resolve.d.mts.map +1 -0
- package/dist/transactions/resolve.mjs +57 -0
- package/dist/transactions/resolve.mjs.map +1 -0
- package/dist/transactions/serializer.d.mts +11 -0
- package/dist/transactions/serializer.d.mts.map +1 -0
- package/dist/transactions/serializer.mjs +107 -0
- package/dist/transactions/serializer.mjs.map +1 -0
- package/dist/transactions/utils.d.mts +9 -0
- package/dist/transactions/utils.d.mts.map +1 -0
- package/dist/transactions/utils.mjs +82 -0
- package/dist/transactions/utils.mjs.map +1 -0
- package/dist/utils/constants.d.mts +15 -0
- package/dist/utils/constants.d.mts.map +1 -0
- package/dist/utils/constants.mjs +16 -0
- package/dist/utils/constants.mjs.map +1 -0
- package/dist/utils/derived-objects.d.mts +11 -0
- package/dist/utils/derived-objects.d.mts.map +1 -0
- package/dist/utils/derived-objects.mjs +14 -0
- package/dist/utils/derived-objects.mjs.map +1 -0
- package/dist/utils/dynamic-fields.d.mts +7 -0
- package/dist/utils/dynamic-fields.d.mts.map +1 -0
- package/dist/utils/dynamic-fields.mjs +21 -0
- package/dist/utils/dynamic-fields.mjs.map +1 -0
- package/dist/utils/format.d.mts +6 -0
- package/dist/utils/format.d.mts.map +1 -0
- package/dist/utils/format.mjs +14 -0
- package/dist/utils/format.mjs.map +1 -0
- package/dist/utils/haneul-types.d.mts +31 -0
- package/dist/utils/haneul-types.d.mts.map +1 -0
- package/dist/utils/haneul-types.mjs +110 -0
- package/dist/utils/haneul-types.mjs.map +1 -0
- package/dist/utils/haneulns.d.mts +6 -0
- package/dist/utils/haneulns.d.mts.map +1 -0
- package/dist/utils/haneulns.mjs +27 -0
- package/dist/utils/haneulns.mjs.map +1 -0
- package/dist/utils/index.d.mts +10 -0
- package/dist/utils/index.mjs +11 -0
- package/dist/utils/move-registry.d.mts +9 -0
- package/dist/utils/move-registry.d.mts.map +1 -0
- package/dist/utils/move-registry.mjs +32 -0
- package/dist/utils/move-registry.mjs.map +1 -0
- package/dist/verify/index.d.mts +2 -0
- package/dist/verify/index.mjs +3 -0
- package/dist/verify/verify.d.mts +28 -0
- package/dist/verify/verify.d.mts.map +1 -0
- package/dist/verify/verify.mjs +76 -0
- package/dist/verify/verify.mjs.map +1 -0
- package/dist/version.mjs +7 -0
- package/dist/version.mjs.map +1 -0
- package/dist/zklogin/address.d.mts +22 -0
- package/dist/zklogin/address.d.mts.map +1 -0
- package/dist/zklogin/address.mjs +49 -0
- package/dist/zklogin/address.mjs.map +1 -0
- package/dist/zklogin/bcs.d.mts +34 -0
- package/dist/zklogin/bcs.d.mts.map +1 -0
- package/dist/zklogin/bcs.mjs +24 -0
- package/dist/zklogin/bcs.mjs.map +1 -0
- package/dist/zklogin/index.d.mts +9 -0
- package/dist/zklogin/index.mjs +9 -0
- package/dist/zklogin/jwt-decode.d.mts +14 -0
- package/dist/zklogin/jwt-decode.d.mts.map +1 -0
- package/dist/zklogin/jwt-decode.mjs +50 -0
- package/dist/zklogin/jwt-decode.mjs.map +1 -0
- package/dist/zklogin/jwt-utils.d.mts +13 -0
- package/dist/zklogin/jwt-utils.d.mts.map +1 -0
- package/dist/zklogin/jwt-utils.mjs +68 -0
- package/dist/zklogin/jwt-utils.mjs.map +1 -0
- package/dist/zklogin/nonce.d.mts +8 -0
- package/dist/zklogin/nonce.d.mts.map +1 -0
- package/dist/zklogin/nonce.mjs +32 -0
- package/dist/zklogin/nonce.mjs.map +1 -0
- package/dist/zklogin/poseidon.d.mts +5 -0
- package/dist/zklogin/poseidon.d.mts.map +1 -0
- package/dist/zklogin/poseidon.mjs +36 -0
- package/dist/zklogin/poseidon.mjs.map +1 -0
- package/dist/zklogin/publickey.d.mts +67 -0
- package/dist/zklogin/publickey.d.mts.map +1 -0
- package/dist/zklogin/publickey.mjs +173 -0
- package/dist/zklogin/publickey.mjs.map +1 -0
- package/dist/zklogin/signature.d.mts +31 -0
- package/dist/zklogin/signature.d.mts.map +1 -0
- package/dist/zklogin/signature.mjs +30 -0
- package/dist/zklogin/signature.mjs.map +1 -0
- package/dist/zklogin/utils.d.mts +11 -0
- package/dist/zklogin/utils.d.mts.map +1 -0
- package/dist/zklogin/utils.mjs +63 -0
- package/dist/zklogin/utils.mjs.map +1 -0
- package/package.json +199 -195
- package/src/bcs/bcs.ts +91 -2
- package/src/bcs/effects.ts +76 -11
- package/src/bcs/index.ts +24 -3
- package/src/bcs/pure.ts +0 -1
- package/src/bcs/types.ts +27 -3
- package/src/client/client.ts +73 -0
- package/src/client/core-resolver.ts +504 -0
- package/src/client/core.ts +268 -0
- package/src/client/errors.ts +50 -0
- package/src/client/index.ts +23 -16
- package/src/client/mvr.ts +488 -0
- package/src/client/transaction-resolver.ts +559 -0
- package/src/client/types.ts +899 -0
- package/src/client/utils.ts +547 -0
- package/src/cryptography/index.ts +3 -3
- package/src/cryptography/intent.ts +1 -1
- package/src/cryptography/keypair.ts +14 -16
- package/src/cryptography/publickey.ts +7 -7
- package/src/faucet/faucet.ts +3 -99
- package/src/faucet/index.ts +1 -8
- package/src/graphql/client.ts +131 -9
- package/src/graphql/core.ts +645 -154
- package/src/graphql/generated/queries.ts +739 -522
- package/src/graphql/generated/schema.graphql +4362 -0
- package/src/graphql/generated/tada-env.ts +13090 -0
- package/src/graphql/generated/tsconfig.tada.json +11 -0
- package/src/graphql/index.ts +1 -0
- package/src/graphql/queries/getAllBalances.graphql +2 -1
- package/src/graphql/queries/getBalance.graphql +2 -1
- package/src/graphql/queries/getChainIdentifier.graphql +8 -0
- package/src/graphql/queries/getCoinMetadata.graphql +13 -0
- package/src/graphql/queries/getCoins.graphql +2 -6
- package/src/graphql/queries/getCurrentSystemState.graphql +16 -0
- package/src/graphql/queries/getDynamicFields.graphql +1 -1
- package/src/graphql/queries/getMoveFunction.graphql +1 -1
- package/src/graphql/queries/nameService.graphql +4 -2
- package/src/graphql/queries/objects.graphql +28 -6
- package/src/graphql/queries/transactions.graphql +116 -41
- package/src/graphql/queries/verifyZkLoginSignature.graphql +1 -1
- package/src/graphql/schema/index.ts +17 -0
- package/src/grpc/client.ts +131 -9
- package/src/grpc/core.ts +822 -259
- package/src/grpc/index.ts +6 -2
- package/src/grpc/proto/haneul/rpc/v2/bcs.ts +1 -1
- package/src/grpc/proto/haneul/rpc/v2/checkpoint_contents.ts +44 -0
- package/src/grpc/proto/haneul/rpc/v2/effects.ts +80 -0
- package/src/grpc/proto/haneul/rpc/v2/epoch.ts +1 -1
- package/src/grpc/proto/haneul/rpc/v2/executed_transaction.ts +1 -1
- package/src/grpc/proto/haneul/rpc/v2/execution_status.ts +68 -2
- package/src/grpc/proto/haneul/rpc/v2/input.ts +115 -0
- package/src/grpc/proto/haneul/rpc/v2/name_service.ts +1 -1
- package/src/grpc/proto/haneul/rpc/v2/object.ts +1 -1
- package/src/grpc/proto/haneul/rpc/v2/signature.ts +1 -1
- package/src/grpc/proto/haneul/rpc/v2/signature_scheme.ts +2 -2
- package/src/grpc/proto/haneul/rpc/v2/state_service.ts +33 -3
- package/src/grpc/proto/haneul/rpc/v2/system_state.ts +10 -10
- package/src/grpc/proto/haneul/rpc/v2/transaction.ts +100 -1
- package/src/grpc/proto/types.ts +44 -0
- package/src/jsonRpc/client.ts +95 -120
- package/src/jsonRpc/core.ts +618 -178
- package/src/jsonRpc/http-transport.ts +0 -2
- package/src/jsonRpc/index.ts +1 -0
- package/src/jsonRpc/network.ts +17 -0
- package/src/jsonRpc/types/chain.ts +7 -7
- package/src/jsonRpc/types/coins.ts +1 -0
- package/src/jsonRpc/types/generated.ts +119 -74
- package/src/jsonRpc/types/params.ts +20 -20
- package/src/keypairs/ed25519/ed25519-hd-key.ts +3 -3
- package/src/keypairs/ed25519/keypair.ts +10 -10
- package/src/keypairs/ed25519/publickey.ts +1 -1
- package/src/keypairs/passkey/keypair.ts +22 -18
- package/src/keypairs/passkey/publickey.ts +7 -4
- package/src/keypairs/secp256k1/keypair.ts +15 -18
- package/src/keypairs/secp256k1/publickey.ts +2 -7
- package/src/keypairs/secp256r1/keypair.ts +15 -18
- package/src/keypairs/secp256r1/publickey.ts +2 -7
- package/src/multisig/publickey.ts +9 -11
- package/src/multisig/signer.ts +0 -7
- package/src/transactions/Commands.ts +2 -2
- package/src/transactions/Inputs.ts +25 -1
- package/src/transactions/ObjectCache.ts +2 -2
- package/src/transactions/Transaction.ts +86 -94
- package/src/transactions/TransactionData.ts +5 -16
- package/src/transactions/__tests__/Transaction.test.ts +19 -19
- package/src/transactions/__tests__/bcs.test.ts +8 -8
- package/src/transactions/data/internal.ts +108 -79
- package/src/transactions/data/v2.ts +11 -1
- package/src/transactions/executor/caching.ts +39 -31
- package/src/transactions/executor/parallel.ts +207 -147
- package/src/transactions/executor/serial.ts +110 -38
- package/src/transactions/hash.ts +1 -1
- package/src/transactions/index.ts +1 -14
- package/src/transactions/intents/CoinWithBalance.ts +195 -75
- package/src/transactions/object.ts +13 -6
- package/src/transactions/plugins/NamedPackagesPlugin.ts +12 -83
- package/src/transactions/resolve.ts +11 -10
- package/src/transactions/serializer.ts +114 -133
- package/src/transactions/utils.ts +1 -1
- package/src/utils/constants.ts +14 -8
- package/src/utils/dynamic-fields.ts +1 -1
- package/src/utils/haneul-types.ts +63 -1
- package/src/utils/index.ts +3 -12
- package/src/utils/move-registry.ts +3 -4
- package/src/verify/index.ts +0 -1
- package/src/verify/verify.ts +6 -7
- package/src/version.ts +1 -1
- package/src/zklogin/address.ts +18 -7
- package/src/zklogin/index.ts +1 -5
- package/src/zklogin/nonce.ts +2 -2
- package/src/zklogin/publickey.ts +25 -24
- package/src/zklogin/utils.ts +2 -2
- package/bcs/package.json +0 -6
- package/client/package.json +0 -6
- package/cryptography/package.json +0 -6
- package/dist/cjs/bcs/bcs.d.ts +0 -1973
- package/dist/cjs/bcs/bcs.js +0 -328
- package/dist/cjs/bcs/bcs.js.map +0 -7
- package/dist/cjs/bcs/effects.d.ts +0 -579
- package/dist/cjs/bcs/effects.js +0 -210
- package/dist/cjs/bcs/effects.js.map +0 -7
- package/dist/cjs/bcs/index.d.ts +0 -2589
- package/dist/cjs/bcs/index.js +0 -80
- package/dist/cjs/bcs/index.js.map +0 -7
- package/dist/cjs/bcs/pure.d.ts +0 -22
- package/dist/cjs/bcs/pure.js +0 -59
- package/dist/cjs/bcs/pure.js.map +0 -7
- package/dist/cjs/bcs/type-tag-serializer.d.ts +0 -7
- package/dist/cjs/bcs/type-tag-serializer.js +0 -117
- package/dist/cjs/bcs/type-tag-serializer.js.map +0 -7
- package/dist/cjs/bcs/types.d.ts +0 -114
- package/dist/cjs/bcs/types.js +0 -27
- package/dist/cjs/bcs/types.js.map +0 -7
- package/dist/cjs/client/index.d.ts +0 -5
- package/dist/cjs/client/index.js +0 -34
- package/dist/cjs/client/index.js.map +0 -7
- package/dist/cjs/client/network.d.ts +0 -1
- package/dist/cjs/client/network.js +0 -38
- package/dist/cjs/client/network.js.map +0 -7
- package/dist/cjs/cryptography/index.d.ts +0 -7
- package/dist/cjs/cryptography/index.js +0 -47
- package/dist/cjs/cryptography/index.js.map +0 -7
- package/dist/cjs/cryptography/intent.d.ts +0 -6
- package/dist/cjs/cryptography/intent.js +0 -35
- package/dist/cjs/cryptography/intent.js.map +0 -7
- package/dist/cjs/cryptography/keypair.d.ts +0 -72
- package/dist/cjs/cryptography/keypair.js +0 -118
- package/dist/cjs/cryptography/keypair.js.map +0 -7
- package/dist/cjs/cryptography/mnemonics.d.ts +0 -27
- package/dist/cjs/cryptography/mnemonics.js +0 -47
- package/dist/cjs/cryptography/mnemonics.js.map +0 -7
- package/dist/cjs/cryptography/publickey.d.ts +0 -67
- package/dist/cjs/cryptography/publickey.js +0 -140
- package/dist/cjs/cryptography/publickey.js.map +0 -7
- package/dist/cjs/cryptography/signature-scheme.d.ts +0 -24
- package/dist/cjs/cryptography/signature-scheme.js +0 -48
- package/dist/cjs/cryptography/signature-scheme.js.map +0 -7
- package/dist/cjs/cryptography/signature.d.ts +0 -65
- package/dist/cjs/cryptography/signature.js +0 -71
- package/dist/cjs/cryptography/signature.js.map +0 -7
- package/dist/cjs/experimental/cache.d.ts +0 -12
- package/dist/cjs/experimental/cache.js +0 -88
- package/dist/cjs/experimental/cache.js.map +0 -7
- package/dist/cjs/experimental/client.d.ts +0 -12
- package/dist/cjs/experimental/client.js +0 -46
- package/dist/cjs/experimental/client.js.map +0 -7
- package/dist/cjs/experimental/core.d.ts +0 -37
- package/dist/cjs/experimental/core.js +0 -114
- package/dist/cjs/experimental/core.js.map +0 -7
- package/dist/cjs/experimental/errors.d.ts +0 -8
- package/dist/cjs/experimental/errors.js +0 -54
- package/dist/cjs/experimental/errors.js.map +0 -7
- package/dist/cjs/experimental/index.d.ts +0 -7
- package/dist/cjs/experimental/index.js +0 -32
- package/dist/cjs/experimental/index.js.map +0 -7
- package/dist/cjs/experimental/mvr.d.ts +0 -42
- package/dist/cjs/experimental/mvr.js +0 -365
- package/dist/cjs/experimental/mvr.js.map +0 -7
- package/dist/cjs/experimental/transports/utils.d.ts +0 -3
- package/dist/cjs/experimental/transports/utils.js +0 -101
- package/dist/cjs/experimental/transports/utils.js.map +0 -7
- package/dist/cjs/experimental/types.d.ts +0 -434
- package/dist/cjs/experimental/types.js +0 -17
- package/dist/cjs/experimental/types.js.map +0 -7
- package/dist/cjs/faucet/faucet.d.ts +0 -65
- package/dist/cjs/faucet/faucet.js +0 -130
- package/dist/cjs/faucet/faucet.js.map +0 -7
- package/dist/cjs/faucet/index.d.ts +0 -1
- package/dist/cjs/faucet/index.js +0 -30
- package/dist/cjs/faucet/index.js.map +0 -7
- package/dist/cjs/graphql/client.d.ts +0 -50
- package/dist/cjs/graphql/client.js +0 -94
- package/dist/cjs/graphql/client.js.map +0 -7
- package/dist/cjs/graphql/core.d.ts +0 -32
- package/dist/cjs/graphql/core.js +0 -471
- package/dist/cjs/graphql/core.js.map +0 -7
- package/dist/cjs/graphql/generated/2024.1/tada-env.d.ts +0 -11380
- package/dist/cjs/graphql/generated/2024.1/tada-env.js +0 -13142
- package/dist/cjs/graphql/generated/2024.1/tada-env.js.map +0 -7
- package/dist/cjs/graphql/generated/2024.1/tsconfig.tada.js +0 -12
- package/dist/cjs/graphql/generated/2024.1/tsconfig.tada.js.map +0 -7
- package/dist/cjs/graphql/generated/2024.4/tada-env.d.ts +0 -11496
- package/dist/cjs/graphql/generated/2024.4/tada-env.js +0 -13288
- package/dist/cjs/graphql/generated/2024.4/tada-env.js.map +0 -7
- package/dist/cjs/graphql/generated/2024.4/tsconfig.tada.js +0 -12
- package/dist/cjs/graphql/generated/2024.4/tsconfig.tada.js.map +0 -7
- package/dist/cjs/graphql/generated/latest/tada-env.d.ts +0 -11128
- package/dist/cjs/graphql/generated/latest/tada-env.js +0 -12926
- package/dist/cjs/graphql/generated/latest/tada-env.js.map +0 -7
- package/dist/cjs/graphql/generated/latest/tsconfig.tada.js +0 -12
- package/dist/cjs/graphql/generated/latest/tsconfig.tada.js.map +0 -7
- package/dist/cjs/graphql/generated/queries.d.ts +0 -4980
- package/dist/cjs/graphql/generated/queries.js +0 -803
- package/dist/cjs/graphql/generated/queries.js.map +0 -7
- package/dist/cjs/graphql/index.d.ts +0 -1
- package/dist/cjs/graphql/index.js +0 -26
- package/dist/cjs/graphql/index.js.map +0 -7
- package/dist/cjs/graphql/schemas/2024.1/index.d.ts +0 -10
- package/dist/cjs/graphql/schemas/2024.1/index.js +0 -29
- package/dist/cjs/graphql/schemas/2024.1/index.js.map +0 -7
- package/dist/cjs/graphql/schemas/2024.4/index.d.ts +0 -10
- package/dist/cjs/graphql/schemas/2024.4/index.js +0 -29
- package/dist/cjs/graphql/schemas/2024.4/index.js.map +0 -7
- package/dist/cjs/graphql/schemas/latest/index.d.ts +0 -10
- package/dist/cjs/graphql/schemas/latest/index.js +0 -29
- package/dist/cjs/graphql/schemas/latest/index.js.map +0 -7
- package/dist/cjs/graphql/types.d.ts +0 -71
- package/dist/cjs/graphql/types.js +0 -17
- package/dist/cjs/graphql/types.js.map +0 -7
- package/dist/cjs/grpc/client.d.ts +0 -33
- package/dist/cjs/grpc/client.js +0 -53
- package/dist/cjs/grpc/client.js.map +0 -7
- package/dist/cjs/grpc/core.d.ts +0 -30
- package/dist/cjs/grpc/core.js +0 -651
- package/dist/cjs/grpc/core.js.map +0 -7
- package/dist/cjs/grpc/index.d.ts +0 -4
- package/dist/cjs/grpc/index.js +0 -27
- package/dist/cjs/grpc/index.js.map +0 -7
- package/dist/cjs/grpc/proto/google/protobuf/any.d.ts +0 -173
- package/dist/cjs/grpc/proto/google/protobuf/any.js +0 -139
- package/dist/cjs/grpc/proto/google/protobuf/any.js.map +0 -7
- package/dist/cjs/grpc/proto/google/protobuf/duration.d.ts +0 -104
- package/dist/cjs/grpc/proto/google/protobuf/duration.js +0 -88
- package/dist/cjs/grpc/proto/google/protobuf/duration.js.map +0 -7
- package/dist/cjs/grpc/proto/google/protobuf/empty.d.ts +0 -25
- package/dist/cjs/grpc/proto/google/protobuf/empty.js +0 -31
- package/dist/cjs/grpc/proto/google/protobuf/empty.js.map +0 -7
- package/dist/cjs/grpc/proto/google/protobuf/field_mask.d.ts +0 -231
- package/dist/cjs/grpc/proto/google/protobuf/field_mask.js +0 -73
- package/dist/cjs/grpc/proto/google/protobuf/field_mask.js.map +0 -7
- package/dist/cjs/grpc/proto/google/protobuf/struct.d.ts +0 -169
- package/dist/cjs/grpc/proto/google/protobuf/struct.js +0 -199
- package/dist/cjs/grpc/proto/google/protobuf/struct.js.map +0 -7
- package/dist/cjs/grpc/proto/google/protobuf/timestamp.d.ts +0 -145
- package/dist/cjs/grpc/proto/google/protobuf/timestamp.js +0 -123
- package/dist/cjs/grpc/proto/google/protobuf/timestamp.js.map +0 -7
- package/dist/cjs/grpc/proto/google/rpc/error_details.d.ts +0 -525
- package/dist/cjs/grpc/proto/google/rpc/error_details.js +0 -332
- package/dist/cjs/grpc/proto/google/rpc/error_details.js.map +0 -7
- package/dist/cjs/grpc/proto/google/rpc/status.d.ts +0 -46
- package/dist/cjs/grpc/proto/google/rpc/status.js +0 -48
- package/dist/cjs/grpc/proto/google/rpc/status.js.map +0 -7
- package/dist/cjs/grpc/proto/haneul/rpc/v2/argument.d.ts +0 -66
- package/dist/cjs/grpc/proto/haneul/rpc/v2/argument.js +0 -71
- package/dist/cjs/grpc/proto/haneul/rpc/v2/argument.js.map +0 -7
- package/dist/cjs/grpc/proto/haneul/rpc/v2/balance_change.d.ts +0 -34
- package/dist/cjs/grpc/proto/haneul/rpc/v2/balance_change.js +0 -56
- package/dist/cjs/grpc/proto/haneul/rpc/v2/balance_change.js.map +0 -7
- package/dist/cjs/grpc/proto/haneul/rpc/v2/bcs.d.ts +0 -30
- package/dist/cjs/grpc/proto/haneul/rpc/v2/bcs.js +0 -48
- package/dist/cjs/grpc/proto/haneul/rpc/v2/bcs.js.map +0 -7
- package/dist/cjs/grpc/proto/haneul/rpc/v2/checkpoint.d.ts +0 -68
- package/dist/cjs/grpc/proto/haneul/rpc/v2/checkpoint.js +0 -64
- package/dist/cjs/grpc/proto/haneul/rpc/v2/checkpoint.js.map +0 -7
- package/dist/cjs/grpc/proto/haneul/rpc/v2/checkpoint_contents.d.ts +0 -74
- package/dist/cjs/grpc/proto/haneul/rpc/v2/checkpoint_contents.js +0 -89
- package/dist/cjs/grpc/proto/haneul/rpc/v2/checkpoint_contents.js.map +0 -7
- package/dist/cjs/grpc/proto/haneul/rpc/v2/checkpoint_summary.d.ts +0 -195
- package/dist/cjs/grpc/proto/haneul/rpc/v2/checkpoint_summary.js +0 -165
- package/dist/cjs/grpc/proto/haneul/rpc/v2/checkpoint_summary.js.map +0 -7
- package/dist/cjs/grpc/proto/haneul/rpc/v2/effects.d.ts +0 -338
- package/dist/cjs/grpc/proto/haneul/rpc/v2/effects.js +0 -294
- package/dist/cjs/grpc/proto/haneul/rpc/v2/effects.js.map +0 -7
- package/dist/cjs/grpc/proto/haneul/rpc/v2/epoch.d.ts +0 -62
- package/dist/cjs/grpc/proto/haneul/rpc/v2/epoch.js +0 -73
- package/dist/cjs/grpc/proto/haneul/rpc/v2/epoch.js.map +0 -7
- package/dist/cjs/grpc/proto/haneul/rpc/v2/error_reason.d.ts +0 -17
- package/dist/cjs/grpc/proto/haneul/rpc/v2/error_reason.js +0 -30
- package/dist/cjs/grpc/proto/haneul/rpc/v2/error_reason.js.map +0 -7
- package/dist/cjs/grpc/proto/haneul/rpc/v2/event.d.ts +0 -88
- package/dist/cjs/grpc/proto/haneul/rpc/v2/event.js +0 -86
- package/dist/cjs/grpc/proto/haneul/rpc/v2/event.js.map +0 -7
- package/dist/cjs/grpc/proto/haneul/rpc/v2/executed_transaction.d.ts +0 -80
- package/dist/cjs/grpc/proto/haneul/rpc/v2/executed_transaction.js +0 -74
- package/dist/cjs/grpc/proto/haneul/rpc/v2/executed_transaction.js.map +0 -7
- package/dist/cjs/grpc/proto/haneul/rpc/v2/execution_status.d.ts +0 -843
- package/dist/cjs/grpc/proto/haneul/rpc/v2/execution_status.js +0 -513
- package/dist/cjs/grpc/proto/haneul/rpc/v2/execution_status.js.map +0 -7
- package/dist/cjs/grpc/proto/haneul/rpc/v2/gas_cost_summary.d.ts +0 -41
- package/dist/cjs/grpc/proto/haneul/rpc/v2/gas_cost_summary.js +0 -64
- package/dist/cjs/grpc/proto/haneul/rpc/v2/gas_cost_summary.js.map +0 -7
- package/dist/cjs/grpc/proto/haneul/rpc/v2/input.d.ts +0 -98
- package/dist/cjs/grpc/proto/haneul/rpc/v2/input.js +0 -90
- package/dist/cjs/grpc/proto/haneul/rpc/v2/input.js.map +0 -7
- package/dist/cjs/grpc/proto/haneul/rpc/v2/jwk.d.ts +0 -70
- package/dist/cjs/grpc/proto/haneul/rpc/v2/jwk.js +0 -88
- package/dist/cjs/grpc/proto/haneul/rpc/v2/jwk.js.map +0 -7
- package/dist/cjs/grpc/proto/haneul/rpc/v2/ledger_service.client.d.ts +0 -95
- package/dist/cjs/grpc/proto/haneul/rpc/v2/ledger_service.client.js +0 -127
- package/dist/cjs/grpc/proto/haneul/rpc/v2/ledger_service.client.js.map +0 -7
- package/dist/cjs/grpc/proto/haneul/rpc/v2/ledger_service.d.ts +0 -420
- package/dist/cjs/grpc/proto/haneul/rpc/v2/ledger_service.js +0 -327
- package/dist/cjs/grpc/proto/haneul/rpc/v2/ledger_service.js.map +0 -7
- package/dist/cjs/grpc/proto/haneul/rpc/v2/move_package.d.ts +0 -579
- package/dist/cjs/grpc/proto/haneul/rpc/v2/move_package.js +0 -480
- package/dist/cjs/grpc/proto/haneul/rpc/v2/move_package.js.map +0 -7
- package/dist/cjs/grpc/proto/haneul/rpc/v2/move_package_service.client.d.ts +0 -61
- package/dist/cjs/grpc/proto/haneul/rpc/v2/move_package_service.client.js +0 -86
- package/dist/cjs/grpc/proto/haneul/rpc/v2/move_package_service.client.js.map +0 -7
- package/dist/cjs/grpc/proto/haneul/rpc/v2/move_package_service.d.ts +0 -229
- package/dist/cjs/grpc/proto/haneul/rpc/v2/move_package_service.js +0 -226
- package/dist/cjs/grpc/proto/haneul/rpc/v2/move_package_service.js.map +0 -7
- package/dist/cjs/grpc/proto/haneul/rpc/v2/name_service.client.d.ts +0 -41
- package/dist/cjs/grpc/proto/haneul/rpc/v2/name_service.client.js +0 -60
- package/dist/cjs/grpc/proto/haneul/rpc/v2/name_service.client.js.map +0 -7
- package/dist/cjs/grpc/proto/haneul/rpc/v2/name_service.d.ts +0 -144
- package/dist/cjs/grpc/proto/haneul/rpc/v2/name_service.js +0 -138
- package/dist/cjs/grpc/proto/haneul/rpc/v2/name_service.js.map +0 -7
- package/dist/cjs/grpc/proto/haneul/rpc/v2/object.d.ts +0 -127
- package/dist/cjs/grpc/proto/haneul/rpc/v2/object.js +0 -113
- package/dist/cjs/grpc/proto/haneul/rpc/v2/object.js.map +0 -7
- package/dist/cjs/grpc/proto/haneul/rpc/v2/object_reference.d.ts +0 -34
- package/dist/cjs/grpc/proto/haneul/rpc/v2/object_reference.js +0 -56
- package/dist/cjs/grpc/proto/haneul/rpc/v2/object_reference.js.map +0 -7
- package/dist/cjs/grpc/proto/haneul/rpc/v2/owner.d.ts +0 -61
- package/dist/cjs/grpc/proto/haneul/rpc/v2/owner.js +0 -65
- package/dist/cjs/grpc/proto/haneul/rpc/v2/owner.js.map +0 -7
- package/dist/cjs/grpc/proto/haneul/rpc/v2/protocol_config.d.ts +0 -30
- package/dist/cjs/grpc/proto/haneul/rpc/v2/protocol_config.js +0 -62
- package/dist/cjs/grpc/proto/haneul/rpc/v2/protocol_config.js.map +0 -7
- package/dist/cjs/grpc/proto/haneul/rpc/v2/signature.d.ts +0 -630
- package/dist/cjs/grpc/proto/haneul/rpc/v2/signature.js +0 -514
- package/dist/cjs/grpc/proto/haneul/rpc/v2/signature.js.map +0 -7
- package/dist/cjs/grpc/proto/haneul/rpc/v2/signature_scheme.d.ts +0 -40
- package/dist/cjs/grpc/proto/haneul/rpc/v2/signature_scheme.js +0 -34
- package/dist/cjs/grpc/proto/haneul/rpc/v2/signature_scheme.js.map +0 -7
- package/dist/cjs/grpc/proto/haneul/rpc/v2/signature_verification_service.client.d.ts +0 -35
- package/dist/cjs/grpc/proto/haneul/rpc/v2/signature_verification_service.client.js +0 -49
- package/dist/cjs/grpc/proto/haneul/rpc/v2/signature_verification_service.client.js.map +0 -7
- package/dist/cjs/grpc/proto/haneul/rpc/v2/signature_verification_service.d.ts +0 -79
- package/dist/cjs/grpc/proto/haneul/rpc/v2/signature_verification_service.js +0 -76
- package/dist/cjs/grpc/proto/haneul/rpc/v2/signature_verification_service.js.map +0 -7
- package/dist/cjs/grpc/proto/haneul/rpc/v2/state_service.client.d.ts +0 -71
- package/dist/cjs/grpc/proto/haneul/rpc/v2/state_service.client.js +0 -99
- package/dist/cjs/grpc/proto/haneul/rpc/v2/state_service.client.js.map +0 -7
- package/dist/cjs/grpc/proto/haneul/rpc/v2/state_service.d.ts +0 -690
- package/dist/cjs/grpc/proto/haneul/rpc/v2/state_service.js +0 -546
- package/dist/cjs/grpc/proto/haneul/rpc/v2/state_service.js.map +0 -7
- package/dist/cjs/grpc/proto/haneul/rpc/v2/subscription_service.client.d.ts +0 -55
- package/dist/cjs/grpc/proto/haneul/rpc/v2/subscription_service.client.js +0 -59
- package/dist/cjs/grpc/proto/haneul/rpc/v2/subscription_service.client.js.map +0 -7
- package/dist/cjs/grpc/proto/haneul/rpc/v2/subscription_service.d.ts +0 -57
- package/dist/cjs/grpc/proto/haneul/rpc/v2/subscription_service.js +0 -63
- package/dist/cjs/grpc/proto/haneul/rpc/v2/subscription_service.js.map +0 -7
- package/dist/cjs/grpc/proto/haneul/rpc/v2/system_state.d.ts +0 -684
- package/dist/cjs/grpc/proto/haneul/rpc/v2/system_state.js +0 -674
- package/dist/cjs/grpc/proto/haneul/rpc/v2/system_state.js.map +0 -7
- package/dist/cjs/grpc/proto/haneul/rpc/v2/transaction.d.ts +0 -1321
- package/dist/cjs/grpc/proto/haneul/rpc/v2/transaction.js +0 -931
- package/dist/cjs/grpc/proto/haneul/rpc/v2/transaction.js.map +0 -7
- package/dist/cjs/grpc/proto/haneul/rpc/v2/transaction_execution_service.client.d.ts +0 -41
- package/dist/cjs/grpc/proto/haneul/rpc/v2/transaction_execution_service.client.js +0 -60
- package/dist/cjs/grpc/proto/haneul/rpc/v2/transaction_execution_service.client.js.map +0 -7
- package/dist/cjs/grpc/proto/haneul/rpc/v2/transaction_execution_service.d.ts +0 -184
- package/dist/cjs/grpc/proto/haneul/rpc/v2/transaction_execution_service.js +0 -159
- package/dist/cjs/grpc/proto/haneul/rpc/v2/transaction_execution_service.js.map +0 -7
- package/dist/cjs/jsonRpc/client.d.ts +0 -264
- package/dist/cjs/jsonRpc/client.js +0 -832
- package/dist/cjs/jsonRpc/client.js.map +0 -7
- package/dist/cjs/jsonRpc/core.d.ts +0 -93
- package/dist/cjs/jsonRpc/core.js +0 -644
- package/dist/cjs/jsonRpc/core.js.map +0 -7
- package/dist/cjs/jsonRpc/errors.d.ts +0 -12
- package/dist/cjs/jsonRpc/errors.js +0 -60
- package/dist/cjs/jsonRpc/errors.js.map +0 -7
- package/dist/cjs/jsonRpc/http-transport.d.ts +0 -42
- package/dist/cjs/jsonRpc/http-transport.js +0 -119
- package/dist/cjs/jsonRpc/http-transport.js.map +0 -7
- package/dist/cjs/jsonRpc/index.d.ts +0 -4
- package/dist/cjs/jsonRpc/index.js +0 -32
- package/dist/cjs/jsonRpc/index.js.map +0 -7
- package/dist/cjs/jsonRpc/json-rpc-resolver.d.ts +0 -4
- package/dist/cjs/jsonRpc/json-rpc-resolver.js +0 -311
- package/dist/cjs/jsonRpc/json-rpc-resolver.js.map +0 -7
- package/dist/cjs/jsonRpc/rpc-websocket-client.d.ts +0 -43
- package/dist/cjs/jsonRpc/rpc-websocket-client.js +0 -194
- package/dist/cjs/jsonRpc/rpc-websocket-client.js.map +0 -7
- package/dist/cjs/jsonRpc/types/chain.d.ts +0 -99
- package/dist/cjs/jsonRpc/types/chain.js +0 -17
- package/dist/cjs/jsonRpc/types/chain.js.map +0 -7
- package/dist/cjs/jsonRpc/types/changes.d.ts +0 -19
- package/dist/cjs/jsonRpc/types/changes.js +0 -17
- package/dist/cjs/jsonRpc/types/changes.js.map +0 -7
- package/dist/cjs/jsonRpc/types/coins.d.ts +0 -6
- package/dist/cjs/jsonRpc/types/coins.js +0 -17
- package/dist/cjs/jsonRpc/types/coins.js.map +0 -7
- package/dist/cjs/jsonRpc/types/common.d.ts +0 -2
- package/dist/cjs/jsonRpc/types/common.js +0 -17
- package/dist/cjs/jsonRpc/types/common.js.map +0 -7
- package/dist/cjs/jsonRpc/types/generated.d.ts +0 -1492
- package/dist/cjs/jsonRpc/types/generated.js +0 -17
- package/dist/cjs/jsonRpc/types/generated.js.map +0 -7
- package/dist/cjs/jsonRpc/types/index.d.ts +0 -6
- package/dist/cjs/jsonRpc/types/index.js +0 -17
- package/dist/cjs/jsonRpc/types/index.js.map +0 -7
- package/dist/cjs/jsonRpc/types/params.d.ts +0 -656
- package/dist/cjs/jsonRpc/types/params.js +0 -17
- package/dist/cjs/jsonRpc/types/params.js.map +0 -7
- package/dist/cjs/keypairs/ed25519/ed25519-hd-key.d.ts +0 -8
- package/dist/cjs/keypairs/ed25519/ed25519-hd-key.js +0 -77
- package/dist/cjs/keypairs/ed25519/ed25519-hd-key.js.map +0 -7
- package/dist/cjs/keypairs/ed25519/index.d.ts +0 -2
- package/dist/cjs/keypairs/ed25519/index.js +0 -28
- package/dist/cjs/keypairs/ed25519/index.js.map +0 -7
- package/dist/cjs/keypairs/ed25519/keypair.d.ts +0 -74
- package/dist/cjs/keypairs/ed25519/keypair.js +0 -162
- package/dist/cjs/keypairs/ed25519/keypair.js.map +0 -7
- package/dist/cjs/keypairs/ed25519/publickey.d.ts +0 -30
- package/dist/cjs/keypairs/ed25519/publickey.js +0 -88
- package/dist/cjs/keypairs/ed25519/publickey.js.map +0 -7
- package/dist/cjs/keypairs/passkey/index.d.ts +0 -3
- package/dist/cjs/keypairs/passkey/index.js +0 -29
- package/dist/cjs/keypairs/passkey/index.js.map +0 -7
- package/dist/cjs/keypairs/passkey/keypair.d.ts +0 -113
- package/dist/cjs/keypairs/passkey/keypair.js +0 -251
- package/dist/cjs/keypairs/passkey/keypair.js.map +0 -7
- package/dist/cjs/keypairs/passkey/publickey.d.ts +0 -72
- package/dist/cjs/keypairs/passkey/publickey.js +0 -168
- package/dist/cjs/keypairs/passkey/publickey.js.map +0 -7
- package/dist/cjs/keypairs/passkey/types.d.ts +0 -12
- package/dist/cjs/keypairs/passkey/types.js +0 -17
- package/dist/cjs/keypairs/passkey/types.js.map +0 -7
- package/dist/cjs/keypairs/secp256k1/index.d.ts +0 -2
- package/dist/cjs/keypairs/secp256k1/index.js +0 -28
- package/dist/cjs/keypairs/secp256k1/index.js.map +0 -7
- package/dist/cjs/keypairs/secp256k1/keypair.d.ts +0 -73
- package/dist/cjs/keypairs/secp256k1/keypair.js +0 -150
- package/dist/cjs/keypairs/secp256k1/keypair.js.map +0 -7
- package/dist/cjs/keypairs/secp256k1/publickey.d.ts +0 -30
- package/dist/cjs/keypairs/secp256k1/publickey.js +0 -93
- package/dist/cjs/keypairs/secp256k1/publickey.js.map +0 -7
- package/dist/cjs/keypairs/secp256r1/index.d.ts +0 -2
- package/dist/cjs/keypairs/secp256r1/index.js +0 -28
- package/dist/cjs/keypairs/secp256r1/index.js.map +0 -7
- package/dist/cjs/keypairs/secp256r1/keypair.d.ts +0 -73
- package/dist/cjs/keypairs/secp256r1/keypair.js +0 -144
- package/dist/cjs/keypairs/secp256r1/keypair.js.map +0 -7
- package/dist/cjs/keypairs/secp256r1/publickey.d.ts +0 -30
- package/dist/cjs/keypairs/secp256r1/publickey.js +0 -94
- package/dist/cjs/keypairs/secp256r1/publickey.js.map +0 -7
- package/dist/cjs/multisig/index.d.ts +0 -2
- package/dist/cjs/multisig/index.js +0 -28
- package/dist/cjs/multisig/index.js.map +0 -7
- package/dist/cjs/multisig/publickey.d.ts +0 -114
- package/dist/cjs/multisig/publickey.js +0 -260
- package/dist/cjs/multisig/publickey.js.map +0 -7
- package/dist/cjs/multisig/signer.d.ts +0 -20
- package/dist/cjs/multisig/signer.js +0 -105
- package/dist/cjs/multisig/signer.js.map +0 -7
- package/dist/cjs/package.json +0 -5
- package/dist/cjs/transactions/Arguments.d.ts +0 -49
- package/dist/cjs/transactions/Arguments.js +0 -33
- package/dist/cjs/transactions/Arguments.js.map +0 -7
- package/dist/cjs/transactions/Commands.d.ts +0 -57
- package/dist/cjs/transactions/Commands.js +0 -140
- package/dist/cjs/transactions/Commands.js.map +0 -7
- package/dist/cjs/transactions/Inputs.d.ts +0 -22
- package/dist/cjs/transactions/Inputs.js +0 -80
- package/dist/cjs/transactions/Inputs.js.map +0 -7
- package/dist/cjs/transactions/ObjectCache.d.ts +0 -83
- package/dist/cjs/transactions/ObjectCache.js +0 -241
- package/dist/cjs/transactions/ObjectCache.js.map +0 -7
- package/dist/cjs/transactions/Transaction.d.ts +0 -710
- package/dist/cjs/transactions/Transaction.js +0 -683
- package/dist/cjs/transactions/Transaction.js.map +0 -7
- package/dist/cjs/transactions/TransactionData.d.ts +0 -73
- package/dist/cjs/transactions/TransactionData.js +0 -433
- package/dist/cjs/transactions/TransactionData.js.map +0 -7
- package/dist/cjs/transactions/__tests__/Transaction.test.d.ts +0 -1
- package/dist/cjs/transactions/__tests__/bcs.test.d.ts +0 -1
- package/dist/cjs/transactions/data/internal.d.ts +0 -1010
- package/dist/cjs/transactions/data/internal.js +0 -216
- package/dist/cjs/transactions/data/internal.js.map +0 -7
- package/dist/cjs/transactions/data/v1.d.ts +0 -312
- package/dist/cjs/transactions/data/v1.js +0 -482
- package/dist/cjs/transactions/data/v1.js.map +0 -7
- package/dist/cjs/transactions/data/v2.d.ts +0 -153
- package/dist/cjs/transactions/data/v2.js +0 -125
- package/dist/cjs/transactions/data/v2.js.map +0 -7
- package/dist/cjs/transactions/executor/caching.d.ts +0 -31
- package/dist/cjs/transactions/executor/caching.js +0 -114
- package/dist/cjs/transactions/executor/caching.js.map +0 -7
- package/dist/cjs/transactions/executor/parallel.d.ts +0 -37
- package/dist/cjs/transactions/executor/parallel.js +0 -380
- package/dist/cjs/transactions/executor/parallel.js.map +0 -7
- package/dist/cjs/transactions/executor/queue.d.ts +0 -11
- package/dist/cjs/transactions/executor/queue.js +0 -85
- package/dist/cjs/transactions/executor/queue.js.map +0 -7
- package/dist/cjs/transactions/executor/serial.d.ts +0 -31
- package/dist/cjs/transactions/executor/serial.js +0 -137
- package/dist/cjs/transactions/executor/serial.js.map +0 -7
- package/dist/cjs/transactions/hash.d.ts +0 -7
- package/dist/cjs/transactions/hash.js +0 -32
- package/dist/cjs/transactions/hash.js.map +0 -7
- package/dist/cjs/transactions/index.d.ts +0 -21
- package/dist/cjs/transactions/index.js +0 -51
- package/dist/cjs/transactions/index.js.map +0 -7
- package/dist/cjs/transactions/intents/CoinWithBalance.d.ts +0 -9
- package/dist/cjs/transactions/intents/CoinWithBalance.js +0 -188
- package/dist/cjs/transactions/intents/CoinWithBalance.js.map +0 -7
- package/dist/cjs/transactions/object.d.ts +0 -16
- package/dist/cjs/transactions/object.js +0 -78
- package/dist/cjs/transactions/object.js.map +0 -7
- package/dist/cjs/transactions/plugins/NamedPackagesPlugin.d.ts +0 -48
- package/dist/cjs/transactions/plugins/NamedPackagesPlugin.js +0 -67
- package/dist/cjs/transactions/plugins/NamedPackagesPlugin.js.map +0 -7
- package/dist/cjs/transactions/pure.d.ts +0 -20
- package/dist/cjs/transactions/pure.js +0 -57
- package/dist/cjs/transactions/pure.js.map +0 -7
- package/dist/cjs/transactions/resolve.d.ts +0 -13
- package/dist/cjs/transactions/resolve.js +0 -98
- package/dist/cjs/transactions/resolve.js.map +0 -7
- package/dist/cjs/transactions/serializer.d.ts +0 -7
- package/dist/cjs/transactions/serializer.js +0 -182
- package/dist/cjs/transactions/serializer.js.map +0 -7
- package/dist/cjs/transactions/utils.d.ts +0 -10
- package/dist/cjs/transactions/utils.js +0 -135
- package/dist/cjs/transactions/utils.js.map +0 -7
- package/dist/cjs/utils/constants.d.ts +0 -10
- package/dist/cjs/utils/constants.js +0 -44
- package/dist/cjs/utils/constants.js.map +0 -7
- package/dist/cjs/utils/derived-objects.d.ts +0 -5
- package/dist/cjs/utils/derived-objects.js +0 -34
- package/dist/cjs/utils/derived-objects.js.map +0 -7
- package/dist/cjs/utils/dynamic-fields.d.ts +0 -2
- package/dist/cjs/utils/dynamic-fields.js +0 -41
- package/dist/cjs/utils/dynamic-fields.js.map +0 -7
- package/dist/cjs/utils/format.d.ts +0 -2
- package/dist/cjs/utils/format.js +0 -36
- package/dist/cjs/utils/format.js.map +0 -7
- package/dist/cjs/utils/haneul-types.d.ts +0 -26
- package/dist/cjs/utils/haneul-types.js +0 -91
- package/dist/cjs/utils/haneul-types.js.map +0 -7
- package/dist/cjs/utils/haneulns.d.ts +0 -2
- package/dist/cjs/utils/haneulns.js +0 -57
- package/dist/cjs/utils/haneulns.js.map +0 -7
- package/dist/cjs/utils/index.d.ts +0 -9
- package/dist/cjs/utils/index.js +0 -69
- package/dist/cjs/utils/index.js.map +0 -7
- package/dist/cjs/utils/move-registry.d.ts +0 -6
- package/dist/cjs/utils/move-registry.js +0 -45
- package/dist/cjs/utils/move-registry.js.map +0 -7
- package/dist/cjs/verify/index.d.ts +0 -1
- package/dist/cjs/verify/index.js +0 -29
- package/dist/cjs/verify/index.js.map +0 -7
- package/dist/cjs/verify/verify.d.ts +0 -21
- package/dist/cjs/verify/verify.js +0 -124
- package/dist/cjs/verify/verify.js.map +0 -7
- package/dist/cjs/version.d.ts +0 -2
- package/dist/cjs/version.js +0 -27
- package/dist/cjs/version.js.map +0 -7
- package/dist/cjs/zklogin/address.d.ts +0 -16
- package/dist/cjs/zklogin/address.js +0 -87
- package/dist/cjs/zklogin/address.js.map +0 -7
- package/dist/cjs/zklogin/bcs.d.ts +0 -28
- package/dist/cjs/zklogin/bcs.js +0 -42
- package/dist/cjs/zklogin/bcs.js.map +0 -7
- package/dist/cjs/zklogin/index.d.ts +0 -9
- package/dist/cjs/zklogin/index.js +0 -46
- package/dist/cjs/zklogin/index.js.map +0 -7
- package/dist/cjs/zklogin/jwt-decode.d.ts +0 -47
- package/dist/cjs/zklogin/jwt-decode.js +0 -85
- package/dist/cjs/zklogin/jwt-decode.js.map +0 -7
- package/dist/cjs/zklogin/jwt-utils.d.ts +0 -12
- package/dist/cjs/zklogin/jwt-utils.js +0 -121
- package/dist/cjs/zklogin/jwt-utils.js.map +0 -7
- package/dist/cjs/zklogin/nonce.d.ts +0 -4
- package/dist/cjs/zklogin/nonce.js +0 -54
- package/dist/cjs/zklogin/nonce.js.map +0 -7
- package/dist/cjs/zklogin/poseidon.d.ts +0 -2
- package/dist/cjs/zklogin/poseidon.js +0 -63
- package/dist/cjs/zklogin/poseidon.js.map +0 -7
- package/dist/cjs/zklogin/publickey.d.ts +0 -87
- package/dist/cjs/zklogin/publickey.js +0 -257
- package/dist/cjs/zklogin/publickey.js.map +0 -7
- package/dist/cjs/zklogin/signature.d.ts +0 -23
- package/dist/cjs/zklogin/signature.js +0 -48
- package/dist/cjs/zklogin/signature.js.map +0 -7
- package/dist/cjs/zklogin/utils.d.ts +0 -16
- package/dist/cjs/zklogin/utils.js +0 -97
- package/dist/cjs/zklogin/utils.js.map +0 -7
- package/dist/esm/bcs/bcs.d.ts +0 -1973
- package/dist/esm/bcs/bcs.js +0 -308
- package/dist/esm/bcs/bcs.js.map +0 -7
- package/dist/esm/bcs/effects.d.ts +0 -579
- package/dist/esm/bcs/effects.js +0 -190
- package/dist/esm/bcs/effects.js.map +0 -7
- package/dist/esm/bcs/index.d.ts +0 -2589
- package/dist/esm/bcs/index.js +0 -94
- package/dist/esm/bcs/index.js.map +0 -7
- package/dist/esm/bcs/pure.d.ts +0 -22
- package/dist/esm/bcs/pure.js +0 -39
- package/dist/esm/bcs/pure.js.map +0 -7
- package/dist/esm/bcs/type-tag-serializer.d.ts +0 -7
- package/dist/esm/bcs/type-tag-serializer.js +0 -97
- package/dist/esm/bcs/type-tag-serializer.js.map +0 -7
- package/dist/esm/bcs/types.d.ts +0 -114
- package/dist/esm/bcs/types.js +0 -7
- package/dist/esm/bcs/types.js.map +0 -7
- package/dist/esm/client/index.d.ts +0 -5
- package/dist/esm/client/index.js +0 -19
- package/dist/esm/client/index.js.map +0 -7
- package/dist/esm/client/network.d.ts +0 -1
- package/dist/esm/client/network.js +0 -18
- package/dist/esm/client/network.js.map +0 -7
- package/dist/esm/cryptography/index.d.ts +0 -7
- package/dist/esm/cryptography/index.js +0 -47
- package/dist/esm/cryptography/index.js.map +0 -7
- package/dist/esm/cryptography/intent.d.ts +0 -6
- package/dist/esm/cryptography/intent.js +0 -15
- package/dist/esm/cryptography/intent.js.map +0 -7
- package/dist/esm/cryptography/keypair.d.ts +0 -72
- package/dist/esm/cryptography/keypair.js +0 -98
- package/dist/esm/cryptography/keypair.js.map +0 -7
- package/dist/esm/cryptography/mnemonics.d.ts +0 -27
- package/dist/esm/cryptography/mnemonics.js +0 -27
- package/dist/esm/cryptography/mnemonics.js.map +0 -7
- package/dist/esm/cryptography/publickey.d.ts +0 -67
- package/dist/esm/cryptography/publickey.js +0 -120
- package/dist/esm/cryptography/publickey.js.map +0 -7
- package/dist/esm/cryptography/signature-scheme.d.ts +0 -24
- package/dist/esm/cryptography/signature-scheme.js +0 -28
- package/dist/esm/cryptography/signature-scheme.js.map +0 -7
- package/dist/esm/cryptography/signature.d.ts +0 -65
- package/dist/esm/cryptography/signature.js +0 -51
- package/dist/esm/cryptography/signature.js.map +0 -7
- package/dist/esm/experimental/cache.d.ts +0 -12
- package/dist/esm/experimental/cache.js +0 -68
- package/dist/esm/experimental/cache.js.map +0 -7
- package/dist/esm/experimental/client.d.ts +0 -12
- package/dist/esm/experimental/client.js +0 -26
- package/dist/esm/experimental/client.js.map +0 -7
- package/dist/esm/experimental/core.d.ts +0 -37
- package/dist/esm/experimental/core.js +0 -94
- package/dist/esm/experimental/core.js.map +0 -7
- package/dist/esm/experimental/errors.d.ts +0 -8
- package/dist/esm/experimental/errors.js +0 -34
- package/dist/esm/experimental/errors.js.map +0 -7
- package/dist/esm/experimental/index.d.ts +0 -7
- package/dist/esm/experimental/index.js +0 -12
- package/dist/esm/experimental/index.js.map +0 -7
- package/dist/esm/experimental/mvr.d.ts +0 -42
- package/dist/esm/experimental/mvr.js +0 -350
- package/dist/esm/experimental/mvr.js.map +0 -7
- package/dist/esm/experimental/transports/utils.d.ts +0 -3
- package/dist/esm/experimental/transports/utils.js +0 -81
- package/dist/esm/experimental/transports/utils.js.map +0 -7
- package/dist/esm/experimental/types.d.ts +0 -434
- package/dist/esm/experimental/types.js +0 -1
- package/dist/esm/experimental/types.js.map +0 -7
- package/dist/esm/faucet/faucet.d.ts +0 -65
- package/dist/esm/faucet/faucet.js +0 -110
- package/dist/esm/faucet/faucet.js.map +0 -7
- package/dist/esm/faucet/index.d.ts +0 -1
- package/dist/esm/faucet/index.js +0 -17
- package/dist/esm/faucet/index.js.map +0 -7
- package/dist/esm/graphql/client.d.ts +0 -50
- package/dist/esm/graphql/client.js +0 -74
- package/dist/esm/graphql/client.js.map +0 -7
- package/dist/esm/graphql/core.d.ts +0 -32
- package/dist/esm/graphql/core.js +0 -469
- package/dist/esm/graphql/core.js.map +0 -7
- package/dist/esm/graphql/generated/2024.1/tada-env.d.ts +0 -11380
- package/dist/esm/graphql/generated/2024.1/tada-env.js +0 -13122
- package/dist/esm/graphql/generated/2024.1/tada-env.js.map +0 -7
- package/dist/esm/graphql/generated/2024.1/tsconfig.tada.js +0 -17
- package/dist/esm/graphql/generated/2024.1/tsconfig.tada.js.map +0 -7
- package/dist/esm/graphql/generated/2024.4/tada-env.d.ts +0 -11496
- package/dist/esm/graphql/generated/2024.4/tada-env.js +0 -13268
- package/dist/esm/graphql/generated/2024.4/tada-env.js.map +0 -7
- package/dist/esm/graphql/generated/2024.4/tsconfig.tada.js +0 -17
- package/dist/esm/graphql/generated/2024.4/tsconfig.tada.js.map +0 -7
- package/dist/esm/graphql/generated/latest/tada-env.d.ts +0 -11128
- package/dist/esm/graphql/generated/latest/tada-env.js +0 -12906
- package/dist/esm/graphql/generated/latest/tada-env.js.map +0 -7
- package/dist/esm/graphql/generated/latest/tsconfig.tada.js +0 -17
- package/dist/esm/graphql/generated/latest/tsconfig.tada.js.map +0 -7
- package/dist/esm/graphql/generated/queries.d.ts +0 -4980
- package/dist/esm/graphql/generated/queries.js +0 -783
- package/dist/esm/graphql/generated/queries.js.map +0 -7
- package/dist/esm/graphql/index.d.ts +0 -1
- package/dist/esm/graphql/index.js +0 -9
- package/dist/esm/graphql/index.js.map +0 -7
- package/dist/esm/graphql/schemas/2024.1/index.d.ts +0 -10
- package/dist/esm/graphql/schemas/2024.1/index.js +0 -9
- package/dist/esm/graphql/schemas/2024.1/index.js.map +0 -7
- package/dist/esm/graphql/schemas/2024.4/index.d.ts +0 -10
- package/dist/esm/graphql/schemas/2024.4/index.js +0 -9
- package/dist/esm/graphql/schemas/2024.4/index.js.map +0 -7
- package/dist/esm/graphql/schemas/latest/index.d.ts +0 -10
- package/dist/esm/graphql/schemas/latest/index.js +0 -9
- package/dist/esm/graphql/schemas/latest/index.js.map +0 -7
- package/dist/esm/graphql/types.d.ts +0 -71
- package/dist/esm/graphql/types.js +0 -1
- package/dist/esm/graphql/types.js.map +0 -7
- package/dist/esm/grpc/client.d.ts +0 -33
- package/dist/esm/grpc/client.js +0 -33
- package/dist/esm/grpc/client.js.map +0 -7
- package/dist/esm/grpc/core.d.ts +0 -30
- package/dist/esm/grpc/core.js +0 -640
- package/dist/esm/grpc/core.js.map +0 -7
- package/dist/esm/grpc/index.d.ts +0 -4
- package/dist/esm/grpc/index.js +0 -7
- package/dist/esm/grpc/index.js.map +0 -7
- package/dist/esm/grpc/proto/google/protobuf/any.d.ts +0 -173
- package/dist/esm/grpc/proto/google/protobuf/any.js +0 -119
- package/dist/esm/grpc/proto/google/protobuf/any.js.map +0 -7
- package/dist/esm/grpc/proto/google/protobuf/duration.d.ts +0 -104
- package/dist/esm/grpc/proto/google/protobuf/duration.js +0 -68
- package/dist/esm/grpc/proto/google/protobuf/duration.js.map +0 -7
- package/dist/esm/grpc/proto/google/protobuf/empty.d.ts +0 -25
- package/dist/esm/grpc/proto/google/protobuf/empty.js +0 -11
- package/dist/esm/grpc/proto/google/protobuf/empty.js.map +0 -7
- package/dist/esm/grpc/proto/google/protobuf/field_mask.d.ts +0 -231
- package/dist/esm/grpc/proto/google/protobuf/field_mask.js +0 -53
- package/dist/esm/grpc/proto/google/protobuf/field_mask.js.map +0 -7
- package/dist/esm/grpc/proto/google/protobuf/struct.d.ts +0 -169
- package/dist/esm/grpc/proto/google/protobuf/struct.js +0 -179
- package/dist/esm/grpc/proto/google/protobuf/struct.js.map +0 -7
- package/dist/esm/grpc/proto/google/protobuf/timestamp.d.ts +0 -145
- package/dist/esm/grpc/proto/google/protobuf/timestamp.js +0 -103
- package/dist/esm/grpc/proto/google/protobuf/timestamp.js.map +0 -7
- package/dist/esm/grpc/proto/google/rpc/error_details.d.ts +0 -525
- package/dist/esm/grpc/proto/google/rpc/error_details.js +0 -312
- package/dist/esm/grpc/proto/google/rpc/error_details.js.map +0 -7
- package/dist/esm/grpc/proto/google/rpc/status.d.ts +0 -46
- package/dist/esm/grpc/proto/google/rpc/status.js +0 -28
- package/dist/esm/grpc/proto/google/rpc/status.js.map +0 -7
- package/dist/esm/grpc/proto/haneul/rpc/v2/argument.d.ts +0 -66
- package/dist/esm/grpc/proto/haneul/rpc/v2/argument.js +0 -51
- package/dist/esm/grpc/proto/haneul/rpc/v2/argument.js.map +0 -7
- package/dist/esm/grpc/proto/haneul/rpc/v2/balance_change.d.ts +0 -34
- package/dist/esm/grpc/proto/haneul/rpc/v2/balance_change.js +0 -36
- package/dist/esm/grpc/proto/haneul/rpc/v2/balance_change.js.map +0 -7
- package/dist/esm/grpc/proto/haneul/rpc/v2/bcs.d.ts +0 -30
- package/dist/esm/grpc/proto/haneul/rpc/v2/bcs.js +0 -28
- package/dist/esm/grpc/proto/haneul/rpc/v2/bcs.js.map +0 -7
- package/dist/esm/grpc/proto/haneul/rpc/v2/checkpoint.d.ts +0 -68
- package/dist/esm/grpc/proto/haneul/rpc/v2/checkpoint.js +0 -44
- package/dist/esm/grpc/proto/haneul/rpc/v2/checkpoint.js.map +0 -7
- package/dist/esm/grpc/proto/haneul/rpc/v2/checkpoint_contents.d.ts +0 -74
- package/dist/esm/grpc/proto/haneul/rpc/v2/checkpoint_contents.js +0 -69
- package/dist/esm/grpc/proto/haneul/rpc/v2/checkpoint_contents.js.map +0 -7
- package/dist/esm/grpc/proto/haneul/rpc/v2/checkpoint_summary.d.ts +0 -195
- package/dist/esm/grpc/proto/haneul/rpc/v2/checkpoint_summary.js +0 -145
- package/dist/esm/grpc/proto/haneul/rpc/v2/checkpoint_summary.js.map +0 -7
- package/dist/esm/grpc/proto/haneul/rpc/v2/effects.d.ts +0 -338
- package/dist/esm/grpc/proto/haneul/rpc/v2/effects.js +0 -274
- package/dist/esm/grpc/proto/haneul/rpc/v2/effects.js.map +0 -7
- package/dist/esm/grpc/proto/haneul/rpc/v2/epoch.d.ts +0 -62
- package/dist/esm/grpc/proto/haneul/rpc/v2/epoch.js +0 -53
- package/dist/esm/grpc/proto/haneul/rpc/v2/epoch.js.map +0 -7
- package/dist/esm/grpc/proto/haneul/rpc/v2/error_reason.d.ts +0 -17
- package/dist/esm/grpc/proto/haneul/rpc/v2/error_reason.js +0 -10
- package/dist/esm/grpc/proto/haneul/rpc/v2/error_reason.js.map +0 -7
- package/dist/esm/grpc/proto/haneul/rpc/v2/event.d.ts +0 -88
- package/dist/esm/grpc/proto/haneul/rpc/v2/event.js +0 -66
- package/dist/esm/grpc/proto/haneul/rpc/v2/event.js.map +0 -7
- package/dist/esm/grpc/proto/haneul/rpc/v2/executed_transaction.d.ts +0 -80
- package/dist/esm/grpc/proto/haneul/rpc/v2/executed_transaction.js +0 -54
- package/dist/esm/grpc/proto/haneul/rpc/v2/executed_transaction.js.map +0 -7
- package/dist/esm/grpc/proto/haneul/rpc/v2/execution_status.d.ts +0 -843
- package/dist/esm/grpc/proto/haneul/rpc/v2/execution_status.js +0 -493
- package/dist/esm/grpc/proto/haneul/rpc/v2/execution_status.js.map +0 -7
- package/dist/esm/grpc/proto/haneul/rpc/v2/gas_cost_summary.d.ts +0 -41
- package/dist/esm/grpc/proto/haneul/rpc/v2/gas_cost_summary.js +0 -44
- package/dist/esm/grpc/proto/haneul/rpc/v2/gas_cost_summary.js.map +0 -7
- package/dist/esm/grpc/proto/haneul/rpc/v2/input.d.ts +0 -98
- package/dist/esm/grpc/proto/haneul/rpc/v2/input.js +0 -70
- package/dist/esm/grpc/proto/haneul/rpc/v2/input.js.map +0 -7
- package/dist/esm/grpc/proto/haneul/rpc/v2/jwk.d.ts +0 -70
- package/dist/esm/grpc/proto/haneul/rpc/v2/jwk.js +0 -68
- package/dist/esm/grpc/proto/haneul/rpc/v2/jwk.js.map +0 -7
- package/dist/esm/grpc/proto/haneul/rpc/v2/ledger_service.client.d.ts +0 -95
- package/dist/esm/grpc/proto/haneul/rpc/v2/ledger_service.client.js +0 -107
- package/dist/esm/grpc/proto/haneul/rpc/v2/ledger_service.client.js.map +0 -7
- package/dist/esm/grpc/proto/haneul/rpc/v2/ledger_service.d.ts +0 -420
- package/dist/esm/grpc/proto/haneul/rpc/v2/ledger_service.js +0 -307
- package/dist/esm/grpc/proto/haneul/rpc/v2/ledger_service.js.map +0 -7
- package/dist/esm/grpc/proto/haneul/rpc/v2/move_package.d.ts +0 -579
- package/dist/esm/grpc/proto/haneul/rpc/v2/move_package.js +0 -460
- package/dist/esm/grpc/proto/haneul/rpc/v2/move_package.js.map +0 -7
- package/dist/esm/grpc/proto/haneul/rpc/v2/move_package_service.client.d.ts +0 -61
- package/dist/esm/grpc/proto/haneul/rpc/v2/move_package_service.client.js +0 -66
- package/dist/esm/grpc/proto/haneul/rpc/v2/move_package_service.client.js.map +0 -7
- package/dist/esm/grpc/proto/haneul/rpc/v2/move_package_service.d.ts +0 -229
- package/dist/esm/grpc/proto/haneul/rpc/v2/move_package_service.js +0 -206
- package/dist/esm/grpc/proto/haneul/rpc/v2/move_package_service.js.map +0 -7
- package/dist/esm/grpc/proto/haneul/rpc/v2/name_service.client.d.ts +0 -41
- package/dist/esm/grpc/proto/haneul/rpc/v2/name_service.client.js +0 -40
- package/dist/esm/grpc/proto/haneul/rpc/v2/name_service.client.js.map +0 -7
- package/dist/esm/grpc/proto/haneul/rpc/v2/name_service.d.ts +0 -144
- package/dist/esm/grpc/proto/haneul/rpc/v2/name_service.js +0 -118
- package/dist/esm/grpc/proto/haneul/rpc/v2/name_service.js.map +0 -7
- package/dist/esm/grpc/proto/haneul/rpc/v2/object.d.ts +0 -127
- package/dist/esm/grpc/proto/haneul/rpc/v2/object.js +0 -93
- package/dist/esm/grpc/proto/haneul/rpc/v2/object.js.map +0 -7
- package/dist/esm/grpc/proto/haneul/rpc/v2/object_reference.d.ts +0 -34
- package/dist/esm/grpc/proto/haneul/rpc/v2/object_reference.js +0 -36
- package/dist/esm/grpc/proto/haneul/rpc/v2/object_reference.js.map +0 -7
- package/dist/esm/grpc/proto/haneul/rpc/v2/owner.d.ts +0 -61
- package/dist/esm/grpc/proto/haneul/rpc/v2/owner.js +0 -45
- package/dist/esm/grpc/proto/haneul/rpc/v2/owner.js.map +0 -7
- package/dist/esm/grpc/proto/haneul/rpc/v2/protocol_config.d.ts +0 -30
- package/dist/esm/grpc/proto/haneul/rpc/v2/protocol_config.js +0 -42
- package/dist/esm/grpc/proto/haneul/rpc/v2/protocol_config.js.map +0 -7
- package/dist/esm/grpc/proto/haneul/rpc/v2/signature.d.ts +0 -630
- package/dist/esm/grpc/proto/haneul/rpc/v2/signature.js +0 -494
- package/dist/esm/grpc/proto/haneul/rpc/v2/signature.js.map +0 -7
- package/dist/esm/grpc/proto/haneul/rpc/v2/signature_scheme.d.ts +0 -40
- package/dist/esm/grpc/proto/haneul/rpc/v2/signature_scheme.js +0 -14
- package/dist/esm/grpc/proto/haneul/rpc/v2/signature_scheme.js.map +0 -7
- package/dist/esm/grpc/proto/haneul/rpc/v2/signature_verification_service.client.d.ts +0 -35
- package/dist/esm/grpc/proto/haneul/rpc/v2/signature_verification_service.client.js +0 -29
- package/dist/esm/grpc/proto/haneul/rpc/v2/signature_verification_service.client.js.map +0 -7
- package/dist/esm/grpc/proto/haneul/rpc/v2/signature_verification_service.d.ts +0 -79
- package/dist/esm/grpc/proto/haneul/rpc/v2/signature_verification_service.js +0 -56
- package/dist/esm/grpc/proto/haneul/rpc/v2/signature_verification_service.js.map +0 -7
- package/dist/esm/grpc/proto/haneul/rpc/v2/state_service.client.d.ts +0 -71
- package/dist/esm/grpc/proto/haneul/rpc/v2/state_service.client.js +0 -79
- package/dist/esm/grpc/proto/haneul/rpc/v2/state_service.client.js.map +0 -7
- package/dist/esm/grpc/proto/haneul/rpc/v2/state_service.d.ts +0 -690
- package/dist/esm/grpc/proto/haneul/rpc/v2/state_service.js +0 -526
- package/dist/esm/grpc/proto/haneul/rpc/v2/state_service.js.map +0 -7
- package/dist/esm/grpc/proto/haneul/rpc/v2/subscription_service.client.d.ts +0 -55
- package/dist/esm/grpc/proto/haneul/rpc/v2/subscription_service.client.js +0 -39
- package/dist/esm/grpc/proto/haneul/rpc/v2/subscription_service.client.js.map +0 -7
- package/dist/esm/grpc/proto/haneul/rpc/v2/subscription_service.d.ts +0 -57
- package/dist/esm/grpc/proto/haneul/rpc/v2/subscription_service.js +0 -43
- package/dist/esm/grpc/proto/haneul/rpc/v2/subscription_service.js.map +0 -7
- package/dist/esm/grpc/proto/haneul/rpc/v2/system_state.d.ts +0 -684
- package/dist/esm/grpc/proto/haneul/rpc/v2/system_state.js +0 -654
- package/dist/esm/grpc/proto/haneul/rpc/v2/system_state.js.map +0 -7
- package/dist/esm/grpc/proto/haneul/rpc/v2/transaction.d.ts +0 -1321
- package/dist/esm/grpc/proto/haneul/rpc/v2/transaction.js +0 -911
- package/dist/esm/grpc/proto/haneul/rpc/v2/transaction.js.map +0 -7
- package/dist/esm/grpc/proto/haneul/rpc/v2/transaction_execution_service.client.d.ts +0 -41
- package/dist/esm/grpc/proto/haneul/rpc/v2/transaction_execution_service.client.js +0 -40
- package/dist/esm/grpc/proto/haneul/rpc/v2/transaction_execution_service.client.js.map +0 -7
- package/dist/esm/grpc/proto/haneul/rpc/v2/transaction_execution_service.d.ts +0 -184
- package/dist/esm/grpc/proto/haneul/rpc/v2/transaction_execution_service.js +0 -139
- package/dist/esm/grpc/proto/haneul/rpc/v2/transaction_execution_service.js.map +0 -7
- package/dist/esm/jsonRpc/client.d.ts +0 -264
- package/dist/esm/jsonRpc/client.js +0 -818
- package/dist/esm/jsonRpc/client.js.map +0 -7
- package/dist/esm/jsonRpc/core.d.ts +0 -93
- package/dist/esm/jsonRpc/core.js +0 -624
- package/dist/esm/jsonRpc/core.js.map +0 -7
- package/dist/esm/jsonRpc/errors.d.ts +0 -12
- package/dist/esm/jsonRpc/errors.js +0 -40
- package/dist/esm/jsonRpc/errors.js.map +0 -7
- package/dist/esm/jsonRpc/http-transport.d.ts +0 -42
- package/dist/esm/jsonRpc/http-transport.js +0 -99
- package/dist/esm/jsonRpc/http-transport.js.map +0 -7
- package/dist/esm/jsonRpc/index.d.ts +0 -4
- package/dist/esm/jsonRpc/index.js +0 -17
- package/dist/esm/jsonRpc/index.js.map +0 -7
- package/dist/esm/jsonRpc/json-rpc-resolver.d.ts +0 -4
- package/dist/esm/jsonRpc/json-rpc-resolver.js +0 -295
- package/dist/esm/jsonRpc/json-rpc-resolver.js.map +0 -7
- package/dist/esm/jsonRpc/rpc-websocket-client.d.ts +0 -43
- package/dist/esm/jsonRpc/rpc-websocket-client.js +0 -174
- package/dist/esm/jsonRpc/rpc-websocket-client.js.map +0 -7
- package/dist/esm/jsonRpc/types/chain.d.ts +0 -99
- package/dist/esm/jsonRpc/types/chain.js +0 -1
- package/dist/esm/jsonRpc/types/chain.js.map +0 -7
- package/dist/esm/jsonRpc/types/changes.d.ts +0 -19
- package/dist/esm/jsonRpc/types/changes.js +0 -1
- package/dist/esm/jsonRpc/types/changes.js.map +0 -7
- package/dist/esm/jsonRpc/types/coins.d.ts +0 -6
- package/dist/esm/jsonRpc/types/coins.js +0 -1
- package/dist/esm/jsonRpc/types/coins.js.map +0 -7
- package/dist/esm/jsonRpc/types/common.d.ts +0 -2
- package/dist/esm/jsonRpc/types/common.js +0 -1
- package/dist/esm/jsonRpc/types/common.js.map +0 -7
- package/dist/esm/jsonRpc/types/generated.d.ts +0 -1492
- package/dist/esm/jsonRpc/types/generated.js +0 -1
- package/dist/esm/jsonRpc/types/generated.js.map +0 -7
- package/dist/esm/jsonRpc/types/index.d.ts +0 -6
- package/dist/esm/jsonRpc/types/index.js +0 -1
- package/dist/esm/jsonRpc/types/index.js.map +0 -7
- package/dist/esm/jsonRpc/types/params.d.ts +0 -656
- package/dist/esm/jsonRpc/types/params.js +0 -1
- package/dist/esm/jsonRpc/types/params.js.map +0 -7
- package/dist/esm/keypairs/ed25519/ed25519-hd-key.d.ts +0 -8
- package/dist/esm/keypairs/ed25519/ed25519-hd-key.js +0 -57
- package/dist/esm/keypairs/ed25519/ed25519-hd-key.js.map +0 -7
- package/dist/esm/keypairs/ed25519/index.d.ts +0 -2
- package/dist/esm/keypairs/ed25519/index.js +0 -11
- package/dist/esm/keypairs/ed25519/index.js.map +0 -7
- package/dist/esm/keypairs/ed25519/keypair.d.ts +0 -74
- package/dist/esm/keypairs/ed25519/keypair.js +0 -147
- package/dist/esm/keypairs/ed25519/keypair.js.map +0 -7
- package/dist/esm/keypairs/ed25519/publickey.d.ts +0 -30
- package/dist/esm/keypairs/ed25519/publickey.js +0 -72
- package/dist/esm/keypairs/ed25519/publickey.js.map +0 -7
- package/dist/esm/keypairs/passkey/index.d.ts +0 -3
- package/dist/esm/keypairs/passkey/index.js +0 -9
- package/dist/esm/keypairs/passkey/index.js.map +0 -7
- package/dist/esm/keypairs/passkey/keypair.d.ts +0 -113
- package/dist/esm/keypairs/passkey/keypair.js +0 -236
- package/dist/esm/keypairs/passkey/keypair.js.map +0 -7
- package/dist/esm/keypairs/passkey/publickey.d.ts +0 -72
- package/dist/esm/keypairs/passkey/publickey.js +0 -148
- package/dist/esm/keypairs/passkey/publickey.js.map +0 -7
- package/dist/esm/keypairs/passkey/types.d.ts +0 -12
- package/dist/esm/keypairs/passkey/types.js +0 -1
- package/dist/esm/keypairs/passkey/types.js.map +0 -7
- package/dist/esm/keypairs/secp256k1/index.d.ts +0 -2
- package/dist/esm/keypairs/secp256k1/index.js +0 -11
- package/dist/esm/keypairs/secp256k1/index.js.map +0 -7
- package/dist/esm/keypairs/secp256k1/keypair.d.ts +0 -73
- package/dist/esm/keypairs/secp256k1/keypair.js +0 -130
- package/dist/esm/keypairs/secp256k1/keypair.js.map +0 -7
- package/dist/esm/keypairs/secp256k1/publickey.d.ts +0 -30
- package/dist/esm/keypairs/secp256k1/publickey.js +0 -77
- package/dist/esm/keypairs/secp256k1/publickey.js.map +0 -7
- package/dist/esm/keypairs/secp256r1/index.d.ts +0 -2
- package/dist/esm/keypairs/secp256r1/index.js +0 -11
- package/dist/esm/keypairs/secp256r1/index.js.map +0 -7
- package/dist/esm/keypairs/secp256r1/keypair.d.ts +0 -73
- package/dist/esm/keypairs/secp256r1/keypair.js +0 -124
- package/dist/esm/keypairs/secp256r1/keypair.js.map +0 -7
- package/dist/esm/keypairs/secp256r1/publickey.d.ts +0 -30
- package/dist/esm/keypairs/secp256r1/publickey.js +0 -74
- package/dist/esm/keypairs/secp256r1/publickey.js.map +0 -7
- package/dist/esm/multisig/index.d.ts +0 -2
- package/dist/esm/multisig/index.js +0 -8
- package/dist/esm/multisig/index.js.map +0 -7
- package/dist/esm/multisig/publickey.d.ts +0 -114
- package/dist/esm/multisig/publickey.js +0 -243
- package/dist/esm/multisig/publickey.js.map +0 -7
- package/dist/esm/multisig/signer.d.ts +0 -20
- package/dist/esm/multisig/signer.js +0 -85
- package/dist/esm/multisig/signer.js.map +0 -7
- package/dist/esm/package.json +0 -5
- package/dist/esm/transactions/Arguments.d.ts +0 -49
- package/dist/esm/transactions/Arguments.js +0 -13
- package/dist/esm/transactions/Arguments.js.map +0 -7
- package/dist/esm/transactions/Commands.d.ts +0 -57
- package/dist/esm/transactions/Commands.js +0 -120
- package/dist/esm/transactions/Commands.js.map +0 -7
- package/dist/esm/transactions/Inputs.d.ts +0 -22
- package/dist/esm/transactions/Inputs.js +0 -60
- package/dist/esm/transactions/Inputs.js.map +0 -7
- package/dist/esm/transactions/ObjectCache.d.ts +0 -83
- package/dist/esm/transactions/ObjectCache.js +0 -221
- package/dist/esm/transactions/ObjectCache.js.map +0 -7
- package/dist/esm/transactions/Transaction.d.ts +0 -710
- package/dist/esm/transactions/Transaction.js +0 -668
- package/dist/esm/transactions/Transaction.js.map +0 -7
- package/dist/esm/transactions/TransactionData.d.ts +0 -73
- package/dist/esm/transactions/TransactionData.js +0 -413
- package/dist/esm/transactions/TransactionData.js.map +0 -7
- package/dist/esm/transactions/__tests__/Transaction.test.d.ts +0 -1
- package/dist/esm/transactions/__tests__/bcs.test.d.ts +0 -1
- package/dist/esm/transactions/data/internal.d.ts +0 -1010
- package/dist/esm/transactions/data/internal.js +0 -215
- package/dist/esm/transactions/data/internal.js.map +0 -7
- package/dist/esm/transactions/data/v1.d.ts +0 -312
- package/dist/esm/transactions/data/v1.js +0 -481
- package/dist/esm/transactions/data/v1.js.map +0 -7
- package/dist/esm/transactions/data/v2.d.ts +0 -153
- package/dist/esm/transactions/data/v2.js +0 -121
- package/dist/esm/transactions/data/v2.js.map +0 -7
- package/dist/esm/transactions/executor/caching.d.ts +0 -31
- package/dist/esm/transactions/executor/caching.js +0 -94
- package/dist/esm/transactions/executor/caching.js.map +0 -7
- package/dist/esm/transactions/executor/parallel.d.ts +0 -37
- package/dist/esm/transactions/executor/parallel.js +0 -360
- package/dist/esm/transactions/executor/parallel.js.map +0 -7
- package/dist/esm/transactions/executor/queue.d.ts +0 -11
- package/dist/esm/transactions/executor/queue.js +0 -65
- package/dist/esm/transactions/executor/queue.js.map +0 -7
- package/dist/esm/transactions/executor/serial.d.ts +0 -31
- package/dist/esm/transactions/executor/serial.js +0 -117
- package/dist/esm/transactions/executor/serial.js.map +0 -7
- package/dist/esm/transactions/hash.d.ts +0 -7
- package/dist/esm/transactions/hash.js +0 -12
- package/dist/esm/transactions/hash.js.map +0 -7
- package/dist/esm/transactions/index.d.ts +0 -21
- package/dist/esm/transactions/index.js +0 -39
- package/dist/esm/transactions/index.js.map +0 -7
- package/dist/esm/transactions/intents/CoinWithBalance.d.ts +0 -9
- package/dist/esm/transactions/intents/CoinWithBalance.js +0 -168
- package/dist/esm/transactions/intents/CoinWithBalance.js.map +0 -7
- package/dist/esm/transactions/object.d.ts +0 -16
- package/dist/esm/transactions/object.js +0 -58
- package/dist/esm/transactions/object.js.map +0 -7
- package/dist/esm/transactions/plugins/NamedPackagesPlugin.d.ts +0 -48
- package/dist/esm/transactions/plugins/NamedPackagesPlugin.js +0 -47
- package/dist/esm/transactions/plugins/NamedPackagesPlugin.js.map +0 -7
- package/dist/esm/transactions/pure.d.ts +0 -20
- package/dist/esm/transactions/pure.js +0 -37
- package/dist/esm/transactions/pure.js.map +0 -7
- package/dist/esm/transactions/resolve.d.ts +0 -13
- package/dist/esm/transactions/resolve.js +0 -78
- package/dist/esm/transactions/resolve.js.map +0 -7
- package/dist/esm/transactions/serializer.d.ts +0 -7
- package/dist/esm/transactions/serializer.js +0 -162
- package/dist/esm/transactions/serializer.js.map +0 -7
- package/dist/esm/transactions/utils.d.ts +0 -10
- package/dist/esm/transactions/utils.js +0 -115
- package/dist/esm/transactions/utils.js.map +0 -7
- package/dist/esm/utils/constants.d.ts +0 -10
- package/dist/esm/utils/constants.js +0 -24
- package/dist/esm/utils/constants.js.map +0 -7
- package/dist/esm/utils/derived-objects.d.ts +0 -5
- package/dist/esm/utils/derived-objects.js +0 -14
- package/dist/esm/utils/derived-objects.js.map +0 -7
- package/dist/esm/utils/dynamic-fields.d.ts +0 -2
- package/dist/esm/utils/dynamic-fields.js +0 -21
- package/dist/esm/utils/dynamic-fields.js.map +0 -7
- package/dist/esm/utils/format.d.ts +0 -2
- package/dist/esm/utils/format.js +0 -16
- package/dist/esm/utils/format.js.map +0 -7
- package/dist/esm/utils/haneul-types.d.ts +0 -26
- package/dist/esm/utils/haneul-types.js +0 -71
- package/dist/esm/utils/haneul-types.js.map +0 -7
- package/dist/esm/utils/haneulns.d.ts +0 -2
- package/dist/esm/utils/haneulns.js +0 -37
- package/dist/esm/utils/haneulns.js.map +0 -7
- package/dist/esm/utils/index.d.ts +0 -9
- package/dist/esm/utils/index.js +0 -80
- package/dist/esm/utils/index.js.map +0 -7
- package/dist/esm/utils/move-registry.d.ts +0 -6
- package/dist/esm/utils/move-registry.js +0 -25
- package/dist/esm/utils/move-registry.js.map +0 -7
- package/dist/esm/verify/index.d.ts +0 -1
- package/dist/esm/verify/index.js +0 -15
- package/dist/esm/verify/index.js.map +0 -7
- package/dist/esm/verify/verify.d.ts +0 -21
- package/dist/esm/verify/verify.js +0 -104
- package/dist/esm/verify/verify.js.map +0 -7
- package/dist/esm/version.d.ts +0 -2
- package/dist/esm/version.js +0 -7
- package/dist/esm/version.js.map +0 -7
- package/dist/esm/zklogin/address.d.ts +0 -16
- package/dist/esm/zklogin/address.js +0 -72
- package/dist/esm/zklogin/address.js.map +0 -7
- package/dist/esm/zklogin/bcs.d.ts +0 -28
- package/dist/esm/zklogin/bcs.js +0 -22
- package/dist/esm/zklogin/bcs.js.map +0 -7
- package/dist/esm/zklogin/index.d.ts +0 -9
- package/dist/esm/zklogin/index.js +0 -35
- package/dist/esm/zklogin/index.js.map +0 -7
- package/dist/esm/zklogin/jwt-decode.d.ts +0 -47
- package/dist/esm/zklogin/jwt-decode.js +0 -65
- package/dist/esm/zklogin/jwt-decode.js.map +0 -7
- package/dist/esm/zklogin/jwt-utils.d.ts +0 -12
- package/dist/esm/zklogin/jwt-utils.js +0 -101
- package/dist/esm/zklogin/jwt-utils.js.map +0 -7
- package/dist/esm/zklogin/nonce.d.ts +0 -4
- package/dist/esm/zklogin/nonce.js +0 -34
- package/dist/esm/zklogin/nonce.js.map +0 -7
- package/dist/esm/zklogin/poseidon.d.ts +0 -2
- package/dist/esm/zklogin/poseidon.js +0 -60
- package/dist/esm/zklogin/poseidon.js.map +0 -7
- package/dist/esm/zklogin/publickey.d.ts +0 -87
- package/dist/esm/zklogin/publickey.js +0 -237
- package/dist/esm/zklogin/publickey.js.map +0 -7
- package/dist/esm/zklogin/signature.d.ts +0 -23
- package/dist/esm/zklogin/signature.js +0 -28
- package/dist/esm/zklogin/signature.js.map +0 -7
- package/dist/esm/zklogin/utils.d.ts +0 -16
- package/dist/esm/zklogin/utils.js +0 -77
- package/dist/esm/zklogin/utils.js.map +0 -7
- package/dist/tsconfig.esm.tsbuildinfo +0 -1
- package/dist/tsconfig.tsbuildinfo +0 -1
- package/experimental/package.json +0 -6
- package/faucet/package.json +0 -6
- package/graphql/package.json +0 -6
- package/graphql/schemas/2024.1/package.json +0 -6
- package/graphql/schemas/2024.4/package.json +0 -6
- package/graphql/schemas/latest/package.json +0 -6
- package/grpc/package.json +0 -6
- package/jsonRpc/package.json +0 -6
- package/keypairs/ed25519/package.json +0 -6
- package/keypairs/passkey/package.json +0 -6
- package/keypairs/secp256k1/package.json +0 -6
- package/keypairs/secp256r1/package.json +0 -6
- package/multisig/package.json +0 -6
- package/src/client/network.ts +0 -17
- package/src/experimental/client.ts +0 -60
- package/src/experimental/core.ts +0 -197
- package/src/experimental/errors.ts +0 -37
- package/src/experimental/index.ts +0 -24
- package/src/experimental/mvr.ts +0 -488
- package/src/experimental/transports/utils.ts +0 -117
- package/src/experimental/types.ts +0 -569
- package/src/graphql/generated/2024.1/schema.graphql +0 -4182
- package/src/graphql/generated/2024.1/tada-env.ts +0 -13144
- package/src/graphql/generated/2024.1/tsconfig.tada.json +0 -11
- package/src/graphql/generated/2024.4/schema.graphql +0 -4211
- package/src/graphql/generated/2024.4/tada-env.ts +0 -13290
- package/src/graphql/generated/2024.4/tsconfig.tada.json +0 -11
- package/src/graphql/generated/latest/schema.graphql +0 -4312
- package/src/graphql/generated/latest/tada-env.ts +0 -12928
- package/src/graphql/generated/latest/tsconfig.tada.json +0 -11
- package/src/graphql/schemas/2024.1/index.ts +0 -17
- package/src/graphql/schemas/2024.4/index.ts +0 -17
- package/src/graphql/schemas/latest/index.ts +0 -17
- package/src/jsonRpc/json-rpc-resolver.ts +0 -420
- package/transactions/package.json +0 -6
- package/utils/package.json +0 -6
- package/verify/package.json +0 -6
- package/zklogin/package.json +0 -6
- /package/src/{experimental → client}/cache.ts +0 -0
|
@@ -26,8 +26,6 @@ export type Scalars = {
|
|
|
26
26
|
BigInt: { input: string; output: string; }
|
|
27
27
|
/** 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. */
|
|
28
28
|
DateTime: { input: string; output: string; }
|
|
29
|
-
/** 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). */
|
|
30
|
-
HaneulAddress: { input: string; output: string; }
|
|
31
29
|
/** Arbitrary JSON data. */
|
|
32
30
|
JSON: { input: unknown; output: unknown; }
|
|
33
31
|
/**
|
|
@@ -96,6 +94,8 @@ export type Scalars = {
|
|
|
96
94
|
* | { typeParameter: number }
|
|
97
95
|
*/
|
|
98
96
|
OpenMoveTypeSignature: { input: OpenMoveTypeSignature; output: OpenMoveTypeSignature; }
|
|
97
|
+
/** 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). */
|
|
98
|
+
HaneulAddress: { input: string; output: string; }
|
|
99
99
|
/** 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. */
|
|
100
100
|
UInt53: { input: number; output: number; }
|
|
101
101
|
};
|
|
@@ -144,10 +144,16 @@ export type ActiveJwkEdge = {
|
|
|
144
144
|
node: ActiveJwk;
|
|
145
145
|
};
|
|
146
146
|
|
|
147
|
-
export type Address = IAddressable & {
|
|
147
|
+
export type Address = IAddressable & Node & {
|
|
148
148
|
__typename?: 'Address';
|
|
149
149
|
/** The Address' identifier, a 32-byte number represented as a 64-character hex string, with a lead "0x". */
|
|
150
150
|
address: Scalars['HaneulAddress']['output'];
|
|
151
|
+
/**
|
|
152
|
+
* Fetch the address as it was at a different root version, or checkpoint.
|
|
153
|
+
*
|
|
154
|
+
* If no additional bound is provided, the address is fetched at the latest checkpoint known to the RPC.
|
|
155
|
+
*/
|
|
156
|
+
addressAt?: Maybe<Address>;
|
|
151
157
|
/** Attempts to fetch the object at this address. */
|
|
152
158
|
asObject?: Maybe<Object>;
|
|
153
159
|
/**
|
|
@@ -159,8 +165,8 @@ export type Address = IAddressable & {
|
|
|
159
165
|
balance?: Maybe<Balance>;
|
|
160
166
|
/** Total balance across coins owned by this address, grouped by coin type. */
|
|
161
167
|
balances?: Maybe<BalanceConnection>;
|
|
162
|
-
/** The domain explicitly configured as the default
|
|
163
|
-
|
|
168
|
+
/** The domain explicitly configured as the default Name Service name for this address. */
|
|
169
|
+
defaultNameRecord?: Maybe<NameRecord>;
|
|
164
170
|
/**
|
|
165
171
|
* Access a dynamic field on an object using its type and BCS-encoded name.
|
|
166
172
|
*
|
|
@@ -179,6 +185,8 @@ export type Address = IAddressable & {
|
|
|
179
185
|
* Returns `null` if a dynamic object field with that name could not be found attached to the object with this address.
|
|
180
186
|
*/
|
|
181
187
|
dynamicObjectField?: Maybe<DynamicField>;
|
|
188
|
+
/** The address's globally unique identifier, which can be passed to `Query.node` to refetch it. */
|
|
189
|
+
id: Scalars['ID']['output'];
|
|
182
190
|
/**
|
|
183
191
|
* Fetch the total balances keyed by coin types (e.g. `0x2::haneul::HANEUL`) owned by this address.
|
|
184
192
|
*
|
|
@@ -209,6 +217,12 @@ export type Address = IAddressable & {
|
|
|
209
217
|
};
|
|
210
218
|
|
|
211
219
|
|
|
220
|
+
export type AddressAddressAtArgs = {
|
|
221
|
+
checkpoint?: InputMaybe<Scalars['UInt53']['input']>;
|
|
222
|
+
rootVersion?: InputMaybe<Scalars['UInt53']['input']>;
|
|
223
|
+
};
|
|
224
|
+
|
|
225
|
+
|
|
212
226
|
export type AddressBalanceArgs = {
|
|
213
227
|
coinType: Scalars['String']['input'];
|
|
214
228
|
};
|
|
@@ -280,6 +294,24 @@ export type AddressAliasStateCreateTransaction = {
|
|
|
280
294
|
_?: Maybe<Scalars['Boolean']['output']>;
|
|
281
295
|
};
|
|
282
296
|
|
|
297
|
+
/**
|
|
298
|
+
* Identifies a specific version of an address.
|
|
299
|
+
*
|
|
300
|
+
* Exactly one of `address` or `name` must be specified. Additionally, at most one of `rootVersion` or `atCheckpoint` can be specified. If neither bound is provided, the address is fetched at the checkpoint being viewed.
|
|
301
|
+
*
|
|
302
|
+
* See `Query.address` for more details.
|
|
303
|
+
*/
|
|
304
|
+
export type AddressKey = {
|
|
305
|
+
/** The address. */
|
|
306
|
+
address?: InputMaybe<Scalars['HaneulAddress']['input']>;
|
|
307
|
+
/** If specified, sets a checkpoint bound for this address. */
|
|
308
|
+
atCheckpoint?: InputMaybe<Scalars['UInt53']['input']>;
|
|
309
|
+
/** A HaneulNS name to resolve to an address. */
|
|
310
|
+
name?: InputMaybe<Scalars['String']['input']>;
|
|
311
|
+
/** If specified, sets a root version bound for this address. */
|
|
312
|
+
rootVersion?: InputMaybe<Scalars['UInt53']['input']>;
|
|
313
|
+
};
|
|
314
|
+
|
|
283
315
|
/** Object is exclusively owned by a single address, and is mutable. */
|
|
284
316
|
export type AddressOwner = {
|
|
285
317
|
__typename?: 'AddressOwner';
|
|
@@ -343,9 +375,13 @@ export type AvailableRange = {
|
|
|
343
375
|
/** The total balance for a particular coin type. */
|
|
344
376
|
export type Balance = {
|
|
345
377
|
__typename?: 'Balance';
|
|
378
|
+
/** The balance as tracked by the accumulator object for the address. */
|
|
379
|
+
addressBalance?: Maybe<Scalars['BigInt']['output']>;
|
|
380
|
+
/** Total balance across all owned coin objects of the coin type. */
|
|
381
|
+
coinBalance?: Maybe<Scalars['BigInt']['output']>;
|
|
346
382
|
/** Coin type for the balance, such as `0x2::haneul::HANEUL`. */
|
|
347
383
|
coinType?: Maybe<MoveType>;
|
|
348
|
-
/** The total balance
|
|
384
|
+
/** The sum total of the accumulator balance and individual coin balances owned by the address. */
|
|
349
385
|
totalBalance?: Maybe<Scalars['BigInt']['output']>;
|
|
350
386
|
};
|
|
351
387
|
|
|
@@ -398,6 +434,17 @@ export type BalanceEdge = {
|
|
|
398
434
|
node: Balance;
|
|
399
435
|
};
|
|
400
436
|
|
|
437
|
+
/** Input for withdrawing funds from an accumulator. */
|
|
438
|
+
export type BalanceWithdraw = {
|
|
439
|
+
__typename?: 'BalanceWithdraw';
|
|
440
|
+
/** How much to withdraw from the accumulator. */
|
|
441
|
+
reservation?: Maybe<WithdrawalReservation>;
|
|
442
|
+
/** The type of the funds accumulator to withdraw from (e.g. `0x2::balance::Balance<0x2::haneul::HANEUL>`). */
|
|
443
|
+
type?: Maybe<MoveType>;
|
|
444
|
+
/** The account to withdraw funds from. */
|
|
445
|
+
withdrawFrom?: Maybe<WithdrawFrom>;
|
|
446
|
+
};
|
|
447
|
+
|
|
401
448
|
/** System transaction for initializing bridge committee. */
|
|
402
449
|
export type BridgeCommitteeInitTransaction = {
|
|
403
450
|
__typename?: 'BridgeCommitteeInitTransaction';
|
|
@@ -451,7 +498,7 @@ export type ChangeEpochTransactionSystemPackagesArgs = {
|
|
|
451
498
|
};
|
|
452
499
|
|
|
453
500
|
/** Checkpoints contain finalized transactions and are used for node synchronization and global transaction ordering. */
|
|
454
|
-
export type Checkpoint = {
|
|
501
|
+
export type Checkpoint = Node & {
|
|
455
502
|
__typename?: 'Checkpoint';
|
|
456
503
|
/**
|
|
457
504
|
* A commitment by the committee at each checkpoint on the artifacts of the checkpoint.
|
|
@@ -466,6 +513,8 @@ export type Checkpoint = {
|
|
|
466
513
|
digest?: Maybe<Scalars['String']['output']>;
|
|
467
514
|
/** The epoch that this checkpoint is part of. */
|
|
468
515
|
epoch?: Maybe<Epoch>;
|
|
516
|
+
/** The checkpoint's globally unique identifier, which can be passed to `Query.node` to refetch it. */
|
|
517
|
+
id: Scalars['ID']['output'];
|
|
469
518
|
/** The total number of transactions in the network by the end of this checkpoint. */
|
|
470
519
|
networkTotalTransactions?: Maybe<Scalars['UInt53']['output']>;
|
|
471
520
|
/** The digest of the previous checkpoint's summary. */
|
|
@@ -537,6 +586,12 @@ export type CoinMetadata = IAddressable & IMoveObject & IObject & {
|
|
|
537
586
|
__typename?: 'CoinMetadata';
|
|
538
587
|
/** The CoinMetadata's ID. */
|
|
539
588
|
address: Scalars['HaneulAddress']['output'];
|
|
589
|
+
/**
|
|
590
|
+
* Fetch the address as it was at a different root version, or checkpoint.
|
|
591
|
+
*
|
|
592
|
+
* If no additional bound is provided, the address is fetched at the latest checkpoint known to the RPC.
|
|
593
|
+
*/
|
|
594
|
+
addressAt?: Maybe<Address>;
|
|
540
595
|
/** 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. */
|
|
541
596
|
allowGlobalPause?: Maybe<Scalars['Boolean']['output']>;
|
|
542
597
|
/**
|
|
@@ -551,8 +606,8 @@ export type CoinMetadata = IAddressable & IMoveObject & IObject & {
|
|
|
551
606
|
contents?: Maybe<MoveValue>;
|
|
552
607
|
/** Number of decimal places the coin uses. */
|
|
553
608
|
decimals?: Maybe<Scalars['Int']['output']>;
|
|
554
|
-
/** The domain explicitly configured as the default
|
|
555
|
-
|
|
609
|
+
/** The domain explicitly configured as the default Name Service name for this address. */
|
|
610
|
+
defaultNameRecord?: Maybe<NameRecord>;
|
|
556
611
|
/** 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. */
|
|
557
612
|
denyCap?: Maybe<MoveObject>;
|
|
558
613
|
/** Description of the coin. */
|
|
@@ -625,7 +680,7 @@ export type CoinMetadata = IAddressable & IMoveObject & IObject & {
|
|
|
625
680
|
receivedTransactions?: Maybe<TransactionConnection>;
|
|
626
681
|
/** Whether the currency is regulated or not. `null` indicates that the regulatory status is unknown. */
|
|
627
682
|
regulatedState?: Maybe<RegulatedState>;
|
|
628
|
-
/** The
|
|
683
|
+
/** The HANEUL returned to the sponsor or sender of the transaction that modifies or deletes this object. */
|
|
629
684
|
storageRebate?: Maybe<Scalars['BigInt']['output']>;
|
|
630
685
|
/** The overall balance of coins issued. */
|
|
631
686
|
supply?: Maybe<Scalars['BigInt']['output']>;
|
|
@@ -638,6 +693,13 @@ export type CoinMetadata = IAddressable & IMoveObject & IObject & {
|
|
|
638
693
|
};
|
|
639
694
|
|
|
640
695
|
|
|
696
|
+
/** An object representing metadata about a coin type. */
|
|
697
|
+
export type CoinMetadataAddressAtArgs = {
|
|
698
|
+
checkpoint?: InputMaybe<Scalars['UInt53']['input']>;
|
|
699
|
+
rootVersion?: InputMaybe<Scalars['UInt53']['input']>;
|
|
700
|
+
};
|
|
701
|
+
|
|
702
|
+
|
|
641
703
|
/** An object representing metadata about a coin type. */
|
|
642
704
|
export type CoinMetadataBalanceArgs = {
|
|
643
705
|
coinType: Scalars['String']['input'];
|
|
@@ -893,10 +955,16 @@ export type DisplayRegistryCreateTransaction = {
|
|
|
893
955
|
* - 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).
|
|
894
956
|
* - 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.
|
|
895
957
|
*/
|
|
896
|
-
export type DynamicField = IAddressable & IMoveObject & IObject & {
|
|
958
|
+
export type DynamicField = IAddressable & IMoveObject & IObject & Node & {
|
|
897
959
|
__typename?: 'DynamicField';
|
|
898
960
|
/** The DynamicField's ID. */
|
|
899
961
|
address: Scalars['HaneulAddress']['output'];
|
|
962
|
+
/**
|
|
963
|
+
* Fetch the address as it was at a different root version, or checkpoint.
|
|
964
|
+
*
|
|
965
|
+
* If no additional bound is provided, the address is fetched at the latest checkpoint known to the RPC.
|
|
966
|
+
*/
|
|
967
|
+
addressAt?: Maybe<Address>;
|
|
900
968
|
/**
|
|
901
969
|
* Fetch the total balance for coins with marker type `coinType` (e.g. `0x2::haneul::HANEUL`), owned by this address.
|
|
902
970
|
*
|
|
@@ -907,8 +975,8 @@ export type DynamicField = IAddressable & IMoveObject & IObject & {
|
|
|
907
975
|
balances?: Maybe<BalanceConnection>;
|
|
908
976
|
/** The structured representation of the object's contents. */
|
|
909
977
|
contents?: Maybe<MoveValue>;
|
|
910
|
-
/** The domain explicitly configured as the default
|
|
911
|
-
|
|
978
|
+
/** The domain explicitly configured as the default Name Service name for this address. */
|
|
979
|
+
defaultNameRecord?: Maybe<NameRecord>;
|
|
912
980
|
/** 32-byte hash that identifies the object's contents, encoded in Base58. */
|
|
913
981
|
digest?: Maybe<Scalars['String']['output']>;
|
|
914
982
|
/**
|
|
@@ -935,6 +1003,8 @@ export type DynamicField = IAddressable & IMoveObject & IObject & {
|
|
|
935
1003
|
* Both these operations require the object to have both the `key` and `store` abilities.
|
|
936
1004
|
*/
|
|
937
1005
|
hasPublicTransfer?: Maybe<Scalars['Boolean']['output']>;
|
|
1006
|
+
/** The dynamic field's globally unique identifier, which can be passed to `Query.node` to refetch it. */
|
|
1007
|
+
id: Scalars['ID']['output'];
|
|
938
1008
|
/** The Base64-encoded BCS serialize of this object, as a `MoveObject`. */
|
|
939
1009
|
moveObjectBcs?: Maybe<Scalars['Base64']['output']>;
|
|
940
1010
|
/**
|
|
@@ -973,7 +1043,7 @@ export type DynamicField = IAddressable & IMoveObject & IObject & {
|
|
|
973
1043
|
previousTransaction?: Maybe<Transaction>;
|
|
974
1044
|
/** The transactions that sent objects to this object. */
|
|
975
1045
|
receivedTransactions?: Maybe<TransactionConnection>;
|
|
976
|
-
/** The
|
|
1046
|
+
/** The HANEUL returned to the sponsor or sender of the transaction that modifies or deletes this object. */
|
|
977
1047
|
storageRebate?: Maybe<Scalars['BigInt']['output']>;
|
|
978
1048
|
/** The dynamic field's value, as a Move value for dynamic fields and as a MoveObject for dynamic object fields. */
|
|
979
1049
|
value?: Maybe<DynamicFieldValue>;
|
|
@@ -982,6 +1052,20 @@ export type DynamicField = IAddressable & IMoveObject & IObject & {
|
|
|
982
1052
|
};
|
|
983
1053
|
|
|
984
1054
|
|
|
1055
|
+
/**
|
|
1056
|
+
* 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`.
|
|
1057
|
+
*
|
|
1058
|
+
* There are two sub-types of dynamic fields:
|
|
1059
|
+
*
|
|
1060
|
+
* - 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).
|
|
1061
|
+
* - 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.
|
|
1062
|
+
*/
|
|
1063
|
+
export type DynamicFieldAddressAtArgs = {
|
|
1064
|
+
checkpoint?: InputMaybe<Scalars['UInt53']['input']>;
|
|
1065
|
+
rootVersion?: InputMaybe<Scalars['UInt53']['input']>;
|
|
1066
|
+
};
|
|
1067
|
+
|
|
1068
|
+
|
|
985
1069
|
/**
|
|
986
1070
|
* 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`.
|
|
987
1071
|
*
|
|
@@ -1193,12 +1277,18 @@ export type DynamicFieldEdge = {
|
|
|
1193
1277
|
node: DynamicField;
|
|
1194
1278
|
};
|
|
1195
1279
|
|
|
1196
|
-
/**
|
|
1280
|
+
/**
|
|
1281
|
+
* A description of a dynamic field's name.
|
|
1282
|
+
*
|
|
1283
|
+
* Names can either be given as serialized `bcs` accompanied by its `type`, or as a Display v2 `literal` expression. Other combinations of inputs are not supported.
|
|
1284
|
+
*/
|
|
1197
1285
|
export type DynamicFieldName = {
|
|
1198
1286
|
/** The Base64-encoded BCS serialization of the dynamic field's 'name'. */
|
|
1199
|
-
bcs
|
|
1287
|
+
bcs?: InputMaybe<Scalars['Base64']['input']>;
|
|
1288
|
+
/** The name represented as a Display v2 literal expression. */
|
|
1289
|
+
literal?: InputMaybe<Scalars['String']['input']>;
|
|
1200
1290
|
/** The type of the dynamic field's name, like 'u64' or '0x2::kiosk::Listing'. */
|
|
1201
|
-
type
|
|
1291
|
+
type?: InputMaybe<Scalars['String']['input']>;
|
|
1202
1292
|
};
|
|
1203
1293
|
|
|
1204
1294
|
/** The value of a dynamic field (`MoveValue`) or dynamic object field (`MoveObject`). */
|
|
@@ -1242,7 +1332,7 @@ export type EndOfEpochTransactionKindEdge = {
|
|
|
1242
1332
|
};
|
|
1243
1333
|
|
|
1244
1334
|
/**
|
|
1245
|
-
* Activity on
|
|
1335
|
+
* Activity on Haneul is partitioned in time, into epochs.
|
|
1246
1336
|
*
|
|
1247
1337
|
* 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.
|
|
1248
1338
|
*
|
|
@@ -1253,7 +1343,7 @@ export type EndOfEpochTransactionKindEdge = {
|
|
|
1253
1343
|
* - system package versions,
|
|
1254
1344
|
* - validators in the committee.
|
|
1255
1345
|
*/
|
|
1256
|
-
export type Epoch = {
|
|
1346
|
+
export type Epoch = Node & {
|
|
1257
1347
|
__typename?: 'Epoch';
|
|
1258
1348
|
/** The epoch's corresponding checkpoints. */
|
|
1259
1349
|
checkpoints?: Maybe<CheckpointConnection>;
|
|
@@ -1276,6 +1366,8 @@ export type Epoch = {
|
|
|
1276
1366
|
* This fund is used to redistribute storage fees from past transactions to future validators.
|
|
1277
1367
|
*/
|
|
1278
1368
|
fundSize?: Maybe<Scalars['BigInt']['output']>;
|
|
1369
|
+
/** The epoch's globally unique identifier, which can be passed to `Query.node` to refetch it. */
|
|
1370
|
+
id: Scalars['ID']['output'];
|
|
1279
1371
|
/**
|
|
1280
1372
|
* A commitment by the committee at the end of epoch on the contents of the live object set at that time.
|
|
1281
1373
|
* This can be used to verify state snapshots.
|
|
@@ -1287,26 +1379,12 @@ export type Epoch = {
|
|
|
1287
1379
|
protocolConfigs?: Maybe<ProtocolConfigs>;
|
|
1288
1380
|
/** The minimum gas price that a quorum of validators are guaranteed to sign a transaction for in this epoch. */
|
|
1289
1381
|
referenceGasPrice?: Maybe<Scalars['BigInt']['output']>;
|
|
1290
|
-
/** Information about whether this epoch was started in safe mode, which happens if the full epoch change logic fails. */
|
|
1291
|
-
safeMode?: Maybe<SafeMode>;
|
|
1292
1382
|
/** The timestamp associated with the first checkpoint in the epoch. */
|
|
1293
1383
|
startTimestamp?: Maybe<Scalars['DateTime']['output']>;
|
|
1294
|
-
/**
|
|
1295
|
-
* SUI set aside to account for objects stored on-chain, at the start of the epoch.
|
|
1296
|
-
* This is also used for storage rebates.
|
|
1297
|
-
*/
|
|
1298
|
-
storageFund?: Maybe<StorageFund>;
|
|
1299
1384
|
/** The system packages used by all transactions in this epoch. */
|
|
1300
1385
|
systemPackages?: Maybe<MovePackageConnection>;
|
|
1301
|
-
/**
|
|
1302
|
-
|
|
1303
|
-
/** Parameters related to the subsidy that supplements staking rewards */
|
|
1304
|
-
systemStakeSubsidy?: Maybe<StakeSubsidy>;
|
|
1305
|
-
/**
|
|
1306
|
-
* The value of the `version` field of `0x5`, the `0x3::haneul::HaneulSystemState` object.
|
|
1307
|
-
* This version changes whenever the fields contained in the system state object (held in a dynamic field attached to `0x5`) change.
|
|
1308
|
-
*/
|
|
1309
|
-
systemStateVersion?: Maybe<Scalars['UInt53']['output']>;
|
|
1386
|
+
/** The contents of the system state inner object at the start of this epoch. */
|
|
1387
|
+
systemState?: Maybe<MoveValue>;
|
|
1310
1388
|
/**
|
|
1311
1389
|
* The total number of checkpoints in this epoch.
|
|
1312
1390
|
*
|
|
@@ -1319,7 +1397,11 @@ export type Epoch = {
|
|
|
1319
1397
|
totalStakeRewards?: Maybe<Scalars['BigInt']['output']>;
|
|
1320
1398
|
/** The amount added to total gas fees to make up the total stake rewards (or `null` if the epoch has not finished yet). */
|
|
1321
1399
|
totalStakeSubsidies?: Maybe<Scalars['BigInt']['output']>;
|
|
1322
|
-
/**
|
|
1400
|
+
/**
|
|
1401
|
+
* The total number of transaction blocks in this epoch.
|
|
1402
|
+
*
|
|
1403
|
+
* If the epoch has not finished yet, this number is computed based on the number of transactions at the latest known checkpoint.
|
|
1404
|
+
*/
|
|
1323
1405
|
totalTransactions?: Maybe<Scalars['UInt53']['output']>;
|
|
1324
1406
|
/**
|
|
1325
1407
|
* The transactions in this epoch, optionally filtered by transaction filters.
|
|
@@ -1333,7 +1415,7 @@ export type Epoch = {
|
|
|
1333
1415
|
|
|
1334
1416
|
|
|
1335
1417
|
/**
|
|
1336
|
-
* Activity on
|
|
1418
|
+
* Activity on Haneul is partitioned in time, into epochs.
|
|
1337
1419
|
*
|
|
1338
1420
|
* 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.
|
|
1339
1421
|
*
|
|
@@ -1354,7 +1436,7 @@ export type EpochCheckpointsArgs = {
|
|
|
1354
1436
|
|
|
1355
1437
|
|
|
1356
1438
|
/**
|
|
1357
|
-
* Activity on
|
|
1439
|
+
* Activity on Haneul is partitioned in time, into epochs.
|
|
1358
1440
|
*
|
|
1359
1441
|
* 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.
|
|
1360
1442
|
*
|
|
@@ -1374,7 +1456,7 @@ export type EpochSystemPackagesArgs = {
|
|
|
1374
1456
|
|
|
1375
1457
|
|
|
1376
1458
|
/**
|
|
1377
|
-
* Activity on
|
|
1459
|
+
* Activity on Haneul is partitioned in time, into epochs.
|
|
1378
1460
|
*
|
|
1379
1461
|
* 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.
|
|
1380
1462
|
*
|
|
@@ -1417,7 +1499,7 @@ export type Event = {
|
|
|
1417
1499
|
/** The Move value emitted for this event. */
|
|
1418
1500
|
contents?: Maybe<MoveValue>;
|
|
1419
1501
|
/**
|
|
1420
|
-
* The Base64 encoded BCS serialized bytes of the entire Event structure from
|
|
1502
|
+
* The Base64 encoded BCS serialized bytes of the entire Event structure from haneul-types.
|
|
1421
1503
|
* This includes: package_id, transaction_module, sender, type, and contents (which itself contains the BCS-serialized Move struct data).
|
|
1422
1504
|
*/
|
|
1423
1505
|
eventBcs?: Maybe<Scalars['Base64']['output']>;
|
|
@@ -1581,7 +1663,7 @@ export type GasEffects = {
|
|
|
1581
1663
|
|
|
1582
1664
|
export type GasInput = {
|
|
1583
1665
|
__typename?: 'GasInput';
|
|
1584
|
-
/** The maximum
|
|
1666
|
+
/** The maximum HANEUL that can be expended by executing this transaction */
|
|
1585
1667
|
gasBudget?: Maybe<Scalars['BigInt']['output']>;
|
|
1586
1668
|
/** Objects used to pay for a transaction's execution and storage */
|
|
1587
1669
|
gasPayment?: Maybe<ObjectConnection>;
|
|
@@ -1622,6 +1704,12 @@ export type GenesisTransactionObjectsArgs = {
|
|
|
1622
1704
|
*/
|
|
1623
1705
|
export type IAddressable = {
|
|
1624
1706
|
address: Scalars['HaneulAddress']['output'];
|
|
1707
|
+
/**
|
|
1708
|
+
* Fetch the address as it was at a different root version, or checkpoint.
|
|
1709
|
+
*
|
|
1710
|
+
* If no additional bound is provided, the address is fetched at the latest checkpoint known to the RPC.
|
|
1711
|
+
*/
|
|
1712
|
+
addressAt?: Maybe<Address>;
|
|
1625
1713
|
/**
|
|
1626
1714
|
* Fetch the total balance for coins with marker type `coinType` (e.g. `0x2::haneul::HANEUL`), owned by this address.
|
|
1627
1715
|
*
|
|
@@ -1630,8 +1718,8 @@ export type IAddressable = {
|
|
|
1630
1718
|
balance?: Maybe<Balance>;
|
|
1631
1719
|
/** Total balance across coins owned by this address, grouped by coin type. */
|
|
1632
1720
|
balances?: Maybe<BalanceConnection>;
|
|
1633
|
-
/** The domain explicitly configured as the default
|
|
1634
|
-
|
|
1721
|
+
/** The domain explicitly configured as the default Name Service name for this address. */
|
|
1722
|
+
defaultNameRecord?: Maybe<NameRecord>;
|
|
1635
1723
|
/**
|
|
1636
1724
|
* Fetch the total balances keyed by coin types (e.g. `0x2::haneul::HANEUL`) owned by this address.
|
|
1637
1725
|
*
|
|
@@ -1643,6 +1731,17 @@ export type IAddressable = {
|
|
|
1643
1731
|
};
|
|
1644
1732
|
|
|
1645
1733
|
|
|
1734
|
+
/**
|
|
1735
|
+
* Interface implemented by GraphQL types representing entities that are identified by an address.
|
|
1736
|
+
*
|
|
1737
|
+
* 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.
|
|
1738
|
+
*/
|
|
1739
|
+
export type IAddressableAddressAtArgs = {
|
|
1740
|
+
checkpoint?: InputMaybe<Scalars['UInt53']['input']>;
|
|
1741
|
+
rootVersion?: InputMaybe<Scalars['UInt53']['input']>;
|
|
1742
|
+
};
|
|
1743
|
+
|
|
1744
|
+
|
|
1646
1745
|
/**
|
|
1647
1746
|
* Interface implemented by GraphQL types representing entities that are identified by an address.
|
|
1648
1747
|
*
|
|
@@ -1697,6 +1796,8 @@ export type IAddressableObjectsArgs = {
|
|
|
1697
1796
|
export type IMoveDatatype = {
|
|
1698
1797
|
/** Abilities on this datatype definition. */
|
|
1699
1798
|
abilities?: Maybe<Array<MoveAbility>>;
|
|
1799
|
+
/** The datatype's fully-qualified name, including package address, module name, and datatype name. */
|
|
1800
|
+
fullyQualifiedName: Scalars['String']['output'];
|
|
1700
1801
|
/** The module that this datatype is defined in */
|
|
1701
1802
|
module: MoveModule;
|
|
1702
1803
|
/** The datatype's unqualified name */
|
|
@@ -1804,7 +1905,7 @@ export type IObject = {
|
|
|
1804
1905
|
previousTransaction?: Maybe<Transaction>;
|
|
1805
1906
|
/** The transactions that sent objects to this object. */
|
|
1806
1907
|
receivedTransactions?: Maybe<TransactionConnection>;
|
|
1807
|
-
/** The
|
|
1908
|
+
/** The HANEUL returned to the sponsor or sender of the transaction that modifies or deletes this object. */
|
|
1808
1909
|
storageRebate?: Maybe<Scalars['BigInt']['output']>;
|
|
1809
1910
|
/** The version of this object that this content comes from. */
|
|
1810
1911
|
version?: Maybe<Scalars['UInt53']['output']>;
|
|
@@ -1889,7 +1990,7 @@ export type MergeCoinsCommand = {
|
|
|
1889
1990
|
coins: Array<TransactionArgument>;
|
|
1890
1991
|
};
|
|
1891
1992
|
|
|
1892
|
-
/** Abilities are keywords in
|
|
1993
|
+
/** Abilities are keywords in Haneul Move that define how types behave at the compiler level. */
|
|
1893
1994
|
export enum MoveAbility {
|
|
1894
1995
|
/** Enables values to be copied. */
|
|
1895
1996
|
Copy = 'COPY',
|
|
@@ -1918,6 +2019,8 @@ export type MoveDatatype = IMoveDatatype & {
|
|
|
1918
2019
|
asMoveEnum?: Maybe<MoveEnum>;
|
|
1919
2020
|
/** Attempts to convert the `MoveDatatype` to a `MoveStruct`. */
|
|
1920
2021
|
asMoveStruct?: Maybe<MoveStruct>;
|
|
2022
|
+
/** The datatype's fully-qualified name, including package address, module name, and datatype name. */
|
|
2023
|
+
fullyQualifiedName: Scalars['String']['output'];
|
|
1921
2024
|
/** The module that this datatype is defined in. */
|
|
1922
2025
|
module: MoveModule;
|
|
1923
2026
|
/** The datatype's unqualified name. */
|
|
@@ -1967,6 +2070,8 @@ export type MoveEnum = IMoveDatatype & {
|
|
|
1967
2070
|
__typename?: 'MoveEnum';
|
|
1968
2071
|
/** Abilities on this enum definition. */
|
|
1969
2072
|
abilities?: Maybe<Array<MoveAbility>>;
|
|
2073
|
+
/** The enum's fully-qualified name, including package address, module name, and datatype name. */
|
|
2074
|
+
fullyQualifiedName: Scalars['String']['output'];
|
|
1970
2075
|
/** The module that this enum is defined in. */
|
|
1971
2076
|
module: MoveModule;
|
|
1972
2077
|
/** The enum's unqualified name. */
|
|
@@ -2031,6 +2136,8 @@ export type MoveField = {
|
|
|
2031
2136
|
/** A function defined in a Move module. */
|
|
2032
2137
|
export type MoveFunction = {
|
|
2033
2138
|
__typename?: 'MoveFunction';
|
|
2139
|
+
/** The function's fully-qualified name, including package address, module name, and function name. */
|
|
2140
|
+
fullyQualifiedName: Scalars['String']['output'];
|
|
2034
2141
|
/** Whether the function is marked `entry` or not. */
|
|
2035
2142
|
isEntry?: Maybe<Scalars['Boolean']['output']>;
|
|
2036
2143
|
/** The module that this function is defined in. */
|
|
@@ -2100,6 +2207,8 @@ export type MoveModule = {
|
|
|
2100
2207
|
fileFormatVersion?: Maybe<Scalars['Int']['output']>;
|
|
2101
2208
|
/** Modules that this module considers friends. These modules can call `public(package)` functions in this module. */
|
|
2102
2209
|
friends?: Maybe<MoveModuleConnection>;
|
|
2210
|
+
/** The module's fully-qualified name, including its package address. */
|
|
2211
|
+
fullyQualifiedName: Scalars['String']['output'];
|
|
2103
2212
|
/** The function named `name` in this module. */
|
|
2104
2213
|
function?: Maybe<MoveFunction>;
|
|
2105
2214
|
/** Paginate through this module's function definitions. */
|
|
@@ -2239,10 +2348,16 @@ export type MoveModuleEdge = {
|
|
|
2239
2348
|
};
|
|
2240
2349
|
|
|
2241
2350
|
/** A MoveObject is a kind of Object that reprsents data stored on-chain. */
|
|
2242
|
-
export type MoveObject = IAddressable & IMoveObject & IObject & {
|
|
2351
|
+
export type MoveObject = IAddressable & IMoveObject & IObject & Node & {
|
|
2243
2352
|
__typename?: 'MoveObject';
|
|
2244
2353
|
/** The MoveObject's ID. */
|
|
2245
2354
|
address: Scalars['HaneulAddress']['output'];
|
|
2355
|
+
/**
|
|
2356
|
+
* Fetch the address as it was at a different root version, or checkpoint.
|
|
2357
|
+
*
|
|
2358
|
+
* If no additional bound is provided, the address is fetched at the latest checkpoint known to the RPC.
|
|
2359
|
+
*/
|
|
2360
|
+
addressAt?: Maybe<Address>;
|
|
2246
2361
|
/** Attempts to convert the object into a CoinMetadata. */
|
|
2247
2362
|
asCoinMetadata?: Maybe<CoinMetadata>;
|
|
2248
2363
|
/** Attempts to convert the object into a DynamicField. */
|
|
@@ -2257,8 +2372,8 @@ export type MoveObject = IAddressable & IMoveObject & IObject & {
|
|
|
2257
2372
|
balances?: Maybe<BalanceConnection>;
|
|
2258
2373
|
/** The structured representation of the object's contents. */
|
|
2259
2374
|
contents?: Maybe<MoveValue>;
|
|
2260
|
-
/** The domain explicitly configured as the default
|
|
2261
|
-
|
|
2375
|
+
/** The domain explicitly configured as the default Name Service name for this address. */
|
|
2376
|
+
defaultNameRecord?: Maybe<NameRecord>;
|
|
2262
2377
|
/** 32-byte hash that identifies the object's contents, encoded in Base58. */
|
|
2263
2378
|
digest?: Maybe<Scalars['String']['output']>;
|
|
2264
2379
|
/**
|
|
@@ -2285,6 +2400,8 @@ export type MoveObject = IAddressable & IMoveObject & IObject & {
|
|
|
2285
2400
|
* Both these operations require the object to have both the `key` and `store` abilities.
|
|
2286
2401
|
*/
|
|
2287
2402
|
hasPublicTransfer?: Maybe<Scalars['Boolean']['output']>;
|
|
2403
|
+
/** The Move object's globally unique identifier, which can be passed to `Query.node` to refetch it. */
|
|
2404
|
+
id: Scalars['ID']['output'];
|
|
2288
2405
|
/** The Base64-encoded BCS serialize of this object, as a `MoveObject`. */
|
|
2289
2406
|
moveObjectBcs?: Maybe<Scalars['Base64']['output']>;
|
|
2290
2407
|
/**
|
|
@@ -2325,13 +2442,20 @@ export type MoveObject = IAddressable & IMoveObject & IObject & {
|
|
|
2325
2442
|
previousTransaction?: Maybe<Transaction>;
|
|
2326
2443
|
/** The transactions that sent objects to this object. */
|
|
2327
2444
|
receivedTransactions?: Maybe<TransactionConnection>;
|
|
2328
|
-
/** The
|
|
2445
|
+
/** The HANEUL returned to the sponsor or sender of the transaction that modifies or deletes this object. */
|
|
2329
2446
|
storageRebate?: Maybe<Scalars['BigInt']['output']>;
|
|
2330
2447
|
/** The version of this object that this content comes from. */
|
|
2331
2448
|
version?: Maybe<Scalars['UInt53']['output']>;
|
|
2332
2449
|
};
|
|
2333
2450
|
|
|
2334
2451
|
|
|
2452
|
+
/** A MoveObject is a kind of Object that reprsents data stored on-chain. */
|
|
2453
|
+
export type MoveObjectAddressAtArgs = {
|
|
2454
|
+
checkpoint?: InputMaybe<Scalars['UInt53']['input']>;
|
|
2455
|
+
rootVersion?: InputMaybe<Scalars['UInt53']['input']>;
|
|
2456
|
+
};
|
|
2457
|
+
|
|
2458
|
+
|
|
2335
2459
|
/** A MoveObject is a kind of Object that reprsents data stored on-chain. */
|
|
2336
2460
|
export type MoveObjectBalanceArgs = {
|
|
2337
2461
|
coinType: Scalars['String']['input'];
|
|
@@ -2453,10 +2577,16 @@ export type MoveObjectEdge = {
|
|
|
2453
2577
|
};
|
|
2454
2578
|
|
|
2455
2579
|
/** 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. */
|
|
2456
|
-
export type MovePackage = IAddressable & IObject & {
|
|
2580
|
+
export type MovePackage = IAddressable & IObject & Node & {
|
|
2457
2581
|
__typename?: 'MovePackage';
|
|
2458
2582
|
/** The MovePackage's ID. */
|
|
2459
2583
|
address: Scalars['HaneulAddress']['output'];
|
|
2584
|
+
/**
|
|
2585
|
+
* Fetch the address as it was at a different root version, or checkpoint.
|
|
2586
|
+
*
|
|
2587
|
+
* If no additional bound is provided, the address is fetched at the latest checkpoint known to the RPC.
|
|
2588
|
+
*/
|
|
2589
|
+
addressAt?: Maybe<Address>;
|
|
2460
2590
|
/**
|
|
2461
2591
|
* Fetch the total balance for coins with marker type `coinType` (e.g. `0x2::haneul::HANEUL`), owned by this address.
|
|
2462
2592
|
*
|
|
@@ -2465,10 +2595,12 @@ export type MovePackage = IAddressable & IObject & {
|
|
|
2465
2595
|
balance?: Maybe<Balance>;
|
|
2466
2596
|
/** Total balance across coins owned by this address, grouped by coin type. */
|
|
2467
2597
|
balances?: Maybe<BalanceConnection>;
|
|
2468
|
-
/** The domain explicitly configured as the default
|
|
2469
|
-
|
|
2598
|
+
/** The domain explicitly configured as the default Name Service name for this address. */
|
|
2599
|
+
defaultNameRecord?: Maybe<NameRecord>;
|
|
2470
2600
|
/** 32-byte hash that identifies the package's contents, encoded in Base58. */
|
|
2471
2601
|
digest?: Maybe<Scalars['String']['output']>;
|
|
2602
|
+
/** The package's globally unique identifier, which can be passed to `Query.node` to refetch it. */
|
|
2603
|
+
id: Scalars['ID']['output'];
|
|
2472
2604
|
/** The transitive dependencies of this package. */
|
|
2473
2605
|
linkage?: Maybe<Array<Linkage>>;
|
|
2474
2606
|
/** The module named `name` in this package. */
|
|
@@ -2500,9 +2632,9 @@ export type MovePackage = IAddressable & IObject & {
|
|
|
2500
2632
|
/** The object's owner kind. */
|
|
2501
2633
|
owner?: Maybe<Owner>;
|
|
2502
2634
|
/**
|
|
2503
|
-
* Fetch the package with the same original ID, at a different version,
|
|
2635
|
+
* Fetch the package with the same original ID, at a different version, or checkpoint.
|
|
2504
2636
|
*
|
|
2505
|
-
* If no additional bound is provided, the
|
|
2637
|
+
* If no additional bound is provided, the package is fetched at the latest checkpoint known to the RPC.
|
|
2506
2638
|
*/
|
|
2507
2639
|
packageAt?: Maybe<MovePackage>;
|
|
2508
2640
|
/** The Base64-encoded BCS serialization of this package, as a `MovePackage`. */
|
|
@@ -2515,7 +2647,7 @@ export type MovePackage = IAddressable & IObject & {
|
|
|
2515
2647
|
previousTransaction?: Maybe<Transaction>;
|
|
2516
2648
|
/** The transactions that sent objects to this object. */
|
|
2517
2649
|
receivedTransactions?: Maybe<TransactionConnection>;
|
|
2518
|
-
/** The
|
|
2650
|
+
/** The HANEUL returned to the sponsor or sender of the transaction that modifies or deletes this object. */
|
|
2519
2651
|
storageRebate?: Maybe<Scalars['BigInt']['output']>;
|
|
2520
2652
|
/** A table identifying which versions of a package introduced each of its types. */
|
|
2521
2653
|
typeOrigins?: Maybe<Array<TypeOrigin>>;
|
|
@@ -2524,6 +2656,13 @@ export type MovePackage = IAddressable & IObject & {
|
|
|
2524
2656
|
};
|
|
2525
2657
|
|
|
2526
2658
|
|
|
2659
|
+
/** 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. */
|
|
2660
|
+
export type MovePackageAddressAtArgs = {
|
|
2661
|
+
checkpoint?: InputMaybe<Scalars['UInt53']['input']>;
|
|
2662
|
+
rootVersion?: InputMaybe<Scalars['UInt53']['input']>;
|
|
2663
|
+
};
|
|
2664
|
+
|
|
2665
|
+
|
|
2527
2666
|
/** 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. */
|
|
2528
2667
|
export type MovePackageBalanceArgs = {
|
|
2529
2668
|
coinType: Scalars['String']['input'];
|
|
@@ -2664,6 +2803,8 @@ export type MoveStruct = IMoveDatatype & {
|
|
|
2664
2803
|
* Field types reference type parameters by their index in the defining struct's `typeParameters` list.
|
|
2665
2804
|
*/
|
|
2666
2805
|
fields?: Maybe<Array<MoveField>>;
|
|
2806
|
+
/** The struct's fully-qualified name, including package address, module name, and datatype name. */
|
|
2807
|
+
fullyQualifiedName: Scalars['String']['output'];
|
|
2667
2808
|
/** The module that this struct is defined in. */
|
|
2668
2809
|
module: MoveModule;
|
|
2669
2810
|
/** The struct's unqualified name. */
|
|
@@ -2713,6 +2854,16 @@ export type MoveType = {
|
|
|
2713
2854
|
|
|
2714
2855
|
export type MoveValue = {
|
|
2715
2856
|
__typename?: 'MoveValue';
|
|
2857
|
+
/**
|
|
2858
|
+
* Attempts to treat this value as an `Address`.
|
|
2859
|
+
*
|
|
2860
|
+
* If the value is of type `address` or `0x2::object::ID`, it is interpreted as an address pointer, and it is scoped to the current checkpoint.
|
|
2861
|
+
*
|
|
2862
|
+
* If the value is of type `0x2::object::UID`, it is interpreted as a wrapped object whose version is bounded by the root version of the current value. Such values do not support nested owned object queries, but `Address.addressAt` can be used to re-scope it to a checkpoint (defaults to the current checkpoint), instead of a root version, allowing owned object queries.
|
|
2863
|
+
*
|
|
2864
|
+
* Values of other types cannot be interpreted as addresses, and `null` is returned.
|
|
2865
|
+
*/
|
|
2866
|
+
asAddress?: Maybe<Address>;
|
|
2716
2867
|
/** The BCS representation of this value, Base64-encoded. */
|
|
2717
2868
|
bcs?: Maybe<Scalars['Base64']['output']>;
|
|
2718
2869
|
/**
|
|
@@ -2721,6 +2872,18 @@ export type MoveValue = {
|
|
|
2721
2872
|
* Returns `null` if the value's type does not have an associated `Display` template.
|
|
2722
2873
|
*/
|
|
2723
2874
|
display?: Maybe<Display>;
|
|
2875
|
+
/**
|
|
2876
|
+
* Extract a nested value at the given path.
|
|
2877
|
+
*
|
|
2878
|
+
* `path` is a Display v2 'chain' expression, allowing access to nested, named and positional fields, vector indices, VecMap keys, and dynamic (object) field accesses.
|
|
2879
|
+
*/
|
|
2880
|
+
extract?: Maybe<MoveValue>;
|
|
2881
|
+
/**
|
|
2882
|
+
* Render a single Display v2 format string against this value.
|
|
2883
|
+
*
|
|
2884
|
+
* Returns `null` if the value does not have a valid type, or if any of the expressions in the format string fail to evaluate (e.g. field does not exist).
|
|
2885
|
+
*/
|
|
2886
|
+
format?: Maybe<Scalars['JSON']['output']>;
|
|
2724
2887
|
/**
|
|
2725
2888
|
* Representation of a Move value in JSON, where:
|
|
2726
2889
|
*
|
|
@@ -2739,6 +2902,16 @@ export type MoveValue = {
|
|
|
2739
2902
|
type?: Maybe<MoveType>;
|
|
2740
2903
|
};
|
|
2741
2904
|
|
|
2905
|
+
|
|
2906
|
+
export type MoveValueExtractArgs = {
|
|
2907
|
+
path: Scalars['String']['input'];
|
|
2908
|
+
};
|
|
2909
|
+
|
|
2910
|
+
|
|
2911
|
+
export type MoveValueFormatArgs = {
|
|
2912
|
+
format: Scalars['String']['input'];
|
|
2913
|
+
};
|
|
2914
|
+
|
|
2742
2915
|
/**
|
|
2743
2916
|
* The visibility modifier describes which modules can access this module member.
|
|
2744
2917
|
*
|
|
@@ -2762,7 +2935,7 @@ export type MutateConsensusStreamEnded = {
|
|
|
2762
2935
|
sequenceNumber?: Maybe<Scalars['UInt53']['output']>;
|
|
2763
2936
|
};
|
|
2764
2937
|
|
|
2765
|
-
/** Mutations are used to write to the
|
|
2938
|
+
/** Mutations are used to write to the Haneul network. */
|
|
2766
2939
|
export type Mutation = {
|
|
2767
2940
|
__typename?: 'Mutation';
|
|
2768
2941
|
/**
|
|
@@ -2779,21 +2952,61 @@ export type Mutation = {
|
|
|
2779
2952
|
};
|
|
2780
2953
|
|
|
2781
2954
|
|
|
2782
|
-
/** Mutations are used to write to the
|
|
2955
|
+
/** Mutations are used to write to the Haneul network. */
|
|
2783
2956
|
export type MutationExecuteTransactionArgs = {
|
|
2784
2957
|
signatures: Array<Scalars['Base64']['input']>;
|
|
2785
2958
|
transactionDataBcs: Scalars['Base64']['input'];
|
|
2786
2959
|
};
|
|
2787
2960
|
|
|
2961
|
+
/** A Name Service NameRecord representing a domain name registration. */
|
|
2962
|
+
export type NameRecord = {
|
|
2963
|
+
__typename?: 'NameRecord';
|
|
2964
|
+
/** On-chain representation of the underlying Name Service `NameRecord` Move value. */
|
|
2965
|
+
contents: MoveValue;
|
|
2966
|
+
/** The domain name this record is for. */
|
|
2967
|
+
domain: Scalars['String']['output'];
|
|
2968
|
+
/**
|
|
2969
|
+
* The Name Service Name Record of the parent domain, if this is a subdomain.
|
|
2970
|
+
*
|
|
2971
|
+
* Returns `null` if this is not a subdomain.
|
|
2972
|
+
*/
|
|
2973
|
+
parent?: Maybe<NameRecord>;
|
|
2974
|
+
/**
|
|
2975
|
+
* The address this domain points to.
|
|
2976
|
+
*
|
|
2977
|
+
* `rootVersion` and `atCheckpoint` control how the target `Address` is scoped. If neither is provided, the `Address` is scoped to the latest checkpoint known to the RPC.
|
|
2978
|
+
*/
|
|
2979
|
+
target?: Maybe<Address>;
|
|
2980
|
+
};
|
|
2981
|
+
|
|
2982
|
+
|
|
2983
|
+
/** A Name Service NameRecord representing a domain name registration. */
|
|
2984
|
+
export type NameRecordTargetArgs = {
|
|
2985
|
+
atCheckpoint?: InputMaybe<Scalars['UInt53']['input']>;
|
|
2986
|
+
rootVersion?: InputMaybe<Scalars['UInt53']['input']>;
|
|
2987
|
+
};
|
|
2988
|
+
|
|
2989
|
+
/** An interface implemented by types that can be uniquely identified by a globally unique `ID`, following the GraphQL Global Object Identification specification. */
|
|
2990
|
+
export type Node = {
|
|
2991
|
+
/** The node's globally unique identifier, which can be passed to `Query.node` to refetch it. */
|
|
2992
|
+
id: Scalars['ID']['output'];
|
|
2993
|
+
};
|
|
2994
|
+
|
|
2788
2995
|
/**
|
|
2789
|
-
* An Object on
|
|
2996
|
+
* An Object on Haneul is either a typed value (a Move Object) or a Package (modules containing functions and types).
|
|
2790
2997
|
*
|
|
2791
|
-
* Every object on
|
|
2998
|
+
* Every object on Haneul 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.
|
|
2792
2999
|
*/
|
|
2793
|
-
export type Object = IAddressable & IObject & {
|
|
3000
|
+
export type Object = IAddressable & IObject & Node & {
|
|
2794
3001
|
__typename?: 'Object';
|
|
2795
3002
|
/** The Object's ID. */
|
|
2796
3003
|
address: Scalars['HaneulAddress']['output'];
|
|
3004
|
+
/**
|
|
3005
|
+
* Fetch the address as it was at a different root version, or checkpoint.
|
|
3006
|
+
*
|
|
3007
|
+
* If no additional bound is provided, the address is fetched at the latest checkpoint known to the RPC.
|
|
3008
|
+
*/
|
|
3009
|
+
addressAt?: Maybe<Address>;
|
|
2797
3010
|
/** Attempts to convert the object into a MoveObject. */
|
|
2798
3011
|
asMoveObject?: Maybe<MoveObject>;
|
|
2799
3012
|
/** Attempts to convert the object into a MovePackage. */
|
|
@@ -2806,8 +3019,8 @@ export type Object = IAddressable & IObject & {
|
|
|
2806
3019
|
balance?: Maybe<Balance>;
|
|
2807
3020
|
/** Total balance across coins owned by this address, grouped by coin type. */
|
|
2808
3021
|
balances?: Maybe<BalanceConnection>;
|
|
2809
|
-
/** The domain explicitly configured as the default
|
|
2810
|
-
|
|
3022
|
+
/** The domain explicitly configured as the default Name Service name for this address. */
|
|
3023
|
+
defaultNameRecord?: Maybe<NameRecord>;
|
|
2811
3024
|
/** 32-byte hash that identifies the object's contents, encoded in Base58. */
|
|
2812
3025
|
digest?: Maybe<Scalars['String']['output']>;
|
|
2813
3026
|
/**
|
|
@@ -2824,6 +3037,8 @@ export type Object = IAddressable & IObject & {
|
|
|
2824
3037
|
* Returns `null` if a dynamic object field with that name could not be found attached to this object.
|
|
2825
3038
|
*/
|
|
2826
3039
|
dynamicObjectField?: Maybe<DynamicField>;
|
|
3040
|
+
/** The object's globally unique identifier, which can be passed to `Query.node` to refetch it. */
|
|
3041
|
+
id: Scalars['ID']['output'];
|
|
2827
3042
|
/**
|
|
2828
3043
|
* Fetch the total balances keyed by coin types (e.g. `0x2::haneul::HANEUL`) owned by this address.
|
|
2829
3044
|
*
|
|
@@ -2846,7 +3061,7 @@ export type Object = IAddressable & IObject & {
|
|
|
2846
3061
|
/**
|
|
2847
3062
|
* Fetch the object with the same ID, at a different version, root version bound, or checkpoint.
|
|
2848
3063
|
*
|
|
2849
|
-
* If no additional bound is provided, the
|
|
3064
|
+
* If no additional bound is provided, the object is fetched at the latest checkpoint known to the RPC.
|
|
2850
3065
|
*/
|
|
2851
3066
|
objectAt?: Maybe<Object>;
|
|
2852
3067
|
/** The Base64-encoded BCS serialization of this object, as an `Object`. */
|
|
@@ -2863,7 +3078,7 @@ export type Object = IAddressable & IObject & {
|
|
|
2863
3078
|
previousTransaction?: Maybe<Transaction>;
|
|
2864
3079
|
/** The transactions that sent objects to this object */
|
|
2865
3080
|
receivedTransactions?: Maybe<TransactionConnection>;
|
|
2866
|
-
/** The
|
|
3081
|
+
/** The HANEUL returned to the sponsor or sender of the transaction that modifies or deletes this object. */
|
|
2867
3082
|
storageRebate?: Maybe<Scalars['BigInt']['output']>;
|
|
2868
3083
|
/** The version of this object that this content comes from. */
|
|
2869
3084
|
version?: Maybe<Scalars['UInt53']['output']>;
|
|
@@ -2871,9 +3086,20 @@ export type Object = IAddressable & IObject & {
|
|
|
2871
3086
|
|
|
2872
3087
|
|
|
2873
3088
|
/**
|
|
2874
|
-
* An Object on
|
|
3089
|
+
* An Object on Haneul is either a typed value (a Move Object) or a Package (modules containing functions and types).
|
|
2875
3090
|
*
|
|
2876
|
-
* Every object on
|
|
3091
|
+
* Every object on Haneul 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.
|
|
3092
|
+
*/
|
|
3093
|
+
export type ObjectAddressAtArgs = {
|
|
3094
|
+
checkpoint?: InputMaybe<Scalars['UInt53']['input']>;
|
|
3095
|
+
rootVersion?: InputMaybe<Scalars['UInt53']['input']>;
|
|
3096
|
+
};
|
|
3097
|
+
|
|
3098
|
+
|
|
3099
|
+
/**
|
|
3100
|
+
* An Object on Haneul is either a typed value (a Move Object) or a Package (modules containing functions and types).
|
|
3101
|
+
*
|
|
3102
|
+
* Every object on Haneul 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.
|
|
2877
3103
|
*/
|
|
2878
3104
|
export type ObjectBalanceArgs = {
|
|
2879
3105
|
coinType: Scalars['String']['input'];
|
|
@@ -2881,9 +3107,9 @@ export type ObjectBalanceArgs = {
|
|
|
2881
3107
|
|
|
2882
3108
|
|
|
2883
3109
|
/**
|
|
2884
|
-
* An Object on
|
|
3110
|
+
* An Object on Haneul is either a typed value (a Move Object) or a Package (modules containing functions and types).
|
|
2885
3111
|
*
|
|
2886
|
-
* Every object on
|
|
3112
|
+
* Every object on Haneul 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.
|
|
2887
3113
|
*/
|
|
2888
3114
|
export type ObjectBalancesArgs = {
|
|
2889
3115
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -2894,9 +3120,9 @@ export type ObjectBalancesArgs = {
|
|
|
2894
3120
|
|
|
2895
3121
|
|
|
2896
3122
|
/**
|
|
2897
|
-
* An Object on
|
|
3123
|
+
* An Object on Haneul is either a typed value (a Move Object) or a Package (modules containing functions and types).
|
|
2898
3124
|
*
|
|
2899
|
-
* Every object on
|
|
3125
|
+
* Every object on Haneul 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.
|
|
2900
3126
|
*/
|
|
2901
3127
|
export type ObjectDynamicFieldArgs = {
|
|
2902
3128
|
name: DynamicFieldName;
|
|
@@ -2904,9 +3130,9 @@ export type ObjectDynamicFieldArgs = {
|
|
|
2904
3130
|
|
|
2905
3131
|
|
|
2906
3132
|
/**
|
|
2907
|
-
* An Object on
|
|
3133
|
+
* An Object on Haneul is either a typed value (a Move Object) or a Package (modules containing functions and types).
|
|
2908
3134
|
*
|
|
2909
|
-
* Every object on
|
|
3135
|
+
* Every object on Haneul 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.
|
|
2910
3136
|
*/
|
|
2911
3137
|
export type ObjectDynamicFieldsArgs = {
|
|
2912
3138
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -2917,9 +3143,9 @@ export type ObjectDynamicFieldsArgs = {
|
|
|
2917
3143
|
|
|
2918
3144
|
|
|
2919
3145
|
/**
|
|
2920
|
-
* An Object on
|
|
3146
|
+
* An Object on Haneul is either a typed value (a Move Object) or a Package (modules containing functions and types).
|
|
2921
3147
|
*
|
|
2922
|
-
* Every object on
|
|
3148
|
+
* Every object on Haneul 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.
|
|
2923
3149
|
*/
|
|
2924
3150
|
export type ObjectDynamicObjectFieldArgs = {
|
|
2925
3151
|
name: DynamicFieldName;
|
|
@@ -2927,9 +3153,9 @@ export type ObjectDynamicObjectFieldArgs = {
|
|
|
2927
3153
|
|
|
2928
3154
|
|
|
2929
3155
|
/**
|
|
2930
|
-
* An Object on
|
|
3156
|
+
* An Object on Haneul is either a typed value (a Move Object) or a Package (modules containing functions and types).
|
|
2931
3157
|
*
|
|
2932
|
-
* Every object on
|
|
3158
|
+
* Every object on Haneul 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.
|
|
2933
3159
|
*/
|
|
2934
3160
|
export type ObjectMultiGetBalancesArgs = {
|
|
2935
3161
|
keys: Array<Scalars['String']['input']>;
|
|
@@ -2937,9 +3163,9 @@ export type ObjectMultiGetBalancesArgs = {
|
|
|
2937
3163
|
|
|
2938
3164
|
|
|
2939
3165
|
/**
|
|
2940
|
-
* An Object on
|
|
3166
|
+
* An Object on Haneul is either a typed value (a Move Object) or a Package (modules containing functions and types).
|
|
2941
3167
|
*
|
|
2942
|
-
* Every object on
|
|
3168
|
+
* Every object on Haneul 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.
|
|
2943
3169
|
*/
|
|
2944
3170
|
export type ObjectMultiGetDynamicFieldsArgs = {
|
|
2945
3171
|
keys: Array<DynamicFieldName>;
|
|
@@ -2947,9 +3173,9 @@ export type ObjectMultiGetDynamicFieldsArgs = {
|
|
|
2947
3173
|
|
|
2948
3174
|
|
|
2949
3175
|
/**
|
|
2950
|
-
* An Object on
|
|
3176
|
+
* An Object on Haneul is either a typed value (a Move Object) or a Package (modules containing functions and types).
|
|
2951
3177
|
*
|
|
2952
|
-
* Every object on
|
|
3178
|
+
* Every object on Haneul 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.
|
|
2953
3179
|
*/
|
|
2954
3180
|
export type ObjectMultiGetDynamicObjectFieldsArgs = {
|
|
2955
3181
|
keys: Array<DynamicFieldName>;
|
|
@@ -2957,9 +3183,9 @@ export type ObjectMultiGetDynamicObjectFieldsArgs = {
|
|
|
2957
3183
|
|
|
2958
3184
|
|
|
2959
3185
|
/**
|
|
2960
|
-
* An Object on
|
|
3186
|
+
* An Object on Haneul is either a typed value (a Move Object) or a Package (modules containing functions and types).
|
|
2961
3187
|
*
|
|
2962
|
-
* Every object on
|
|
3188
|
+
* Every object on Haneul 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.
|
|
2963
3189
|
*/
|
|
2964
3190
|
export type ObjectObjectAtArgs = {
|
|
2965
3191
|
checkpoint?: InputMaybe<Scalars['UInt53']['input']>;
|
|
@@ -2969,9 +3195,9 @@ export type ObjectObjectAtArgs = {
|
|
|
2969
3195
|
|
|
2970
3196
|
|
|
2971
3197
|
/**
|
|
2972
|
-
* An Object on
|
|
3198
|
+
* An Object on Haneul is either a typed value (a Move Object) or a Package (modules containing functions and types).
|
|
2973
3199
|
*
|
|
2974
|
-
* Every object on
|
|
3200
|
+
* Every object on Haneul 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.
|
|
2975
3201
|
*/
|
|
2976
3202
|
export type ObjectObjectVersionsAfterArgs = {
|
|
2977
3203
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -2983,9 +3209,9 @@ export type ObjectObjectVersionsAfterArgs = {
|
|
|
2983
3209
|
|
|
2984
3210
|
|
|
2985
3211
|
/**
|
|
2986
|
-
* An Object on
|
|
3212
|
+
* An Object on Haneul is either a typed value (a Move Object) or a Package (modules containing functions and types).
|
|
2987
3213
|
*
|
|
2988
|
-
* Every object on
|
|
3214
|
+
* Every object on Haneul 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.
|
|
2989
3215
|
*/
|
|
2990
3216
|
export type ObjectObjectVersionsBeforeArgs = {
|
|
2991
3217
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -2997,9 +3223,9 @@ export type ObjectObjectVersionsBeforeArgs = {
|
|
|
2997
3223
|
|
|
2998
3224
|
|
|
2999
3225
|
/**
|
|
3000
|
-
* An Object on
|
|
3226
|
+
* An Object on Haneul is either a typed value (a Move Object) or a Package (modules containing functions and types).
|
|
3001
3227
|
*
|
|
3002
|
-
* Every object on
|
|
3228
|
+
* Every object on Haneul 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.
|
|
3003
3229
|
*/
|
|
3004
3230
|
export type ObjectObjectsArgs = {
|
|
3005
3231
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -3011,9 +3237,9 @@ export type ObjectObjectsArgs = {
|
|
|
3011
3237
|
|
|
3012
3238
|
|
|
3013
3239
|
/**
|
|
3014
|
-
* An Object on
|
|
3240
|
+
* An Object on Haneul is either a typed value (a Move Object) or a Package (modules containing functions and types).
|
|
3015
3241
|
*
|
|
3016
|
-
* Every object on
|
|
3242
|
+
* Every object on Haneul 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.
|
|
3017
3243
|
*/
|
|
3018
3244
|
export type ObjectReceivedTransactionsArgs = {
|
|
3019
3245
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -3195,7 +3421,7 @@ export type PackageCheckpointFilter = {
|
|
|
3195
3421
|
/**
|
|
3196
3422
|
* Identifies a specific version of a package.
|
|
3197
3423
|
*
|
|
3198
|
-
* 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
|
|
3424
|
+
* 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 checkpoint being viewed.
|
|
3199
3425
|
*
|
|
3200
3426
|
* See `Query.package` for more details.
|
|
3201
3427
|
*/
|
|
@@ -3346,16 +3572,22 @@ export type Query = {
|
|
|
3346
3572
|
/**
|
|
3347
3573
|
* Look-up an account by its HaneulAddress.
|
|
3348
3574
|
*
|
|
3349
|
-
* 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
|
|
3575
|
+
* 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 descendant 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:
|
|
3350
3576
|
*
|
|
3351
3577
|
* - The root object of the object it is wrapped in, if it is wrapped.
|
|
3352
3578
|
* - The root object of its owner, if it is owned by another object.
|
|
3353
3579
|
* - The object itself, if it is not object-owned or wrapped.
|
|
3354
3580
|
*
|
|
3355
3581
|
* Specifying a `rootVersion` disables nested queries for paginating owned objects or dynamic fields (these queries are only supported at checkpoint boundaries).
|
|
3582
|
+
*
|
|
3583
|
+
* If `atCheckpoint` is specified, the address 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.
|
|
3584
|
+
*
|
|
3585
|
+
* If none of the above are specified, the address is fetched at the checkpoint being viewed.
|
|
3586
|
+
*
|
|
3587
|
+
* If the address is fetched by name and the name does not resolve to an address (e.g. the name does not exist or has expired), `null` is returned.
|
|
3356
3588
|
*/
|
|
3357
|
-
address
|
|
3358
|
-
/**
|
|
3589
|
+
address?: Maybe<Address>;
|
|
3590
|
+
/** The network's genesis checkpoint digest (uniquely identifies the network), Base58-encoded. */
|
|
3359
3591
|
chainIdentifier: Scalars['String']['output'];
|
|
3360
3592
|
/**
|
|
3361
3593
|
* Fetch a checkpoint by its sequence number, or the latest checkpoint if no sequence number is provided.
|
|
@@ -3381,8 +3613,12 @@ export type Query = {
|
|
|
3381
3613
|
epochs?: Maybe<EpochConnection>;
|
|
3382
3614
|
/** Paginate events that are emitted in the network, optionally filtered by event filters. */
|
|
3383
3615
|
events?: Maybe<EventConnection>;
|
|
3384
|
-
/**
|
|
3385
|
-
|
|
3616
|
+
/**
|
|
3617
|
+
* Fetch addresses by their keys.
|
|
3618
|
+
*
|
|
3619
|
+
* Returns a list of addresses that is guaranteed to be the same length as `keys`. If an address in `keys` is fetched by name and the name does not resolve to an address, its corresponding entry in the result will be `null`.
|
|
3620
|
+
*/
|
|
3621
|
+
multiGetAddresses: Array<Maybe<Address>>;
|
|
3386
3622
|
/**
|
|
3387
3623
|
* Fetch checkpoints by their sequence numbers.
|
|
3388
3624
|
*
|
|
@@ -3427,6 +3663,14 @@ export type Query = {
|
|
|
3427
3663
|
* 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`.
|
|
3428
3664
|
*/
|
|
3429
3665
|
multiGetTypes: Array<Maybe<MoveType>>;
|
|
3666
|
+
/**
|
|
3667
|
+
* Look-up a Name Service NameRecord by its domain name.
|
|
3668
|
+
*
|
|
3669
|
+
* Returns `null` if the record does not exist or has expired.
|
|
3670
|
+
*/
|
|
3671
|
+
nameRecord?: Maybe<NameRecord>;
|
|
3672
|
+
/** Fetch a `Node` by its globally unique `ID`. Returns `null` if the node cannot be found (e.g., the underlying data was pruned or never existed). */
|
|
3673
|
+
node?: Maybe<Node>;
|
|
3430
3674
|
/**
|
|
3431
3675
|
* Fetch an object by its address.
|
|
3432
3676
|
*
|
|
@@ -3442,7 +3686,7 @@ export type Query = {
|
|
|
3442
3686
|
*
|
|
3443
3687
|
* 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.
|
|
3444
3688
|
*
|
|
3445
|
-
* If none of the above are specified, the object is fetched at the
|
|
3689
|
+
* If none of the above are specified, the object is fetched at the checkpoint being viewed.
|
|
3446
3690
|
*
|
|
3447
3691
|
* It is an error to specify more than one of `version`, `rootVersion`, or `atCheckpoint`.
|
|
3448
3692
|
*
|
|
@@ -3466,7 +3710,7 @@ export type Query = {
|
|
|
3466
3710
|
*
|
|
3467
3711
|
* 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`.
|
|
3468
3712
|
*
|
|
3469
|
-
* If neither are specified, the package is fetched at the
|
|
3713
|
+
* If neither are specified, the package is fetched at the checkpoint being viewed.
|
|
3470
3714
|
*
|
|
3471
3715
|
* 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.
|
|
3472
3716
|
*
|
|
@@ -3488,7 +3732,7 @@ export type Query = {
|
|
|
3488
3732
|
/**
|
|
3489
3733
|
* Simulate a transaction to preview its effects without executing it on chain.
|
|
3490
3734
|
*
|
|
3491
|
-
* Accepts a JSON transaction matching the [
|
|
3735
|
+
* Accepts a JSON transaction matching the [Haneul gRPC API schema](https://docs.haneul.io/references/fullnode-protocol#haneul-rpc-v2-Transaction).
|
|
3492
3736
|
* The JSON format allows for partial transaction specification where certain fields can be automatically resolved by the server.
|
|
3493
3737
|
*
|
|
3494
3738
|
* Alternatively, for already serialized transactions, you can pass BCS-encoded data:
|
|
@@ -3537,7 +3781,9 @@ export type Query = {
|
|
|
3537
3781
|
|
|
3538
3782
|
|
|
3539
3783
|
export type QueryAddressArgs = {
|
|
3540
|
-
address
|
|
3784
|
+
address?: InputMaybe<Scalars['HaneulAddress']['input']>;
|
|
3785
|
+
atCheckpoint?: InputMaybe<Scalars['UInt53']['input']>;
|
|
3786
|
+
name?: InputMaybe<Scalars['String']['input']>;
|
|
3541
3787
|
rootVersion?: InputMaybe<Scalars['UInt53']['input']>;
|
|
3542
3788
|
};
|
|
3543
3789
|
|
|
@@ -3583,9 +3829,8 @@ export type QueryEventsArgs = {
|
|
|
3583
3829
|
};
|
|
3584
3830
|
|
|
3585
3831
|
|
|
3586
|
-
export type
|
|
3587
|
-
|
|
3588
|
-
rootVersion?: InputMaybe<Scalars['UInt53']['input']>;
|
|
3832
|
+
export type QueryMultiGetAddressesArgs = {
|
|
3833
|
+
keys: Array<AddressKey>;
|
|
3589
3834
|
};
|
|
3590
3835
|
|
|
3591
3836
|
|
|
@@ -3624,6 +3869,16 @@ export type QueryMultiGetTypesArgs = {
|
|
|
3624
3869
|
};
|
|
3625
3870
|
|
|
3626
3871
|
|
|
3872
|
+
export type QueryNameRecordArgs = {
|
|
3873
|
+
name: Scalars['String']['input'];
|
|
3874
|
+
};
|
|
3875
|
+
|
|
3876
|
+
|
|
3877
|
+
export type QueryNodeArgs = {
|
|
3878
|
+
id: Scalars['ID']['input'];
|
|
3879
|
+
};
|
|
3880
|
+
|
|
3881
|
+
|
|
3627
3882
|
export type QueryObjectArgs = {
|
|
3628
3883
|
address: Scalars['HaneulAddress']['input'];
|
|
3629
3884
|
atCheckpoint?: InputMaybe<Scalars['UInt53']['input']>;
|
|
@@ -3763,17 +4018,6 @@ export enum RegulatedState {
|
|
|
3763
4018
|
Unregulated = 'UNREGULATED'
|
|
3764
4019
|
}
|
|
3765
4020
|
|
|
3766
|
-
export type SafeMode = {
|
|
3767
|
-
__typename?: 'SafeMode';
|
|
3768
|
-
/**
|
|
3769
|
-
* Whether safe mode was used for the last epoch change.
|
|
3770
|
-
* The system will retry a full epoch change on every epoch boundary and automatically reset this flag if so.
|
|
3771
|
-
*/
|
|
3772
|
-
enabled?: Maybe<Scalars['Boolean']['output']>;
|
|
3773
|
-
/** Accumulated fees for computation and cost that have not been added to the various reward pools, because the full epoch change did not happen. */
|
|
3774
|
-
gasSummary?: Maybe<GasCostSummary>;
|
|
3775
|
-
};
|
|
3776
|
-
|
|
3777
4021
|
export type ServiceConfig = {
|
|
3778
4022
|
__typename?: 'ServiceConfig';
|
|
3779
4023
|
/** 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. */
|
|
@@ -3788,6 +4032,10 @@ export type ServiceConfig = {
|
|
|
3788
4032
|
maxDisassembledModuleSize?: Maybe<Scalars['Int']['output']>;
|
|
3789
4033
|
/** Maximum depth of nested field access supported in display outputs. */
|
|
3790
4034
|
maxDisplayFieldDepth?: Maybe<Scalars['Int']['output']>;
|
|
4035
|
+
/** Maximum number of components in a Display v2 format string. */
|
|
4036
|
+
maxDisplayFormatNodes?: Maybe<Scalars['Int']['output']>;
|
|
4037
|
+
/** Maximum number of objects that can be loaded while evaluating a display. */
|
|
4038
|
+
maxDisplayObjectLoads?: Maybe<Scalars['Int']['output']>;
|
|
3791
4039
|
/** Maximum output size of a display output. */
|
|
3792
4040
|
maxDisplayOutputSize?: Maybe<Scalars['Int']['output']>;
|
|
3793
4041
|
/** Maximum budget in bytes to spend when outputting a structured `MoveValue`. */
|
|
@@ -3848,6 +4096,8 @@ export type ServiceConfig = {
|
|
|
3848
4096
|
maxQueryNodes?: Maybe<Scalars['Int']['output']>;
|
|
3849
4097
|
/** Maximum size in bytes of a single GraphQL request, excluding the elements covered by `maxTransactionPayloadSize`. */
|
|
3850
4098
|
maxQueryPayloadSize?: Maybe<Scalars['Int']['output']>;
|
|
4099
|
+
/** Maximum number of paginated fields that can return results in a single request. Queries on paginated fields that exceed this limit will return an error. */
|
|
4100
|
+
maxRichQueries?: Maybe<Scalars['Int']['output']>;
|
|
3851
4101
|
/**
|
|
3852
4102
|
* 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.
|
|
3853
4103
|
*
|
|
@@ -3935,36 +4185,6 @@ export type SplitCoinsCommand = {
|
|
|
3935
4185
|
coin?: Maybe<TransactionArgument>;
|
|
3936
4186
|
};
|
|
3937
4187
|
|
|
3938
|
-
/** Parameters that control the distribution of the stake subsidy. */
|
|
3939
|
-
export type StakeSubsidy = {
|
|
3940
|
-
__typename?: 'StakeSubsidy';
|
|
3941
|
-
/** SUI set aside for stake subsidies -- reduces over time as stake subsidies are paid out over time. */
|
|
3942
|
-
balance?: Maybe<Scalars['BigInt']['output']>;
|
|
3943
|
-
/** Amount of stake subsidy deducted from the balance per distribution -- decays over time. */
|
|
3944
|
-
currentDistributionAmount?: Maybe<Scalars['BigInt']['output']>;
|
|
3945
|
-
/** Percentage of the current distribution amount to deduct at the end of the current subsidy period, expressed in basis points. */
|
|
3946
|
-
decreaseRate?: Maybe<Scalars['Int']['output']>;
|
|
3947
|
-
/**
|
|
3948
|
-
* Number of times stake subsidies have been distributed.
|
|
3949
|
-
* Subsidies are distributed with other staking rewards, at the end of the epoch.
|
|
3950
|
-
*/
|
|
3951
|
-
distributionCounter?: Maybe<Scalars['Int']['output']>;
|
|
3952
|
-
/** Maximum number of stake subsidy distributions that occur with the same distribution amount (before the amount is reduced). */
|
|
3953
|
-
periodLength?: Maybe<Scalars['Int']['output']>;
|
|
3954
|
-
};
|
|
3955
|
-
|
|
3956
|
-
/** SUI set aside to account for objects stored on-chain. */
|
|
3957
|
-
export type StorageFund = {
|
|
3958
|
-
__typename?: 'StorageFund';
|
|
3959
|
-
/**
|
|
3960
|
-
* The portion of the storage fund that will never be refunded through storage rebates.
|
|
3961
|
-
* 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.
|
|
3962
|
-
*/
|
|
3963
|
-
nonRefundableBalance?: Maybe<Scalars['BigInt']['output']>;
|
|
3964
|
-
/** Sum of storage rebates of live objects on chain. */
|
|
3965
|
-
totalObjectStorageRebates?: Maybe<Scalars['BigInt']['output']>;
|
|
3966
|
-
};
|
|
3967
|
-
|
|
3968
4188
|
/** System transaction for storing execution time observations. */
|
|
3969
4189
|
export type StoreExecutionTimeObservationsTransaction = {
|
|
3970
4190
|
__typename?: 'StoreExecutionTimeObservationsTransaction';
|
|
@@ -3980,29 +4200,8 @@ export enum SupplyState {
|
|
|
3980
4200
|
Fixed = 'FIXED'
|
|
3981
4201
|
}
|
|
3982
4202
|
|
|
3983
|
-
/**
|
|
3984
|
-
export type
|
|
3985
|
-
__typename?: 'SystemParameters';
|
|
3986
|
-
/** Target duration of an epoch, in milliseconds. */
|
|
3987
|
-
durationMs?: Maybe<Scalars['BigInt']['output']>;
|
|
3988
|
-
/** The maximum number of active validators that the system supports. */
|
|
3989
|
-
maxValidatorCount?: Maybe<Scalars['Int']['output']>;
|
|
3990
|
-
/** The minimum number of active validators that the system supports. */
|
|
3991
|
-
minValidatorCount?: Maybe<Scalars['Int']['output']>;
|
|
3992
|
-
/** Minimum stake needed to become a new validator. */
|
|
3993
|
-
minValidatorJoiningStake?: Maybe<Scalars['BigInt']['output']>;
|
|
3994
|
-
/** The epoch at which stake subsidies start being paid out. */
|
|
3995
|
-
stakeSubsidyStartEpoch?: Maybe<Scalars['UInt53']['output']>;
|
|
3996
|
-
/** The number of epochs that a validator has to recover from having less than `validatorLowStakeThreshold` stake. */
|
|
3997
|
-
validatorLowStakeGracePeriod?: Maybe<Scalars['BigInt']['output']>;
|
|
3998
|
-
/** Validators with stake below this threshold will enter the grace period (see `validatorLowStakeGracePeriod`), after which they are removed from the active validator set. */
|
|
3999
|
-
validatorLowStakeThreshold?: Maybe<Scalars['BigInt']['output']>;
|
|
4000
|
-
/** Validators with stake below this threshold will be removed from the active validator set at the next epoch boundary, without a grace period. */
|
|
4001
|
-
validatorVeryLowStakeThreshold?: Maybe<Scalars['BigInt']['output']>;
|
|
4002
|
-
};
|
|
4003
|
-
|
|
4004
|
-
/** Description of a transaction, the unit of activity on Sui. */
|
|
4005
|
-
export type Transaction = {
|
|
4203
|
+
/** Description of a transaction, the unit of activity on Haneul. */
|
|
4204
|
+
export type Transaction = Node & {
|
|
4006
4205
|
__typename?: 'Transaction';
|
|
4007
4206
|
/** A 32-byte hash that uniquely identifies the transaction contents, encoded in Base58. */
|
|
4008
4207
|
digest: Scalars['String']['output'];
|
|
@@ -4012,6 +4211,8 @@ export type Transaction = {
|
|
|
4012
4211
|
expiration?: Maybe<Epoch>;
|
|
4013
4212
|
/** 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. */
|
|
4014
4213
|
gasInput?: Maybe<GasInput>;
|
|
4214
|
+
/** The transaction's globally unique identifier, which can be passed to `Query.node` to refetch it. */
|
|
4215
|
+
id: Scalars['ID']['output'];
|
|
4015
4216
|
/** The type of this transaction as well as the commands and/or parameters comprising the transaction of this kind. */
|
|
4016
4217
|
kind?: Maybe<TransactionKind>;
|
|
4017
4218
|
/** The address corresponding to the public key that signed this transaction. System transactions do not have senders. */
|
|
@@ -4020,6 +4221,8 @@ export type Transaction = {
|
|
|
4020
4221
|
signatures: Array<UserSignature>;
|
|
4021
4222
|
/** The Base64-encoded BCS serialization of this transaction, as a `TransactionData`. */
|
|
4022
4223
|
transactionBcs?: Maybe<Scalars['Base64']['output']>;
|
|
4224
|
+
/** The transaction as a JSON blob, matching the gRPC proto format (excluding BCS). */
|
|
4225
|
+
transactionJson?: Maybe<Scalars['JSON']['output']>;
|
|
4023
4226
|
};
|
|
4024
4227
|
|
|
4025
4228
|
/** An argument to a programmable transaction command. */
|
|
@@ -4049,6 +4252,8 @@ export type TransactionEffects = {
|
|
|
4049
4252
|
__typename?: 'TransactionEffects';
|
|
4050
4253
|
/** The effect this transaction had on the balances (sum of coin values per coin type) of addresses and objects. */
|
|
4051
4254
|
balanceChanges?: Maybe<BalanceChangeConnection>;
|
|
4255
|
+
/** The balance changes as a JSON array, matching the gRPC proto format. */
|
|
4256
|
+
balanceChangesJson?: Maybe<Scalars['JSON']['output']>;
|
|
4052
4257
|
/** The checkpoint this transaction was finalized in. */
|
|
4053
4258
|
checkpoint?: Maybe<Checkpoint>;
|
|
4054
4259
|
/** Transactions whose outputs this transaction depends upon. */
|
|
@@ -4063,6 +4268,8 @@ export type TransactionEffects = {
|
|
|
4063
4268
|
effectsBcs?: Maybe<Scalars['Base64']['output']>;
|
|
4064
4269
|
/** A 32-byte hash that uniquely identifies the effects contents, encoded in Base58. */
|
|
4065
4270
|
effectsDigest?: Maybe<Scalars['String']['output']>;
|
|
4271
|
+
/** The effects as a JSON blob, matching the gRPC proto format (excluding BCS). */
|
|
4272
|
+
effectsJson?: Maybe<Scalars['JSON']['output']>;
|
|
4066
4273
|
/** The epoch this transaction was finalized in. */
|
|
4067
4274
|
epoch?: Maybe<Epoch>;
|
|
4068
4275
|
/** Events emitted by this transaction. */
|
|
@@ -4161,7 +4368,7 @@ export type TransactionFilter = {
|
|
|
4161
4368
|
};
|
|
4162
4369
|
|
|
4163
4370
|
/** Input argument to a Programmable Transaction Block (PTB) command. */
|
|
4164
|
-
export type TransactionInput = OwnedOrImmutable | Pure | Receiving | SharedInput;
|
|
4371
|
+
export type TransactionInput = BalanceWithdraw | MoveValue | OwnedOrImmutable | Pure | Receiving | SharedInput;
|
|
4165
4372
|
|
|
4166
4373
|
export type TransactionInputConnection = {
|
|
4167
4374
|
__typename?: 'TransactionInputConnection';
|
|
@@ -4182,7 +4389,7 @@ export type TransactionInputEdge = {
|
|
|
4182
4389
|
node: TransactionInput;
|
|
4183
4390
|
};
|
|
4184
4391
|
|
|
4185
|
-
/** Different types of transactions that can be executed on the
|
|
4392
|
+
/** Different types of transactions that can be executed on the Haneul network. */
|
|
4186
4393
|
export type TransactionKind = AuthenticatorStateUpdateTransaction | ChangeEpochTransaction | ConsensusCommitPrologueTransaction | EndOfEpochTransaction | GenesisTransaction | ProgrammableSystemTransaction | ProgrammableTransaction | RandomnessStateUpdateTransaction;
|
|
4187
4394
|
|
|
4188
4395
|
/** An input filter selecting for either system or programmable transactions. */
|
|
@@ -4270,112 +4477,14 @@ export type UserSignature = {
|
|
|
4270
4477
|
signatureBytes?: Maybe<Scalars['Base64']['output']>;
|
|
4271
4478
|
};
|
|
4272
4479
|
|
|
4273
|
-
export type Validator =
|
|
4480
|
+
export type Validator = {
|
|
4274
4481
|
__typename?: 'Validator';
|
|
4275
|
-
/** The validator's address. */
|
|
4276
|
-
address: Scalars['HaneulAddress']['output'];
|
|
4277
4482
|
/** The number of epochs for which this validator has been below the low stake threshold. */
|
|
4278
4483
|
atRisk?: Maybe<Scalars['UInt53']['output']>;
|
|
4279
|
-
/**
|
|
4280
|
-
|
|
4281
|
-
*
|
|
4282
|
-
* If the address does not own any coins of that type, a balance of zero is returned.
|
|
4283
|
-
*/
|
|
4284
|
-
balance?: Maybe<Balance>;
|
|
4285
|
-
/** Total balance across coins owned by this address, grouped by coin type. */
|
|
4286
|
-
balances?: Maybe<BalanceConnection>;
|
|
4287
|
-
/** The fee charged by the validator for staking services. */
|
|
4288
|
-
commissionRate?: Maybe<Scalars['Int']['output']>;
|
|
4289
|
-
/** Validator's set of credentials such as public keys, network addresses and others. */
|
|
4290
|
-
credentials?: Maybe<ValidatorCredentials>;
|
|
4291
|
-
/** The domain explicitly configured as the default HaneulNS name for this address. */
|
|
4292
|
-
defaultHaneulnsName?: Maybe<Scalars['String']['output']>;
|
|
4293
|
-
/** Validator's description. */
|
|
4294
|
-
description?: Maybe<Scalars['String']['output']>;
|
|
4295
|
-
/** Number of exchange rates in the table. */
|
|
4296
|
-
exchangeRatesSize?: Maybe<Scalars['UInt53']['output']>;
|
|
4297
|
-
/**
|
|
4298
|
-
* A wrapped object containing the validator's exchange rates. This is a table from epoch number to `PoolTokenExchangeRate` value.
|
|
4299
|
-
* The exchange rate is used to determine the amount of SUI tokens that each past SUI staker can withdraw in the future.
|
|
4300
|
-
*/
|
|
4301
|
-
exchangeRatesTable?: Maybe<Address>;
|
|
4302
|
-
/** The reference gas price for this epoch. */
|
|
4303
|
-
gasPrice?: Maybe<Scalars['BigInt']['output']>;
|
|
4304
|
-
/** Validator's url containing their custom image. */
|
|
4305
|
-
imageUrl?: Maybe<Scalars['String']['output']>;
|
|
4306
|
-
/**
|
|
4307
|
-
* Fetch the total balances keyed by coin types (e.g. `0x2::haneul::HANEUL`) owned by this address.
|
|
4308
|
-
*
|
|
4309
|
-
* Returns `None` when no checkpoint is set in scope (e.g. execution scope).
|
|
4310
|
-
* If the address does not own any coins of a given type, a balance of zero is returned for that type.
|
|
4311
|
-
*/
|
|
4312
|
-
multiGetBalances?: Maybe<Array<Balance>>;
|
|
4313
|
-
/** Validator's name. */
|
|
4314
|
-
name?: Maybe<Scalars['String']['output']>;
|
|
4315
|
-
/** The proposed next epoch fee for the validator's staking services. */
|
|
4316
|
-
nextEpochCommissionRate?: Maybe<Scalars['Int']['output']>;
|
|
4317
|
-
/** Validator's set of credentials for the next epoch. */
|
|
4318
|
-
nextEpochCredentials?: Maybe<ValidatorCredentials>;
|
|
4319
|
-
/** The validator's gas price quote for the next epoch. */
|
|
4320
|
-
nextEpochGasPrice?: Maybe<Scalars['BigInt']['output']>;
|
|
4321
|
-
/** The total number of SUI tokens in this pool plus the pending stake amount for this epoch. */
|
|
4322
|
-
nextEpochStake?: Maybe<Scalars['BigInt']['output']>;
|
|
4323
|
-
/** Objects owned by this object, optionally filtered by type. */
|
|
4324
|
-
objects?: Maybe<MoveObjectConnection>;
|
|
4325
|
-
/**
|
|
4326
|
-
* The validator's current valid `Cap` object. Validators can delegate the operation ability to another address.
|
|
4327
|
-
* The address holding this `Cap` object can then update the reference gas price and tallying rule on behalf of the validator.
|
|
4328
|
-
*/
|
|
4329
|
-
operationCap?: Maybe<MoveObject>;
|
|
4330
|
-
/** Pending pool token withdrawn during the current epoch, emptied at epoch boundaries. */
|
|
4331
|
-
pendingPoolTokenWithdraw?: Maybe<Scalars['BigInt']['output']>;
|
|
4332
|
-
/** Pending stake amount for this epoch. */
|
|
4333
|
-
pendingStake?: Maybe<Scalars['BigInt']['output']>;
|
|
4334
|
-
/** Pending stake withdrawn during the current epoch, emptied at epoch boundaries. */
|
|
4335
|
-
pendingTotalHaneulWithdraw?: Maybe<Scalars['BigInt']['output']>;
|
|
4336
|
-
/** Total number of pool tokens issued by the pool. */
|
|
4337
|
-
poolTokenBalance?: Maybe<Scalars['BigInt']['output']>;
|
|
4338
|
-
/** Validator's homepage URL. */
|
|
4339
|
-
projectUrl?: Maybe<Scalars['String']['output']>;
|
|
4484
|
+
/** On-chain representation of the underlying `0x3::validator::Validator` value. */
|
|
4485
|
+
contents?: Maybe<MoveValue>;
|
|
4340
4486
|
/** Other validators this validator has reported. */
|
|
4341
4487
|
reportRecords?: Maybe<ValidatorConnection>;
|
|
4342
|
-
/** The epoch stake rewards will be added here at the end of each epoch. */
|
|
4343
|
-
rewardsPool?: Maybe<Scalars['BigInt']['output']>;
|
|
4344
|
-
/** The epoch at which this pool became active. */
|
|
4345
|
-
stakingPoolActivationEpoch?: Maybe<Scalars['UInt53']['output']>;
|
|
4346
|
-
/** The total number of SUI tokens in this pool. */
|
|
4347
|
-
stakingPoolHaneulBalance?: Maybe<Scalars['BigInt']['output']>;
|
|
4348
|
-
/** The ID of this validator's `0x3::staking_pool::StakingPool`. */
|
|
4349
|
-
stakingPoolId: Scalars['HaneulAddress']['output'];
|
|
4350
|
-
/** The voting power of this validator in basis points (e.g., 100 = 1% voting power). */
|
|
4351
|
-
votingPower?: Maybe<Scalars['Int']['output']>;
|
|
4352
|
-
};
|
|
4353
|
-
|
|
4354
|
-
|
|
4355
|
-
export type ValidatorBalanceArgs = {
|
|
4356
|
-
coinType: Scalars['String']['input'];
|
|
4357
|
-
};
|
|
4358
|
-
|
|
4359
|
-
|
|
4360
|
-
export type ValidatorBalancesArgs = {
|
|
4361
|
-
after?: InputMaybe<Scalars['String']['input']>;
|
|
4362
|
-
before?: InputMaybe<Scalars['String']['input']>;
|
|
4363
|
-
first?: InputMaybe<Scalars['Int']['input']>;
|
|
4364
|
-
last?: InputMaybe<Scalars['Int']['input']>;
|
|
4365
|
-
};
|
|
4366
|
-
|
|
4367
|
-
|
|
4368
|
-
export type ValidatorMultiGetBalancesArgs = {
|
|
4369
|
-
keys: Array<Scalars['String']['input']>;
|
|
4370
|
-
};
|
|
4371
|
-
|
|
4372
|
-
|
|
4373
|
-
export type ValidatorObjectsArgs = {
|
|
4374
|
-
after?: InputMaybe<Scalars['String']['input']>;
|
|
4375
|
-
before?: InputMaybe<Scalars['String']['input']>;
|
|
4376
|
-
filter?: InputMaybe<ObjectFilter>;
|
|
4377
|
-
first?: InputMaybe<Scalars['Int']['input']>;
|
|
4378
|
-
last?: InputMaybe<Scalars['Int']['input']>;
|
|
4379
4488
|
};
|
|
4380
4489
|
|
|
4381
4490
|
|
|
@@ -4406,19 +4515,6 @@ export type ValidatorConnection = {
|
|
|
4406
4515
|
pageInfo: PageInfo;
|
|
4407
4516
|
};
|
|
4408
4517
|
|
|
4409
|
-
/** The credentials related fields associated with a validator. */
|
|
4410
|
-
export type ValidatorCredentials = {
|
|
4411
|
-
__typename?: 'ValidatorCredentials';
|
|
4412
|
-
netAddress?: Maybe<Scalars['String']['output']>;
|
|
4413
|
-
networkPubKey?: Maybe<Scalars['Base64']['output']>;
|
|
4414
|
-
p2PAddress?: Maybe<Scalars['String']['output']>;
|
|
4415
|
-
primaryAddress?: Maybe<Scalars['String']['output']>;
|
|
4416
|
-
proofOfPossession?: Maybe<Scalars['Base64']['output']>;
|
|
4417
|
-
protocolPubKey?: Maybe<Scalars['Base64']['output']>;
|
|
4418
|
-
workerAddress?: Maybe<Scalars['String']['output']>;
|
|
4419
|
-
workerPubKey?: Maybe<Scalars['Base64']['output']>;
|
|
4420
|
-
};
|
|
4421
|
-
|
|
4422
4518
|
/** An edge in a connection. */
|
|
4423
4519
|
export type ValidatorEdge = {
|
|
4424
4520
|
__typename?: 'ValidatorEdge';
|
|
@@ -4431,31 +4527,10 @@ export type ValidatorEdge = {
|
|
|
4431
4527
|
/** Representation of `0x3::validator_set::ValidatorSet`. */
|
|
4432
4528
|
export type ValidatorSet = {
|
|
4433
4529
|
__typename?: 'ValidatorSet';
|
|
4434
|
-
/** The
|
|
4530
|
+
/** The validators currently in the committee for this validator set. */
|
|
4435
4531
|
activeValidators?: Maybe<ValidatorConnection>;
|
|
4436
|
-
/**
|
|
4437
|
-
|
|
4438
|
-
/** Size of the inactive pools `Table`. */
|
|
4439
|
-
inactivePoolsSize?: Maybe<Scalars['Int']['output']>;
|
|
4440
|
-
/** Object ID of the wrapped object `TableVec` storing the pending active validators. */
|
|
4441
|
-
pendingActiveValidatorsId?: Maybe<Scalars['HaneulAddress']['output']>;
|
|
4442
|
-
/** Size of the pending active validators table. */
|
|
4443
|
-
pendingActiveValidatorsSize?: Maybe<Scalars['Int']['output']>;
|
|
4444
|
-
/** Validators that are pending removal from the active validator set, expressed as indices in to `activeValidators`. */
|
|
4445
|
-
pendingRemovals?: Maybe<Array<Scalars['Int']['output']>>;
|
|
4446
|
-
/**
|
|
4447
|
-
* Object ID of the `Table` storing the mapping from staking pool ids to the addresses of the corresponding validators.
|
|
4448
|
-
* This is needed because a validator's address can potentially change but the object ID of its pool will not.
|
|
4449
|
-
*/
|
|
4450
|
-
stakingPoolMappingsId?: Maybe<Scalars['HaneulAddress']['output']>;
|
|
4451
|
-
/** Size of the stake pool mappings `Table`. */
|
|
4452
|
-
stakingPoolMappingsSize?: Maybe<Scalars['Int']['output']>;
|
|
4453
|
-
/** Total amount of stake for all active validators at the beginning of the epoch. */
|
|
4454
|
-
totalStake?: Maybe<Scalars['BigInt']['output']>;
|
|
4455
|
-
/** Object ID of the `Table` storing the validator candidates. */
|
|
4456
|
-
validatorCandidatesId?: Maybe<Scalars['HaneulAddress']['output']>;
|
|
4457
|
-
/** Size of the validator candidates `Table`. */
|
|
4458
|
-
validatorCandidatesSize?: Maybe<Scalars['Int']['output']>;
|
|
4532
|
+
/** On-chain representation of the underlying `0x3::validator_set::ValidatorSet` value. */
|
|
4533
|
+
contents?: Maybe<MoveValue>;
|
|
4459
4534
|
};
|
|
4460
4535
|
|
|
4461
4536
|
|
|
@@ -4475,6 +4550,22 @@ export type VersionFilter = {
|
|
|
4475
4550
|
beforeVersion?: InputMaybe<Scalars['UInt53']['input']>;
|
|
4476
4551
|
};
|
|
4477
4552
|
|
|
4553
|
+
/** The account to withdraw funds from. */
|
|
4554
|
+
export enum WithdrawFrom {
|
|
4555
|
+
/** The funds are withdrawn from the transaction sender's account. */
|
|
4556
|
+
Sender = 'SENDER',
|
|
4557
|
+
/** The funds are withdrawn from the sponsor's account. */
|
|
4558
|
+
Sponsor = 'SPONSOR'
|
|
4559
|
+
}
|
|
4560
|
+
|
|
4561
|
+
export type WithdrawMaxAmountU64 = {
|
|
4562
|
+
__typename?: 'WithdrawMaxAmountU64';
|
|
4563
|
+
amount?: Maybe<Scalars['BigInt']['output']>;
|
|
4564
|
+
};
|
|
4565
|
+
|
|
4566
|
+
/** Reservation details for a withdrawal. */
|
|
4567
|
+
export type WithdrawalReservation = WithdrawMaxAmountU64;
|
|
4568
|
+
|
|
4478
4569
|
/** System transaction for writing the pre-computed storage cost for accumulator objects. */
|
|
4479
4570
|
export type WriteAccumulatorStorageCostTransaction = {
|
|
4480
4571
|
__typename?: 'WriteAccumulatorStorageCostTransaction';
|
|
@@ -4506,31 +4597,48 @@ export type GetAllBalancesQueryVariables = Exact<{
|
|
|
4506
4597
|
}>;
|
|
4507
4598
|
|
|
4508
4599
|
|
|
4509
|
-
export type GetAllBalancesQuery = { __typename?: 'Query', address
|
|
4600
|
+
export 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, addressBalance?: string | null, coinType?: { __typename?: 'MoveType', repr: string } | null }> } | null } | null };
|
|
4510
4601
|
|
|
4511
4602
|
export type GetBalanceQueryVariables = Exact<{
|
|
4512
4603
|
owner: Scalars['HaneulAddress']['input'];
|
|
4513
|
-
coinType?: Scalars['String']['input']
|
|
4604
|
+
coinType?: InputMaybe<Scalars['String']['input']>;
|
|
4514
4605
|
}>;
|
|
4515
4606
|
|
|
4516
4607
|
|
|
4517
|
-
export type GetBalanceQuery = { __typename?: 'Query', address
|
|
4608
|
+
export type GetBalanceQuery = { __typename?: 'Query', address?: { __typename?: 'Address', balance?: { __typename?: 'Balance', totalBalance?: string | null, addressBalance?: string | null, coinType?: { __typename?: 'MoveType', repr: string } | null } | null } | null };
|
|
4609
|
+
|
|
4610
|
+
export type GetChainIdentifierQueryVariables = Exact<{ [key: string]: never; }>;
|
|
4611
|
+
|
|
4612
|
+
|
|
4613
|
+
export type GetChainIdentifierQuery = { __typename?: 'Query', checkpoint?: { __typename?: 'Checkpoint', digest?: string | null } | null };
|
|
4614
|
+
|
|
4615
|
+
export type GetCoinMetadataQueryVariables = Exact<{
|
|
4616
|
+
coinType: Scalars['String']['input'];
|
|
4617
|
+
}>;
|
|
4618
|
+
|
|
4619
|
+
|
|
4620
|
+
export type GetCoinMetadataQuery = { __typename?: 'Query', coinMetadata?: { __typename?: 'CoinMetadata', address: string, decimals?: number | null, name?: string | null, symbol?: string | null, description?: string | null, iconUrl?: string | null } | null };
|
|
4518
4621
|
|
|
4519
4622
|
export type GetCoinsQueryVariables = Exact<{
|
|
4520
4623
|
owner: Scalars['HaneulAddress']['input'];
|
|
4521
4624
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
4522
4625
|
cursor?: InputMaybe<Scalars['String']['input']>;
|
|
4523
|
-
type?: Scalars['String']['input']
|
|
4626
|
+
type?: InputMaybe<Scalars['String']['input']>;
|
|
4524
4627
|
}>;
|
|
4525
4628
|
|
|
4526
4629
|
|
|
4527
|
-
export type GetCoinsQuery = { __typename?: 'Query', address
|
|
4630
|
+
export 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?:
|
|
4528
4631
|
| { __typename: 'AddressOwner', address?: { __typename?: 'Address', address: string } | null }
|
|
4529
4632
|
| { __typename: 'ConsensusAddressOwner', startVersion?: number | null, address?: { __typename?: 'Address', address: string } | null }
|
|
4530
4633
|
| { __typename: 'Immutable' }
|
|
4531
4634
|
| { __typename: 'ObjectOwner', address?: { __typename?: 'Address', address: string } | null }
|
|
4532
4635
|
| { __typename: 'Shared', initialSharedVersion?: number | null }
|
|
4533
|
-
| null, contents?: { __typename?: 'MoveValue',
|
|
4636
|
+
| null, contents?: { __typename?: 'MoveValue', json?: unknown | null, type?: { __typename?: 'MoveType', repr: string } | null } | null }> } | null } | null };
|
|
4637
|
+
|
|
4638
|
+
export type GetCurrentSystemStateQueryVariables = Exact<{ [key: string]: never; }>;
|
|
4639
|
+
|
|
4640
|
+
|
|
4641
|
+
export type GetCurrentSystemStateQuery = { __typename?: 'Query', epoch?: { __typename?: 'Epoch', epochId: number, referenceGasPrice?: string | null, startTimestamp?: string | null, protocolConfigs?: { __typename?: 'ProtocolConfigs', protocolVersion: number } | null, systemState?: { __typename?: 'MoveValue', json?: unknown | null } | null } | null };
|
|
4534
4642
|
|
|
4535
4643
|
export type GetDynamicFieldsQueryVariables = Exact<{
|
|
4536
4644
|
parentId: Scalars['HaneulAddress']['input'];
|
|
@@ -4539,10 +4647,10 @@ export type GetDynamicFieldsQueryVariables = Exact<{
|
|
|
4539
4647
|
}>;
|
|
4540
4648
|
|
|
4541
4649
|
|
|
4542
|
-
export type GetDynamicFieldsQuery = { __typename?: 'Query', address
|
|
4650
|
+
export 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?:
|
|
4543
4651
|
| { __typename: 'MoveObject', contents?: { __typename?: 'MoveValue', type?: { __typename?: 'MoveType', repr: string } | null } | null }
|
|
4544
4652
|
| { __typename: 'MoveValue', type?: { __typename?: 'MoveType', repr: string } | null }
|
|
4545
|
-
| null }> } | null } };
|
|
4653
|
+
| null }> } | null } | null };
|
|
4546
4654
|
|
|
4547
4655
|
export type GetMoveFunctionQueryVariables = Exact<{
|
|
4548
4656
|
package: Scalars['HaneulAddress']['input'];
|
|
@@ -4558,35 +4666,43 @@ export type GetReferenceGasPriceQueryVariables = Exact<{ [key: string]: never; }
|
|
|
4558
4666
|
|
|
4559
4667
|
export type GetReferenceGasPriceQuery = { __typename?: 'Query', epoch?: { __typename?: 'Epoch', referenceGasPrice?: string | null } | null };
|
|
4560
4668
|
|
|
4561
|
-
export type
|
|
4669
|
+
export type DefaultSuinsNameQueryVariables = Exact<{
|
|
4562
4670
|
address: Scalars['HaneulAddress']['input'];
|
|
4563
4671
|
}>;
|
|
4564
4672
|
|
|
4565
4673
|
|
|
4566
|
-
export type
|
|
4674
|
+
export type DefaultSuinsNameQuery = { __typename?: 'Query', address?: { __typename?: 'Address', defaultNameRecord?: { __typename?: 'NameRecord', domain: string } | null } | null };
|
|
4567
4675
|
|
|
4568
4676
|
export type GetOwnedObjectsQueryVariables = Exact<{
|
|
4569
4677
|
owner: Scalars['HaneulAddress']['input'];
|
|
4570
4678
|
limit?: InputMaybe<Scalars['Int']['input']>;
|
|
4571
4679
|
cursor?: InputMaybe<Scalars['String']['input']>;
|
|
4572
4680
|
filter?: InputMaybe<ObjectFilter>;
|
|
4681
|
+
includeContent?: InputMaybe<Scalars['Boolean']['input']>;
|
|
4682
|
+
includePreviousTransaction?: InputMaybe<Scalars['Boolean']['input']>;
|
|
4683
|
+
includeObjectBcs?: InputMaybe<Scalars['Boolean']['input']>;
|
|
4684
|
+
includeJson?: InputMaybe<Scalars['Boolean']['input']>;
|
|
4573
4685
|
}>;
|
|
4574
4686
|
|
|
4575
4687
|
|
|
4576
|
-
export type GetOwnedObjectsQuery = { __typename?: 'Query', address
|
|
4688
|
+
export 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, objectBcs?: string | null, contents?: { __typename?: 'MoveValue', bcs?: string | null, json?: unknown | null, type?: { __typename?: 'MoveType', repr: string } | null } | null, owner?:
|
|
4577
4689
|
| { __typename: 'AddressOwner', address?: { __typename?: 'Address', address: string } | null }
|
|
4578
4690
|
| { __typename: 'ConsensusAddressOwner', startVersion?: number | null, address?: { __typename?: 'Address', address: string } | null }
|
|
4579
4691
|
| { __typename: 'Immutable' }
|
|
4580
4692
|
| { __typename: 'ObjectOwner', address?: { __typename?: 'Address', address: string } | null }
|
|
4581
4693
|
| { __typename: 'Shared', initialSharedVersion?: number | null }
|
|
4582
|
-
| null, previousTransaction?: { __typename?: 'Transaction', digest: string } | null }> } | null } };
|
|
4694
|
+
| null, previousTransaction?: { __typename?: 'Transaction', digest: string } | null }> } | null } | null };
|
|
4583
4695
|
|
|
4584
4696
|
export type MultiGetObjectsQueryVariables = Exact<{
|
|
4585
4697
|
objectKeys: Array<ObjectKey> | ObjectKey;
|
|
4698
|
+
includeContent?: InputMaybe<Scalars['Boolean']['input']>;
|
|
4699
|
+
includePreviousTransaction?: InputMaybe<Scalars['Boolean']['input']>;
|
|
4700
|
+
includeObjectBcs?: InputMaybe<Scalars['Boolean']['input']>;
|
|
4701
|
+
includeJson?: InputMaybe<Scalars['Boolean']['input']>;
|
|
4586
4702
|
}>;
|
|
4587
4703
|
|
|
4588
4704
|
|
|
4589
|
-
export 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?:
|
|
4705
|
+
export type MultiGetObjectsQuery = { __typename?: 'Query', multiGetObjects: Array<{ __typename?: 'Object', address: string, digest?: string | null, version?: number | null, objectBcs?: string | null, asMoveObject?: { __typename?: 'MoveObject', contents?: { __typename?: 'MoveValue', bcs?: string | null, json?: unknown | null, type?: { __typename?: 'MoveType', repr: string } | null } | null } | null, asMovePackage?: { __typename: 'MovePackage' } | null, owner?:
|
|
4590
4706
|
| { __typename: 'AddressOwner', address?: { __typename?: 'Address', address: string } | null }
|
|
4591
4707
|
| { __typename: 'ConsensusAddressOwner', startVersion?: number | null, address?: { __typename?: 'Address', address: string } | null }
|
|
4592
4708
|
| { __typename: 'Immutable' }
|
|
@@ -4594,7 +4710,7 @@ export type MultiGetObjectsQuery = { __typename?: 'Query', multiGetObjects: Arra
|
|
|
4594
4710
|
| { __typename: 'Shared', initialSharedVersion?: number | null }
|
|
4595
4711
|
| null, previousTransaction?: { __typename?: 'Transaction', digest: string } | null } | null> };
|
|
4596
4712
|
|
|
4597
|
-
export 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?:
|
|
4713
|
+
export type Object_FieldsFragment = { __typename?: 'Object', address: string, digest?: string | null, version?: number | null, objectBcs?: string | null, asMoveObject?: { __typename?: 'MoveObject', contents?: { __typename?: 'MoveValue', bcs?: string | null, json?: unknown | null, type?: { __typename?: 'MoveType', repr: string } | null } | null } | null, asMovePackage?: { __typename: 'MovePackage' } | null, owner?:
|
|
4598
4714
|
| { __typename: 'AddressOwner', address?: { __typename?: 'Address', address: string } | null }
|
|
4599
4715
|
| { __typename: 'ConsensusAddressOwner', startVersion?: number | null, address?: { __typename?: 'Address', address: string } | null }
|
|
4600
4716
|
| { __typename: 'Immutable' }
|
|
@@ -4602,7 +4718,7 @@ export type Object_FieldsFragment = { __typename?: 'Object', address: string, di
|
|
|
4602
4718
|
| { __typename: 'Shared', initialSharedVersion?: number | null }
|
|
4603
4719
|
| null, previousTransaction?: { __typename?: 'Transaction', digest: string } | null };
|
|
4604
4720
|
|
|
4605
|
-
export 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?:
|
|
4721
|
+
export type Move_Object_FieldsFragment = { __typename?: 'MoveObject', address: string, digest?: string | null, version?: number | null, objectBcs?: string | null, contents?: { __typename?: 'MoveValue', bcs?: string | null, json?: unknown | null, type?: { __typename?: 'MoveType', repr: string } | null } | null, owner?:
|
|
4606
4722
|
| { __typename: 'AddressOwner', address?: { __typename?: 'Address', address: string } | null }
|
|
4607
4723
|
| { __typename: 'ConsensusAddressOwner', startVersion?: number | null, address?: { __typename?: 'Address', address: string } | null }
|
|
4608
4724
|
| { __typename: 'Immutable' }
|
|
@@ -4630,51 +4746,56 @@ export type Object_Owner_FieldsFragment =
|
|
|
4630
4746
|
|
|
4631
4747
|
export type SimulateTransactionQueryVariables = Exact<{
|
|
4632
4748
|
transaction: Scalars['JSON']['input'];
|
|
4749
|
+
includeTransaction?: InputMaybe<Scalars['Boolean']['input']>;
|
|
4750
|
+
includeEffects?: InputMaybe<Scalars['Boolean']['input']>;
|
|
4751
|
+
includeEvents?: InputMaybe<Scalars['Boolean']['input']>;
|
|
4752
|
+
includeBalanceChanges?: InputMaybe<Scalars['Boolean']['input']>;
|
|
4753
|
+
includeObjectTypes?: InputMaybe<Scalars['Boolean']['input']>;
|
|
4754
|
+
includeCommandResults?: InputMaybe<Scalars['Boolean']['input']>;
|
|
4755
|
+
includeBcs?: InputMaybe<Scalars['Boolean']['input']>;
|
|
4756
|
+
doGasSelection?: InputMaybe<Scalars['Boolean']['input']>;
|
|
4757
|
+
checksEnabled?: InputMaybe<Scalars['Boolean']['input']>;
|
|
4633
4758
|
}>;
|
|
4634
4759
|
|
|
4635
4760
|
|
|
4636
|
-
export 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,
|
|
4637
|
-
| { __typename: 'ConsensusObjectCancelled' }
|
|
4638
|
-
| { __typename: 'ConsensusObjectRead', object?: { __typename?: 'Object', asMoveObject?: { __typename?: 'MoveObject', address: string, contents?: { __typename?: 'MoveValue', type?: { __typename?: 'MoveType', repr: string } | null } | null } | null } | null }
|
|
4639
|
-
| { __typename: 'MutateConsensusStreamEnded' }
|
|
4640
|
-
| { __typename: 'PerEpochConfig' }
|
|
4641
|
-
| { __typename: 'ReadConsensusStreamEnded' }
|
|
4642
|
-
> } | 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 } };
|
|
4761
|
+
export type SimulateTransactionQuery = { __typename?: 'Query', simulateTransaction: { __typename?: 'SimulationResult', error?: string | null, effects?: { __typename?: 'TransactionEffects', transaction?: { __typename?: 'Transaction', digest: string, transactionJson?: unknown | null, transactionBcs?: string | null, signatures: Array<{ __typename?: 'UserSignature', signatureBytes?: string | null }>, effects?: { __typename?: 'TransactionEffects', status?: ExecutionStatus | null, effectsBcs?: string | null, effectsJson?: unknown | null, balanceChangesJson?: unknown | null, executionError?: { __typename?: 'ExecutionError', message: string, abortCode?: string | null, identifier?: string | null, constant?: string | null, sourceLineNumber?: number | null, instructionOffset?: number | null, module?: { __typename?: 'MoveModule', name: string, package?: { __typename?: 'MovePackage', address: string } | null } | null, function?: { __typename?: 'MoveFunction', name: string } | null } | null, epoch?: { __typename?: 'Epoch', epochId: number } | null, objectChanges?: { __typename?: 'ObjectChangeConnection', nodes: Array<{ __typename?: 'ObjectChange', address: string, outputState?: { __typename?: 'Object', asMoveObject?: { __typename?: 'MoveObject', contents?: { __typename?: 'MoveValue', type?: { __typename?: 'MoveType', repr: string } | null } | null } | null } | null }> } | null, events?: { __typename?: 'EventConnection', pageInfo: { __typename?: 'PageInfo', hasNextPage: boolean }, nodes: Array<{ __typename?: 'Event', transactionModule?: { __typename?: 'MoveModule', name: string, package?: { __typename?: 'MovePackage', address: string } | null } | null, sender?: { __typename?: 'Address', address: string } | null, contents?: { __typename?: 'MoveValue', bcs?: string | null, type?: { __typename?: 'MoveType', repr: string } | null } | null }> } | null } | null } | null } | null, outputs?: Array<{ __typename?: 'CommandResult', returnValues?: Array<{ __typename?: 'CommandOutput', value?: { __typename?: 'MoveValue', bcs?: string | null } | null }> | null, mutatedReferences?: Array<{ __typename?: 'CommandOutput', value?: { __typename?: 'MoveValue', bcs?: string | null } | null }> | null }> | null } };
|
|
4643
4762
|
|
|
4644
4763
|
export type ExecuteTransactionMutationVariables = Exact<{
|
|
4645
4764
|
transactionDataBcs: Scalars['Base64']['input'];
|
|
4646
4765
|
signatures: Array<Scalars['Base64']['input']> | Scalars['Base64']['input'];
|
|
4766
|
+
includeTransaction?: InputMaybe<Scalars['Boolean']['input']>;
|
|
4767
|
+
includeEffects?: InputMaybe<Scalars['Boolean']['input']>;
|
|
4768
|
+
includeEvents?: InputMaybe<Scalars['Boolean']['input']>;
|
|
4769
|
+
includeBalanceChanges?: InputMaybe<Scalars['Boolean']['input']>;
|
|
4770
|
+
includeObjectTypes?: InputMaybe<Scalars['Boolean']['input']>;
|
|
4771
|
+
includeBcs?: InputMaybe<Scalars['Boolean']['input']>;
|
|
4647
4772
|
}>;
|
|
4648
4773
|
|
|
4649
4774
|
|
|
4650
|
-
export 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,
|
|
4651
|
-
| { __typename: 'ConsensusObjectCancelled' }
|
|
4652
|
-
| { __typename: 'ConsensusObjectRead', object?: { __typename?: 'Object', asMoveObject?: { __typename?: 'MoveObject', address: string, contents?: { __typename?: 'MoveValue', type?: { __typename?: 'MoveType', repr: string } | null } | null } | null } | null }
|
|
4653
|
-
| { __typename: 'MutateConsensusStreamEnded' }
|
|
4654
|
-
| { __typename: 'PerEpochConfig' }
|
|
4655
|
-
| { __typename: 'ReadConsensusStreamEnded' }
|
|
4656
|
-
> } | 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 } };
|
|
4775
|
+
export type ExecuteTransactionMutation = { __typename?: 'Mutation', executeTransaction: { __typename?: 'ExecutionResult', errors?: Array<string> | null, effects?: { __typename?: 'TransactionEffects', transaction?: { __typename?: 'Transaction', digest: string, transactionJson?: unknown | null, transactionBcs?: string | null, signatures: Array<{ __typename?: 'UserSignature', signatureBytes?: string | null }>, effects?: { __typename?: 'TransactionEffects', status?: ExecutionStatus | null, effectsBcs?: string | null, effectsJson?: unknown | null, balanceChangesJson?: unknown | null, executionError?: { __typename?: 'ExecutionError', message: string, abortCode?: string | null, identifier?: string | null, constant?: string | null, sourceLineNumber?: number | null, instructionOffset?: number | null, module?: { __typename?: 'MoveModule', name: string, package?: { __typename?: 'MovePackage', address: string } | null } | null, function?: { __typename?: 'MoveFunction', name: string } | null } | null, epoch?: { __typename?: 'Epoch', epochId: number } | null, objectChanges?: { __typename?: 'ObjectChangeConnection', nodes: Array<{ __typename?: 'ObjectChange', address: string, outputState?: { __typename?: 'Object', asMoveObject?: { __typename?: 'MoveObject', contents?: { __typename?: 'MoveValue', type?: { __typename?: 'MoveType', repr: string } | null } | null } | null } | null }> } | null, events?: { __typename?: 'EventConnection', pageInfo: { __typename?: 'PageInfo', hasNextPage: boolean }, nodes: Array<{ __typename?: 'Event', transactionModule?: { __typename?: 'MoveModule', name: string, package?: { __typename?: 'MovePackage', address: string } | null } | null, sender?: { __typename?: 'Address', address: string } | null, contents?: { __typename?: 'MoveValue', bcs?: string | null, type?: { __typename?: 'MoveType', repr: string } | null } | null }> } | null } | null } | null } | null } };
|
|
4657
4776
|
|
|
4658
4777
|
export type GetTransactionBlockQueryVariables = Exact<{
|
|
4659
4778
|
digest: Scalars['String']['input'];
|
|
4779
|
+
includeTransaction?: InputMaybe<Scalars['Boolean']['input']>;
|
|
4780
|
+
includeEffects?: InputMaybe<Scalars['Boolean']['input']>;
|
|
4781
|
+
includeEvents?: InputMaybe<Scalars['Boolean']['input']>;
|
|
4782
|
+
includeBalanceChanges?: InputMaybe<Scalars['Boolean']['input']>;
|
|
4783
|
+
includeObjectTypes?: InputMaybe<Scalars['Boolean']['input']>;
|
|
4784
|
+
includeBcs?: InputMaybe<Scalars['Boolean']['input']>;
|
|
4660
4785
|
}>;
|
|
4661
4786
|
|
|
4662
4787
|
|
|
4663
|
-
export 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,
|
|
4664
|
-
| { __typename: 'ConsensusObjectCancelled' }
|
|
4665
|
-
| { __typename: 'ConsensusObjectRead', object?: { __typename?: 'Object', asMoveObject?: { __typename?: 'MoveObject', address: string, contents?: { __typename?: 'MoveValue', type?: { __typename?: 'MoveType', repr: string } | null } | null } | null } | null }
|
|
4666
|
-
| { __typename: 'MutateConsensusStreamEnded' }
|
|
4667
|
-
| { __typename: 'PerEpochConfig' }
|
|
4668
|
-
| { __typename: 'ReadConsensusStreamEnded' }
|
|
4669
|
-
> } | 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 };
|
|
4788
|
+
export type GetTransactionBlockQuery = { __typename?: 'Query', transaction?: { __typename?: 'Transaction', digest: string, transactionJson?: unknown | null, transactionBcs?: string | null, signatures: Array<{ __typename?: 'UserSignature', signatureBytes?: string | null }>, effects?: { __typename?: 'TransactionEffects', status?: ExecutionStatus | null, effectsBcs?: string | null, effectsJson?: unknown | null, balanceChangesJson?: unknown | null, executionError?: { __typename?: 'ExecutionError', message: string, abortCode?: string | null, identifier?: string | null, constant?: string | null, sourceLineNumber?: number | null, instructionOffset?: number | null, module?: { __typename?: 'MoveModule', name: string, package?: { __typename?: 'MovePackage', address: string } | null } | null, function?: { __typename?: 'MoveFunction', name: string } | null } | null, epoch?: { __typename?: 'Epoch', epochId: number } | null, objectChanges?: { __typename?: 'ObjectChangeConnection', nodes: Array<{ __typename?: 'ObjectChange', address: string, outputState?: { __typename?: 'Object', asMoveObject?: { __typename?: 'MoveObject', contents?: { __typename?: 'MoveValue', type?: { __typename?: 'MoveType', repr: string } | null } | null } | null } | null }> } | null, events?: { __typename?: 'EventConnection', pageInfo: { __typename?: 'PageInfo', hasNextPage: boolean }, nodes: Array<{ __typename?: 'Event', transactionModule?: { __typename?: 'MoveModule', name: string, package?: { __typename?: 'MovePackage', address: string } | null } | null, sender?: { __typename?: 'Address', address: string } | null, contents?: { __typename?: 'MoveValue', bcs?: string | null, type?: { __typename?: 'MoveType', repr: string } | null } | null }> } | null } | null } | null };
|
|
4670
4789
|
|
|
4671
|
-
export 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,
|
|
4672
|
-
|
|
4673
|
-
|
|
4674
|
-
|
|
4675
|
-
|
|
4676
|
-
|
|
4677
|
-
|
|
4790
|
+
export type Transaction_FieldsFragment = { __typename?: 'Transaction', digest: string, transactionJson?: unknown | null, transactionBcs?: string | null, signatures: Array<{ __typename?: 'UserSignature', signatureBytes?: string | null }>, effects?: { __typename?: 'TransactionEffects', status?: ExecutionStatus | null, effectsBcs?: string | null, effectsJson?: unknown | null, balanceChangesJson?: unknown | null, executionError?: { __typename?: 'ExecutionError', message: string, abortCode?: string | null, identifier?: string | null, constant?: string | null, sourceLineNumber?: number | null, instructionOffset?: number | null, module?: { __typename?: 'MoveModule', name: string, package?: { __typename?: 'MovePackage', address: string } | null } | null, function?: { __typename?: 'MoveFunction', name: string } | null } | null, epoch?: { __typename?: 'Epoch', epochId: number } | null, objectChanges?: { __typename?: 'ObjectChangeConnection', nodes: Array<{ __typename?: 'ObjectChange', address: string, outputState?: { __typename?: 'Object', asMoveObject?: { __typename?: 'MoveObject', contents?: { __typename?: 'MoveValue', type?: { __typename?: 'MoveType', repr: string } | null } | null } | null } | null }> } | null, events?: { __typename?: 'EventConnection', pageInfo: { __typename?: 'PageInfo', hasNextPage: boolean }, nodes: Array<{ __typename?: 'Event', transactionModule?: { __typename?: 'MoveModule', name: string, package?: { __typename?: 'MovePackage', address: string } | null } | null, sender?: { __typename?: 'Address', address: string } | null, contents?: { __typename?: 'MoveValue', bcs?: string | null, type?: { __typename?: 'MoveType', repr: string } | null } | null }> } | null } | null };
|
|
4791
|
+
|
|
4792
|
+
export type ResolveTransactionQueryVariables = Exact<{
|
|
4793
|
+
transaction: Scalars['JSON']['input'];
|
|
4794
|
+
doGasSelection?: InputMaybe<Scalars['Boolean']['input']>;
|
|
4795
|
+
}>;
|
|
4796
|
+
|
|
4797
|
+
|
|
4798
|
+
export type ResolveTransactionQuery = { __typename?: 'Query', simulateTransaction: { __typename?: 'SimulationResult', error?: string | null, effects?: { __typename?: 'TransactionEffects', transaction?: { __typename?: 'Transaction', transactionBcs?: string | null, effects?: { __typename?: 'TransactionEffects', status?: ExecutionStatus | null, executionError?: { __typename?: 'ExecutionError', message: string, abortCode?: string | null, identifier?: string | null, constant?: string | null, sourceLineNumber?: number | null, instructionOffset?: number | null, module?: { __typename?: 'MoveModule', name: string, package?: { __typename?: 'MovePackage', address: string } | null } | null, function?: { __typename?: 'MoveFunction', name: string } | null } | null } | null } | null } | null } };
|
|
4678
4799
|
|
|
4679
4800
|
export type VerifyZkLoginSignatureQueryVariables = Exact<{
|
|
4680
4801
|
bytes: Scalars['Base64']['input'];
|
|
@@ -4733,18 +4854,23 @@ export const Object_FieldsFragmentDoc = new TypedDocumentString(`
|
|
|
4733
4854
|
address
|
|
4734
4855
|
digest
|
|
4735
4856
|
version
|
|
4857
|
+
objectBcs @include(if: $includeObjectBcs)
|
|
4736
4858
|
asMoveObject {
|
|
4737
4859
|
contents {
|
|
4738
|
-
bcs
|
|
4860
|
+
bcs @include(if: $includeContent)
|
|
4861
|
+
json @include(if: $includeJson)
|
|
4739
4862
|
type {
|
|
4740
4863
|
repr
|
|
4741
4864
|
}
|
|
4742
4865
|
}
|
|
4743
4866
|
}
|
|
4867
|
+
asMovePackage {
|
|
4868
|
+
__typename
|
|
4869
|
+
}
|
|
4744
4870
|
owner {
|
|
4745
4871
|
...OBJECT_OWNER_FIELDS
|
|
4746
4872
|
}
|
|
4747
|
-
previousTransaction {
|
|
4873
|
+
previousTransaction @include(if: $includePreviousTransaction) {
|
|
4748
4874
|
digest
|
|
4749
4875
|
}
|
|
4750
4876
|
}
|
|
@@ -4775,8 +4901,10 @@ export const Move_Object_FieldsFragmentDoc = new TypedDocumentString(`
|
|
|
4775
4901
|
address
|
|
4776
4902
|
digest
|
|
4777
4903
|
version
|
|
4904
|
+
objectBcs @include(if: $includeObjectBcs)
|
|
4778
4905
|
contents {
|
|
4779
|
-
bcs
|
|
4906
|
+
bcs @include(if: $includeContent)
|
|
4907
|
+
json @include(if: $includeJson)
|
|
4780
4908
|
type {
|
|
4781
4909
|
repr
|
|
4782
4910
|
}
|
|
@@ -4784,7 +4912,7 @@ export const Move_Object_FieldsFragmentDoc = new TypedDocumentString(`
|
|
|
4784
4912
|
owner {
|
|
4785
4913
|
...OBJECT_OWNER_FIELDS
|
|
4786
4914
|
}
|
|
4787
|
-
previousTransaction {
|
|
4915
|
+
previousTransaction @include(if: $includePreviousTransaction) {
|
|
4788
4916
|
digest
|
|
4789
4917
|
}
|
|
4790
4918
|
}
|
|
@@ -4813,49 +4941,40 @@ export const Move_Object_FieldsFragmentDoc = new TypedDocumentString(`
|
|
|
4813
4941
|
export const Transaction_FieldsFragmentDoc = new TypedDocumentString(`
|
|
4814
4942
|
fragment TRANSACTION_FIELDS on Transaction {
|
|
4815
4943
|
digest
|
|
4816
|
-
|
|
4944
|
+
transactionJson @include(if: $includeTransaction)
|
|
4945
|
+
transactionBcs @include(if: $includeBcs)
|
|
4817
4946
|
signatures {
|
|
4818
4947
|
signatureBytes
|
|
4819
4948
|
}
|
|
4820
4949
|
effects {
|
|
4821
|
-
|
|
4822
|
-
|
|
4823
|
-
|
|
4824
|
-
|
|
4825
|
-
|
|
4826
|
-
|
|
4827
|
-
|
|
4828
|
-
|
|
4829
|
-
|
|
4830
|
-
|
|
4831
|
-
|
|
4832
|
-
|
|
4833
|
-
type {
|
|
4834
|
-
repr
|
|
4835
|
-
}
|
|
4836
|
-
}
|
|
4837
|
-
}
|
|
4838
|
-
}
|
|
4950
|
+
status
|
|
4951
|
+
executionError {
|
|
4952
|
+
message
|
|
4953
|
+
abortCode
|
|
4954
|
+
identifier
|
|
4955
|
+
constant
|
|
4956
|
+
sourceLineNumber
|
|
4957
|
+
instructionOffset
|
|
4958
|
+
module {
|
|
4959
|
+
name
|
|
4960
|
+
package {
|
|
4961
|
+
address
|
|
4839
4962
|
}
|
|
4840
4963
|
}
|
|
4964
|
+
function {
|
|
4965
|
+
name
|
|
4966
|
+
}
|
|
4841
4967
|
}
|
|
4842
|
-
|
|
4968
|
+
epoch {
|
|
4969
|
+
epochId
|
|
4970
|
+
}
|
|
4971
|
+
effectsBcs @include(if: $includeEffects)
|
|
4972
|
+
effectsJson @include(if: $includeObjectTypes)
|
|
4973
|
+
objectChanges(first: 50) @include(if: $includeObjectTypes) {
|
|
4843
4974
|
nodes {
|
|
4844
4975
|
address
|
|
4845
|
-
inputState {
|
|
4846
|
-
version
|
|
4847
|
-
asMoveObject {
|
|
4848
|
-
address
|
|
4849
|
-
contents {
|
|
4850
|
-
type {
|
|
4851
|
-
repr
|
|
4852
|
-
}
|
|
4853
|
-
}
|
|
4854
|
-
}
|
|
4855
|
-
}
|
|
4856
4976
|
outputState {
|
|
4857
4977
|
asMoveObject {
|
|
4858
|
-
address
|
|
4859
4978
|
contents {
|
|
4860
4979
|
type {
|
|
4861
4980
|
repr
|
|
@@ -4865,18 +4984,27 @@ export const Transaction_FieldsFragmentDoc = new TypedDocumentString(`
|
|
|
4865
4984
|
}
|
|
4866
4985
|
}
|
|
4867
4986
|
}
|
|
4868
|
-
|
|
4987
|
+
balanceChangesJson @include(if: $includeBalanceChanges)
|
|
4988
|
+
events(first: 50) @include(if: $includeEvents) {
|
|
4869
4989
|
pageInfo {
|
|
4870
4990
|
hasNextPage
|
|
4871
4991
|
}
|
|
4872
4992
|
nodes {
|
|
4873
|
-
|
|
4993
|
+
transactionModule {
|
|
4994
|
+
package {
|
|
4995
|
+
address
|
|
4996
|
+
}
|
|
4997
|
+
name
|
|
4998
|
+
}
|
|
4999
|
+
sender {
|
|
4874
5000
|
address
|
|
4875
5001
|
}
|
|
4876
|
-
|
|
4877
|
-
|
|
5002
|
+
contents {
|
|
5003
|
+
type {
|
|
5004
|
+
repr
|
|
5005
|
+
}
|
|
5006
|
+
bcs
|
|
4878
5007
|
}
|
|
4879
|
-
amount
|
|
4880
5008
|
}
|
|
4881
5009
|
}
|
|
4882
5010
|
}
|
|
@@ -4895,25 +5023,46 @@ export const GetAllBalancesDocument = new TypedDocumentString(`
|
|
|
4895
5023
|
repr
|
|
4896
5024
|
}
|
|
4897
5025
|
totalBalance
|
|
5026
|
+
addressBalance
|
|
4898
5027
|
}
|
|
4899
5028
|
}
|
|
4900
5029
|
}
|
|
4901
5030
|
}
|
|
4902
5031
|
`) as unknown as TypedDocumentString<GetAllBalancesQuery, GetAllBalancesQueryVariables>;
|
|
4903
5032
|
export const GetBalanceDocument = new TypedDocumentString(`
|
|
4904
|
-
query getBalance($owner: HaneulAddress!, $coinType: String
|
|
5033
|
+
query getBalance($owner: HaneulAddress!, $coinType: String = "0x2::haneul::HANEUL") {
|
|
4905
5034
|
address(address: $owner) {
|
|
4906
5035
|
balance(coinType: $coinType) {
|
|
4907
5036
|
coinType {
|
|
4908
5037
|
repr
|
|
4909
5038
|
}
|
|
4910
5039
|
totalBalance
|
|
5040
|
+
addressBalance
|
|
4911
5041
|
}
|
|
4912
5042
|
}
|
|
4913
5043
|
}
|
|
4914
5044
|
`) as unknown as TypedDocumentString<GetBalanceQuery, GetBalanceQueryVariables>;
|
|
5045
|
+
export const GetChainIdentifierDocument = new TypedDocumentString(`
|
|
5046
|
+
query getChainIdentifier {
|
|
5047
|
+
checkpoint(sequenceNumber: 0) {
|
|
5048
|
+
digest
|
|
5049
|
+
}
|
|
5050
|
+
}
|
|
5051
|
+
`) as unknown as TypedDocumentString<GetChainIdentifierQuery, GetChainIdentifierQueryVariables>;
|
|
5052
|
+
export const GetCoinMetadataDocument = new TypedDocumentString(`
|
|
5053
|
+
query getCoinMetadata($coinType: String!) {
|
|
5054
|
+
coinMetadata(coinType: $coinType) {
|
|
5055
|
+
address
|
|
5056
|
+
decimals
|
|
5057
|
+
name
|
|
5058
|
+
symbol
|
|
5059
|
+
description
|
|
5060
|
+
iconUrl
|
|
5061
|
+
}
|
|
5062
|
+
}
|
|
5063
|
+
`) as unknown as TypedDocumentString<GetCoinMetadataQuery, GetCoinMetadataQueryVariables>;
|
|
4915
5064
|
export const GetCoinsDocument = new TypedDocumentString(`
|
|
4916
|
-
query getCoins($owner: HaneulAddress!, $first: Int, $cursor: String, $type: String
|
|
5065
|
+
query getCoins($owner: HaneulAddress!, $first: Int, $cursor: String, $type: String = "0x2::coin::Coin<0x2::haneul::HANEUL>") {
|
|
4917
5066
|
address(address: $owner) {
|
|
4918
5067
|
address
|
|
4919
5068
|
objects(first: $first, after: $cursor, filter: {type: $type}) {
|
|
@@ -4926,7 +5075,6 @@ export const GetCoinsDocument = new TypedDocumentString(`
|
|
|
4926
5075
|
...OBJECT_OWNER_FIELDS
|
|
4927
5076
|
}
|
|
4928
5077
|
contents {
|
|
4929
|
-
bcs
|
|
4930
5078
|
json
|
|
4931
5079
|
type {
|
|
4932
5080
|
repr
|
|
@@ -4935,9 +5083,6 @@ export const GetCoinsDocument = new TypedDocumentString(`
|
|
|
4935
5083
|
address
|
|
4936
5084
|
version
|
|
4937
5085
|
digest
|
|
4938
|
-
previousTransaction {
|
|
4939
|
-
digest
|
|
4940
|
-
}
|
|
4941
5086
|
}
|
|
4942
5087
|
}
|
|
4943
5088
|
}
|
|
@@ -4964,6 +5109,21 @@ export const GetCoinsDocument = new TypedDocumentString(`
|
|
|
4964
5109
|
}
|
|
4965
5110
|
}
|
|
4966
5111
|
}`) as unknown as TypedDocumentString<GetCoinsQuery, GetCoinsQueryVariables>;
|
|
5112
|
+
export const GetCurrentSystemStateDocument = new TypedDocumentString(`
|
|
5113
|
+
query getCurrentSystemState {
|
|
5114
|
+
epoch {
|
|
5115
|
+
epochId
|
|
5116
|
+
referenceGasPrice
|
|
5117
|
+
startTimestamp
|
|
5118
|
+
protocolConfigs {
|
|
5119
|
+
protocolVersion
|
|
5120
|
+
}
|
|
5121
|
+
systemState {
|
|
5122
|
+
json
|
|
5123
|
+
}
|
|
5124
|
+
}
|
|
5125
|
+
}
|
|
5126
|
+
`) as unknown as TypedDocumentString<GetCurrentSystemStateQuery, GetCurrentSystemStateQueryVariables>;
|
|
4967
5127
|
export const GetDynamicFieldsDocument = new TypedDocumentString(`
|
|
4968
5128
|
query getDynamicFields($parentId: HaneulAddress!, $first: Int, $cursor: String) {
|
|
4969
5129
|
address(address: $parentId) {
|
|
@@ -5028,15 +5188,17 @@ export const GetReferenceGasPriceDocument = new TypedDocumentString(`
|
|
|
5028
5188
|
}
|
|
5029
5189
|
}
|
|
5030
5190
|
`) as unknown as TypedDocumentString<GetReferenceGasPriceQuery, GetReferenceGasPriceQueryVariables>;
|
|
5031
|
-
export const
|
|
5032
|
-
query
|
|
5191
|
+
export const DefaultSuinsNameDocument = new TypedDocumentString(`
|
|
5192
|
+
query defaultSuinsName($address: HaneulAddress!) {
|
|
5033
5193
|
address(address: $address) {
|
|
5034
|
-
|
|
5194
|
+
defaultNameRecord {
|
|
5195
|
+
domain
|
|
5196
|
+
}
|
|
5035
5197
|
}
|
|
5036
5198
|
}
|
|
5037
|
-
`) as unknown as TypedDocumentString<
|
|
5199
|
+
`) as unknown as TypedDocumentString<DefaultSuinsNameQuery, DefaultSuinsNameQueryVariables>;
|
|
5038
5200
|
export const GetOwnedObjectsDocument = new TypedDocumentString(`
|
|
5039
|
-
query getOwnedObjects($owner: HaneulAddress!, $limit: Int, $cursor: String, $filter: ObjectFilter) {
|
|
5201
|
+
query getOwnedObjects($owner: HaneulAddress!, $limit: Int, $cursor: String, $filter: ObjectFilter, $includeContent: Boolean = false, $includePreviousTransaction: Boolean = false, $includeObjectBcs: Boolean = false, $includeJson: Boolean = false) {
|
|
5040
5202
|
address(address: $owner) {
|
|
5041
5203
|
objects(first: $limit, after: $cursor, filter: $filter) {
|
|
5042
5204
|
pageInfo {
|
|
@@ -5053,8 +5215,10 @@ export const GetOwnedObjectsDocument = new TypedDocumentString(`
|
|
|
5053
5215
|
address
|
|
5054
5216
|
digest
|
|
5055
5217
|
version
|
|
5218
|
+
objectBcs @include(if: $includeObjectBcs)
|
|
5056
5219
|
contents {
|
|
5057
|
-
bcs
|
|
5220
|
+
bcs @include(if: $includeContent)
|
|
5221
|
+
json @include(if: $includeJson)
|
|
5058
5222
|
type {
|
|
5059
5223
|
repr
|
|
5060
5224
|
}
|
|
@@ -5062,7 +5226,7 @@ export const GetOwnedObjectsDocument = new TypedDocumentString(`
|
|
|
5062
5226
|
owner {
|
|
5063
5227
|
...OBJECT_OWNER_FIELDS
|
|
5064
5228
|
}
|
|
5065
|
-
previousTransaction {
|
|
5229
|
+
previousTransaction @include(if: $includePreviousTransaction) {
|
|
5066
5230
|
digest
|
|
5067
5231
|
}
|
|
5068
5232
|
}
|
|
@@ -5089,7 +5253,7 @@ fragment OBJECT_OWNER_FIELDS on Owner {
|
|
|
5089
5253
|
}
|
|
5090
5254
|
}`) as unknown as TypedDocumentString<GetOwnedObjectsQuery, GetOwnedObjectsQueryVariables>;
|
|
5091
5255
|
export const MultiGetObjectsDocument = new TypedDocumentString(`
|
|
5092
|
-
query multiGetObjects($objectKeys: [ObjectKey!]
|
|
5256
|
+
query multiGetObjects($objectKeys: [ObjectKey!]!, $includeContent: Boolean = false, $includePreviousTransaction: Boolean = false, $includeObjectBcs: Boolean = false, $includeJson: Boolean = false) {
|
|
5093
5257
|
multiGetObjects(keys: $objectKeys) {
|
|
5094
5258
|
...OBJECT_FIELDS
|
|
5095
5259
|
}
|
|
@@ -5098,18 +5262,23 @@ export const MultiGetObjectsDocument = new TypedDocumentString(`
|
|
|
5098
5262
|
address
|
|
5099
5263
|
digest
|
|
5100
5264
|
version
|
|
5265
|
+
objectBcs @include(if: $includeObjectBcs)
|
|
5101
5266
|
asMoveObject {
|
|
5102
5267
|
contents {
|
|
5103
|
-
bcs
|
|
5268
|
+
bcs @include(if: $includeContent)
|
|
5269
|
+
json @include(if: $includeJson)
|
|
5104
5270
|
type {
|
|
5105
5271
|
repr
|
|
5106
5272
|
}
|
|
5107
5273
|
}
|
|
5108
5274
|
}
|
|
5275
|
+
asMovePackage {
|
|
5276
|
+
__typename
|
|
5277
|
+
}
|
|
5109
5278
|
owner {
|
|
5110
5279
|
...OBJECT_OWNER_FIELDS
|
|
5111
5280
|
}
|
|
5112
|
-
previousTransaction {
|
|
5281
|
+
previousTransaction @include(if: $includePreviousTransaction) {
|
|
5113
5282
|
digest
|
|
5114
5283
|
}
|
|
5115
5284
|
}
|
|
@@ -5136,61 +5305,68 @@ fragment OBJECT_OWNER_FIELDS on Owner {
|
|
|
5136
5305
|
}
|
|
5137
5306
|
}`) as unknown as TypedDocumentString<MultiGetObjectsQuery, MultiGetObjectsQueryVariables>;
|
|
5138
5307
|
export const SimulateTransactionDocument = new TypedDocumentString(`
|
|
5139
|
-
query simulateTransaction($transaction: JSON
|
|
5140
|
-
simulateTransaction(
|
|
5308
|
+
query simulateTransaction($transaction: JSON!, $includeTransaction: Boolean = false, $includeEffects: Boolean = false, $includeEvents: Boolean = false, $includeBalanceChanges: Boolean = false, $includeObjectTypes: Boolean = false, $includeCommandResults: Boolean = false, $includeBcs: Boolean = false, $doGasSelection: Boolean = false, $checksEnabled: Boolean = true) {
|
|
5309
|
+
simulateTransaction(
|
|
5310
|
+
transaction: $transaction
|
|
5311
|
+
doGasSelection: $doGasSelection
|
|
5312
|
+
checksEnabled: $checksEnabled
|
|
5313
|
+
) {
|
|
5141
5314
|
error
|
|
5142
5315
|
effects {
|
|
5143
5316
|
transaction {
|
|
5144
5317
|
...TRANSACTION_FIELDS
|
|
5145
5318
|
}
|
|
5146
5319
|
}
|
|
5320
|
+
outputs @include(if: $includeCommandResults) {
|
|
5321
|
+
returnValues {
|
|
5322
|
+
value {
|
|
5323
|
+
bcs
|
|
5324
|
+
}
|
|
5325
|
+
}
|
|
5326
|
+
mutatedReferences {
|
|
5327
|
+
value {
|
|
5328
|
+
bcs
|
|
5329
|
+
}
|
|
5330
|
+
}
|
|
5331
|
+
}
|
|
5147
5332
|
}
|
|
5148
5333
|
}
|
|
5149
5334
|
fragment TRANSACTION_FIELDS on Transaction {
|
|
5150
5335
|
digest
|
|
5151
|
-
|
|
5336
|
+
transactionJson @include(if: $includeTransaction)
|
|
5337
|
+
transactionBcs @include(if: $includeBcs)
|
|
5152
5338
|
signatures {
|
|
5153
5339
|
signatureBytes
|
|
5154
5340
|
}
|
|
5155
5341
|
effects {
|
|
5156
|
-
|
|
5157
|
-
|
|
5158
|
-
|
|
5159
|
-
|
|
5160
|
-
|
|
5161
|
-
|
|
5162
|
-
|
|
5163
|
-
|
|
5164
|
-
|
|
5165
|
-
|
|
5166
|
-
|
|
5167
|
-
|
|
5168
|
-
type {
|
|
5169
|
-
repr
|
|
5170
|
-
}
|
|
5171
|
-
}
|
|
5172
|
-
}
|
|
5173
|
-
}
|
|
5342
|
+
status
|
|
5343
|
+
executionError {
|
|
5344
|
+
message
|
|
5345
|
+
abortCode
|
|
5346
|
+
identifier
|
|
5347
|
+
constant
|
|
5348
|
+
sourceLineNumber
|
|
5349
|
+
instructionOffset
|
|
5350
|
+
module {
|
|
5351
|
+
name
|
|
5352
|
+
package {
|
|
5353
|
+
address
|
|
5174
5354
|
}
|
|
5175
5355
|
}
|
|
5356
|
+
function {
|
|
5357
|
+
name
|
|
5358
|
+
}
|
|
5176
5359
|
}
|
|
5177
|
-
|
|
5360
|
+
epoch {
|
|
5361
|
+
epochId
|
|
5362
|
+
}
|
|
5363
|
+
effectsBcs @include(if: $includeEffects)
|
|
5364
|
+
effectsJson @include(if: $includeObjectTypes)
|
|
5365
|
+
objectChanges(first: 50) @include(if: $includeObjectTypes) {
|
|
5178
5366
|
nodes {
|
|
5179
5367
|
address
|
|
5180
|
-
inputState {
|
|
5181
|
-
version
|
|
5182
|
-
asMoveObject {
|
|
5183
|
-
address
|
|
5184
|
-
contents {
|
|
5185
|
-
type {
|
|
5186
|
-
repr
|
|
5187
|
-
}
|
|
5188
|
-
}
|
|
5189
|
-
}
|
|
5190
|
-
}
|
|
5191
5368
|
outputState {
|
|
5192
5369
|
asMoveObject {
|
|
5193
|
-
address
|
|
5194
5370
|
contents {
|
|
5195
5371
|
type {
|
|
5196
5372
|
repr
|
|
@@ -5200,24 +5376,33 @@ export const SimulateTransactionDocument = new TypedDocumentString(`
|
|
|
5200
5376
|
}
|
|
5201
5377
|
}
|
|
5202
5378
|
}
|
|
5203
|
-
|
|
5379
|
+
balanceChangesJson @include(if: $includeBalanceChanges)
|
|
5380
|
+
events(first: 50) @include(if: $includeEvents) {
|
|
5204
5381
|
pageInfo {
|
|
5205
5382
|
hasNextPage
|
|
5206
5383
|
}
|
|
5207
5384
|
nodes {
|
|
5208
|
-
|
|
5385
|
+
transactionModule {
|
|
5386
|
+
package {
|
|
5387
|
+
address
|
|
5388
|
+
}
|
|
5389
|
+
name
|
|
5390
|
+
}
|
|
5391
|
+
sender {
|
|
5209
5392
|
address
|
|
5210
5393
|
}
|
|
5211
|
-
|
|
5212
|
-
|
|
5394
|
+
contents {
|
|
5395
|
+
type {
|
|
5396
|
+
repr
|
|
5397
|
+
}
|
|
5398
|
+
bcs
|
|
5213
5399
|
}
|
|
5214
|
-
amount
|
|
5215
5400
|
}
|
|
5216
5401
|
}
|
|
5217
5402
|
}
|
|
5218
5403
|
}`) as unknown as TypedDocumentString<SimulateTransactionQuery, SimulateTransactionQueryVariables>;
|
|
5219
5404
|
export const ExecuteTransactionDocument = new TypedDocumentString(`
|
|
5220
|
-
mutation executeTransaction($transactionDataBcs: Base64!, $signatures: [Base64!]
|
|
5405
|
+
mutation executeTransaction($transactionDataBcs: Base64!, $signatures: [Base64!]!, $includeTransaction: Boolean = false, $includeEffects: Boolean = false, $includeEvents: Boolean = false, $includeBalanceChanges: Boolean = false, $includeObjectTypes: Boolean = false, $includeBcs: Boolean = false) {
|
|
5221
5406
|
executeTransaction(
|
|
5222
5407
|
transactionDataBcs: $transactionDataBcs
|
|
5223
5408
|
signatures: $signatures
|
|
@@ -5232,49 +5417,40 @@ export const ExecuteTransactionDocument = new TypedDocumentString(`
|
|
|
5232
5417
|
}
|
|
5233
5418
|
fragment TRANSACTION_FIELDS on Transaction {
|
|
5234
5419
|
digest
|
|
5235
|
-
|
|
5420
|
+
transactionJson @include(if: $includeTransaction)
|
|
5421
|
+
transactionBcs @include(if: $includeBcs)
|
|
5236
5422
|
signatures {
|
|
5237
5423
|
signatureBytes
|
|
5238
5424
|
}
|
|
5239
5425
|
effects {
|
|
5240
|
-
|
|
5241
|
-
|
|
5242
|
-
|
|
5243
|
-
|
|
5244
|
-
|
|
5245
|
-
|
|
5246
|
-
|
|
5247
|
-
|
|
5248
|
-
|
|
5249
|
-
|
|
5250
|
-
|
|
5251
|
-
|
|
5252
|
-
type {
|
|
5253
|
-
repr
|
|
5254
|
-
}
|
|
5255
|
-
}
|
|
5256
|
-
}
|
|
5257
|
-
}
|
|
5426
|
+
status
|
|
5427
|
+
executionError {
|
|
5428
|
+
message
|
|
5429
|
+
abortCode
|
|
5430
|
+
identifier
|
|
5431
|
+
constant
|
|
5432
|
+
sourceLineNumber
|
|
5433
|
+
instructionOffset
|
|
5434
|
+
module {
|
|
5435
|
+
name
|
|
5436
|
+
package {
|
|
5437
|
+
address
|
|
5258
5438
|
}
|
|
5259
5439
|
}
|
|
5440
|
+
function {
|
|
5441
|
+
name
|
|
5442
|
+
}
|
|
5443
|
+
}
|
|
5444
|
+
epoch {
|
|
5445
|
+
epochId
|
|
5260
5446
|
}
|
|
5261
|
-
|
|
5447
|
+
effectsBcs @include(if: $includeEffects)
|
|
5448
|
+
effectsJson @include(if: $includeObjectTypes)
|
|
5449
|
+
objectChanges(first: 50) @include(if: $includeObjectTypes) {
|
|
5262
5450
|
nodes {
|
|
5263
5451
|
address
|
|
5264
|
-
inputState {
|
|
5265
|
-
version
|
|
5266
|
-
asMoveObject {
|
|
5267
|
-
address
|
|
5268
|
-
contents {
|
|
5269
|
-
type {
|
|
5270
|
-
repr
|
|
5271
|
-
}
|
|
5272
|
-
}
|
|
5273
|
-
}
|
|
5274
|
-
}
|
|
5275
5452
|
outputState {
|
|
5276
5453
|
asMoveObject {
|
|
5277
|
-
address
|
|
5278
5454
|
contents {
|
|
5279
5455
|
type {
|
|
5280
5456
|
repr
|
|
@@ -5284,73 +5460,73 @@ export const ExecuteTransactionDocument = new TypedDocumentString(`
|
|
|
5284
5460
|
}
|
|
5285
5461
|
}
|
|
5286
5462
|
}
|
|
5287
|
-
|
|
5463
|
+
balanceChangesJson @include(if: $includeBalanceChanges)
|
|
5464
|
+
events(first: 50) @include(if: $includeEvents) {
|
|
5288
5465
|
pageInfo {
|
|
5289
5466
|
hasNextPage
|
|
5290
5467
|
}
|
|
5291
5468
|
nodes {
|
|
5292
|
-
|
|
5469
|
+
transactionModule {
|
|
5470
|
+
package {
|
|
5471
|
+
address
|
|
5472
|
+
}
|
|
5473
|
+
name
|
|
5474
|
+
}
|
|
5475
|
+
sender {
|
|
5293
5476
|
address
|
|
5294
5477
|
}
|
|
5295
|
-
|
|
5296
|
-
|
|
5478
|
+
contents {
|
|
5479
|
+
type {
|
|
5480
|
+
repr
|
|
5481
|
+
}
|
|
5482
|
+
bcs
|
|
5297
5483
|
}
|
|
5298
|
-
amount
|
|
5299
5484
|
}
|
|
5300
5485
|
}
|
|
5301
5486
|
}
|
|
5302
5487
|
}`) as unknown as TypedDocumentString<ExecuteTransactionMutation, ExecuteTransactionMutationVariables>;
|
|
5303
5488
|
export const GetTransactionBlockDocument = new TypedDocumentString(`
|
|
5304
|
-
query getTransactionBlock($digest: String
|
|
5489
|
+
query getTransactionBlock($digest: String!, $includeTransaction: Boolean = false, $includeEffects: Boolean = false, $includeEvents: Boolean = false, $includeBalanceChanges: Boolean = false, $includeObjectTypes: Boolean = false, $includeBcs: Boolean = false) {
|
|
5305
5490
|
transaction(digest: $digest) {
|
|
5306
5491
|
...TRANSACTION_FIELDS
|
|
5307
5492
|
}
|
|
5308
5493
|
}
|
|
5309
5494
|
fragment TRANSACTION_FIELDS on Transaction {
|
|
5310
5495
|
digest
|
|
5311
|
-
|
|
5496
|
+
transactionJson @include(if: $includeTransaction)
|
|
5497
|
+
transactionBcs @include(if: $includeBcs)
|
|
5312
5498
|
signatures {
|
|
5313
5499
|
signatureBytes
|
|
5314
5500
|
}
|
|
5315
5501
|
effects {
|
|
5316
|
-
|
|
5317
|
-
|
|
5318
|
-
|
|
5319
|
-
|
|
5320
|
-
|
|
5321
|
-
|
|
5322
|
-
|
|
5323
|
-
|
|
5324
|
-
|
|
5325
|
-
|
|
5326
|
-
|
|
5327
|
-
|
|
5328
|
-
type {
|
|
5329
|
-
repr
|
|
5330
|
-
}
|
|
5331
|
-
}
|
|
5332
|
-
}
|
|
5333
|
-
}
|
|
5502
|
+
status
|
|
5503
|
+
executionError {
|
|
5504
|
+
message
|
|
5505
|
+
abortCode
|
|
5506
|
+
identifier
|
|
5507
|
+
constant
|
|
5508
|
+
sourceLineNumber
|
|
5509
|
+
instructionOffset
|
|
5510
|
+
module {
|
|
5511
|
+
name
|
|
5512
|
+
package {
|
|
5513
|
+
address
|
|
5334
5514
|
}
|
|
5335
5515
|
}
|
|
5516
|
+
function {
|
|
5517
|
+
name
|
|
5518
|
+
}
|
|
5336
5519
|
}
|
|
5337
|
-
|
|
5520
|
+
epoch {
|
|
5521
|
+
epochId
|
|
5522
|
+
}
|
|
5523
|
+
effectsBcs @include(if: $includeEffects)
|
|
5524
|
+
effectsJson @include(if: $includeObjectTypes)
|
|
5525
|
+
objectChanges(first: 50) @include(if: $includeObjectTypes) {
|
|
5338
5526
|
nodes {
|
|
5339
5527
|
address
|
|
5340
|
-
inputState {
|
|
5341
|
-
version
|
|
5342
|
-
asMoveObject {
|
|
5343
|
-
address
|
|
5344
|
-
contents {
|
|
5345
|
-
type {
|
|
5346
|
-
repr
|
|
5347
|
-
}
|
|
5348
|
-
}
|
|
5349
|
-
}
|
|
5350
|
-
}
|
|
5351
5528
|
outputState {
|
|
5352
5529
|
asMoveObject {
|
|
5353
|
-
address
|
|
5354
5530
|
contents {
|
|
5355
5531
|
type {
|
|
5356
5532
|
repr
|
|
@@ -5360,22 +5536,63 @@ export const GetTransactionBlockDocument = new TypedDocumentString(`
|
|
|
5360
5536
|
}
|
|
5361
5537
|
}
|
|
5362
5538
|
}
|
|
5363
|
-
|
|
5539
|
+
balanceChangesJson @include(if: $includeBalanceChanges)
|
|
5540
|
+
events(first: 50) @include(if: $includeEvents) {
|
|
5364
5541
|
pageInfo {
|
|
5365
5542
|
hasNextPage
|
|
5366
5543
|
}
|
|
5367
5544
|
nodes {
|
|
5368
|
-
|
|
5545
|
+
transactionModule {
|
|
5546
|
+
package {
|
|
5547
|
+
address
|
|
5548
|
+
}
|
|
5549
|
+
name
|
|
5550
|
+
}
|
|
5551
|
+
sender {
|
|
5369
5552
|
address
|
|
5370
5553
|
}
|
|
5371
|
-
|
|
5372
|
-
|
|
5554
|
+
contents {
|
|
5555
|
+
type {
|
|
5556
|
+
repr
|
|
5557
|
+
}
|
|
5558
|
+
bcs
|
|
5373
5559
|
}
|
|
5374
|
-
amount
|
|
5375
5560
|
}
|
|
5376
5561
|
}
|
|
5377
5562
|
}
|
|
5378
5563
|
}`) as unknown as TypedDocumentString<GetTransactionBlockQuery, GetTransactionBlockQueryVariables>;
|
|
5564
|
+
export const ResolveTransactionDocument = new TypedDocumentString(`
|
|
5565
|
+
query resolveTransaction($transaction: JSON!, $doGasSelection: Boolean = true) {
|
|
5566
|
+
simulateTransaction(transaction: $transaction, doGasSelection: $doGasSelection) {
|
|
5567
|
+
error
|
|
5568
|
+
effects {
|
|
5569
|
+
transaction {
|
|
5570
|
+
transactionBcs
|
|
5571
|
+
effects {
|
|
5572
|
+
status
|
|
5573
|
+
executionError {
|
|
5574
|
+
message
|
|
5575
|
+
abortCode
|
|
5576
|
+
identifier
|
|
5577
|
+
constant
|
|
5578
|
+
sourceLineNumber
|
|
5579
|
+
instructionOffset
|
|
5580
|
+
module {
|
|
5581
|
+
name
|
|
5582
|
+
package {
|
|
5583
|
+
address
|
|
5584
|
+
}
|
|
5585
|
+
}
|
|
5586
|
+
function {
|
|
5587
|
+
name
|
|
5588
|
+
}
|
|
5589
|
+
}
|
|
5590
|
+
}
|
|
5591
|
+
}
|
|
5592
|
+
}
|
|
5593
|
+
}
|
|
5594
|
+
}
|
|
5595
|
+
`) as unknown as TypedDocumentString<ResolveTransactionQuery, ResolveTransactionQueryVariables>;
|
|
5379
5596
|
export const VerifyZkLoginSignatureDocument = new TypedDocumentString(`
|
|
5380
5597
|
query verifyZkLoginSignature($bytes: Base64!, $signature: Base64!, $intentScope: ZkLoginIntentScope!, $author: HaneulAddress!) {
|
|
5381
5598
|
verifyZkLoginSignature(
|