@mysten/sui 2.6.0 → 2.8.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (99) hide show
  1. package/CHANGELOG.md +22 -0
  2. package/dist/bcs/bcs.d.mts +6 -6
  3. package/dist/bcs/index.d.mts +20 -20
  4. package/dist/client/types.d.mts +17 -0
  5. package/dist/client/types.d.mts.map +1 -1
  6. package/dist/cryptography/signature.d.mts +14 -14
  7. package/dist/graphql/core.d.mts.map +1 -1
  8. package/dist/graphql/core.mjs +21 -8
  9. package/dist/graphql/core.mjs.map +1 -1
  10. package/dist/graphql/generated/queries.d.mts.map +1 -1
  11. package/dist/graphql/generated/queries.mjs +18 -3
  12. package/dist/graphql/generated/queries.mjs.map +1 -1
  13. package/dist/graphql/generated/tada-env.d.mts +703 -73
  14. package/dist/grpc/core.d.mts.map +1 -1
  15. package/dist/grpc/core.mjs +15 -2
  16. package/dist/grpc/core.mjs.map +1 -1
  17. package/dist/grpc/proto/sui/rpc/v2/move_package_service.client.d.mts +4 -4
  18. package/dist/grpc/proto/sui/rpc/v2/object.d.mts +38 -1
  19. package/dist/grpc/proto/sui/rpc/v2/object.d.mts.map +1 -1
  20. package/dist/grpc/proto/sui/rpc/v2/object.mjs +26 -1
  21. package/dist/grpc/proto/sui/rpc/v2/object.mjs.map +1 -1
  22. package/dist/grpc/proto/sui/rpc/v2/signature_verification_service.client.d.mts +4 -4
  23. package/dist/grpc/proto/sui/rpc/v2/state_service.client.d.mts +4 -4
  24. package/dist/grpc/proto/sui/rpc/v2/subscription_service.client.d.mts +4 -4
  25. package/dist/grpc/proto/sui/rpc/v2/transaction_execution_service.client.d.mts +4 -4
  26. package/dist/grpc/proto/sui/rpc/v2/transaction_execution_service.d.mts +8 -0
  27. package/dist/grpc/proto/sui/rpc/v2/transaction_execution_service.d.mts.map +1 -1
  28. package/dist/grpc/proto/sui/rpc/v2/transaction_execution_service.mjs +23 -12
  29. package/dist/grpc/proto/sui/rpc/v2/transaction_execution_service.mjs.map +1 -1
  30. package/dist/grpc/proto/types.d.mts +2 -2
  31. package/dist/grpc/proto/types.mjs +2 -1
  32. package/dist/jsonRpc/core.d.mts.map +1 -1
  33. package/dist/jsonRpc/core.mjs +10 -3
  34. package/dist/jsonRpc/core.mjs.map +1 -1
  35. package/dist/keypairs/passkey/keypair.d.mts +11 -4
  36. package/dist/keypairs/passkey/keypair.d.mts.map +1 -1
  37. package/dist/keypairs/passkey/keypair.mjs +19 -6
  38. package/dist/keypairs/passkey/keypair.mjs.map +1 -1
  39. package/dist/transactions/Transaction.d.mts +9 -9
  40. package/dist/transactions/Transaction.d.mts.map +1 -1
  41. package/dist/version.mjs +2 -2
  42. package/dist/version.mjs.map +1 -1
  43. package/dist/zklogin/bcs.d.mts +14 -14
  44. package/docs/bcs.md +131 -0
  45. package/docs/clients/core.md +601 -0
  46. package/docs/clients/graphql.md +99 -0
  47. package/docs/clients/grpc.md +152 -0
  48. package/docs/clients/index.md +93 -0
  49. package/docs/clients/json-rpc.md +235 -0
  50. package/docs/cryptography/keypairs.md +258 -0
  51. package/docs/cryptography/multisig.md +192 -0
  52. package/docs/cryptography/passkey.md +111 -0
  53. package/docs/cryptography/webcrypto-signer.md +81 -0
  54. package/docs/executors.md +147 -0
  55. package/docs/faucet.md +26 -0
  56. package/docs/hello-sui.md +114 -0
  57. package/docs/index.md +54 -0
  58. package/docs/install.md +61 -0
  59. package/docs/llm-docs.md +32 -0
  60. package/docs/llms-index.md +60 -0
  61. package/docs/migrations/0.38.md +57 -0
  62. package/docs/migrations/sui-1.0.md +453 -0
  63. package/docs/migrations/sui-2.0/agent-prompt.md +42 -0
  64. package/docs/migrations/sui-2.0/dapp-kit.md +350 -0
  65. package/docs/migrations/sui-2.0/deepbook-v3.md +33 -0
  66. package/docs/migrations/sui-2.0/index.md +157 -0
  67. package/docs/migrations/sui-2.0/json-rpc-migration.md +383 -0
  68. package/docs/migrations/sui-2.0/kiosk.md +120 -0
  69. package/docs/migrations/sui-2.0/sdk-maintainers.md +90 -0
  70. package/docs/migrations/sui-2.0/seal.md +14 -0
  71. package/docs/migrations/sui-2.0/sui.md +341 -0
  72. package/docs/migrations/sui-2.0/suins.md +42 -0
  73. package/docs/migrations/sui-2.0/wallet-builders.md +66 -0
  74. package/docs/migrations/sui-2.0/walrus.md +41 -0
  75. package/docs/migrations/sui-2.0/zksend.md +94 -0
  76. package/docs/plugins.md +255 -0
  77. package/docs/sdk-building.md +340 -0
  78. package/docs/transaction-building/basics.md +297 -0
  79. package/docs/transaction-building/gas.md +62 -0
  80. package/docs/transaction-building/intents.md +61 -0
  81. package/docs/transaction-building/offline.md +71 -0
  82. package/docs/transaction-building/sponsored-transactions.md +22 -0
  83. package/docs/utils/derived_objects.md +59 -0
  84. package/docs/utils/index.md +52 -0
  85. package/docs/zklogin.md +78 -0
  86. package/package.json +5 -3
  87. package/src/client/types.ts +16 -0
  88. package/src/graphql/core.ts +34 -13
  89. package/src/graphql/generated/queries.ts +252 -14
  90. package/src/graphql/generated/schema.graphql +324 -8
  91. package/src/graphql/generated/tada-env.ts +844 -99
  92. package/src/graphql/queries/objects.graphql +10 -0
  93. package/src/graphql/queries/verifyZkLoginSignature.graphql +0 -1
  94. package/src/grpc/core.ts +34 -0
  95. package/src/grpc/proto/sui/rpc/v2/object.ts +44 -0
  96. package/src/grpc/proto/sui/rpc/v2/transaction_execution_service.ts +16 -0
  97. package/src/jsonRpc/core.ts +9 -0
  98. package/src/keypairs/passkey/keypair.ts +20 -6
  99. package/src/version.ts +2 -2
@@ -1361,6 +1361,88 @@ declare const introspection: {
1361
1361
  };
1362
1362
  }];
1363
1363
  readonly isOneOf: false;
1364
+ }, {
1365
+ readonly kind: "OBJECT";
1366
+ readonly name: "CircomG1";
1367
+ readonly fields: readonly [{
1368
+ readonly name: "e0";
1369
+ readonly type: {
1370
+ readonly kind: "SCALAR";
1371
+ readonly name: "String";
1372
+ };
1373
+ readonly args: readonly [];
1374
+ readonly isDeprecated: false;
1375
+ }, {
1376
+ readonly name: "e1";
1377
+ readonly type: {
1378
+ readonly kind: "SCALAR";
1379
+ readonly name: "String";
1380
+ };
1381
+ readonly args: readonly [];
1382
+ readonly isDeprecated: false;
1383
+ }, {
1384
+ readonly name: "e2";
1385
+ readonly type: {
1386
+ readonly kind: "SCALAR";
1387
+ readonly name: "String";
1388
+ };
1389
+ readonly args: readonly [];
1390
+ readonly isDeprecated: false;
1391
+ }];
1392
+ readonly interfaces: readonly [];
1393
+ }, {
1394
+ readonly kind: "OBJECT";
1395
+ readonly name: "CircomG2";
1396
+ readonly fields: readonly [{
1397
+ readonly name: "e00";
1398
+ readonly type: {
1399
+ readonly kind: "SCALAR";
1400
+ readonly name: "String";
1401
+ };
1402
+ readonly args: readonly [];
1403
+ readonly isDeprecated: false;
1404
+ }, {
1405
+ readonly name: "e01";
1406
+ readonly type: {
1407
+ readonly kind: "SCALAR";
1408
+ readonly name: "String";
1409
+ };
1410
+ readonly args: readonly [];
1411
+ readonly isDeprecated: false;
1412
+ }, {
1413
+ readonly name: "e10";
1414
+ readonly type: {
1415
+ readonly kind: "SCALAR";
1416
+ readonly name: "String";
1417
+ };
1418
+ readonly args: readonly [];
1419
+ readonly isDeprecated: false;
1420
+ }, {
1421
+ readonly name: "e11";
1422
+ readonly type: {
1423
+ readonly kind: "SCALAR";
1424
+ readonly name: "String";
1425
+ };
1426
+ readonly args: readonly [];
1427
+ readonly isDeprecated: false;
1428
+ }, {
1429
+ readonly name: "e20";
1430
+ readonly type: {
1431
+ readonly kind: "SCALAR";
1432
+ readonly name: "String";
1433
+ };
1434
+ readonly args: readonly [];
1435
+ readonly isDeprecated: false;
1436
+ }, {
1437
+ readonly name: "e21";
1438
+ readonly type: {
1439
+ readonly kind: "SCALAR";
1440
+ readonly name: "String";
1441
+ };
1442
+ readonly args: readonly [];
1443
+ readonly isDeprecated: false;
1444
+ }];
1445
+ readonly interfaces: readonly [];
1364
1446
  }, {
1365
1447
  readonly kind: "OBJECT";
1366
1448
  readonly name: "CoinDenyListStateCreateTransaction";
@@ -2937,6 +3019,40 @@ declare const introspection: {
2937
3019
  readonly kind: "OBJECT";
2938
3020
  readonly name: "MoveValue";
2939
3021
  }];
3022
+ }, {
3023
+ readonly kind: "OBJECT";
3024
+ readonly name: "Ed25519PublicKey";
3025
+ readonly fields: readonly [{
3026
+ readonly name: "bytes";
3027
+ readonly type: {
3028
+ readonly kind: "SCALAR";
3029
+ readonly name: "Base64";
3030
+ };
3031
+ readonly args: readonly [];
3032
+ readonly isDeprecated: false;
3033
+ }];
3034
+ readonly interfaces: readonly [];
3035
+ }, {
3036
+ readonly kind: "OBJECT";
3037
+ readonly name: "Ed25519Signature";
3038
+ readonly fields: readonly [{
3039
+ readonly name: "publicKey";
3040
+ readonly type: {
3041
+ readonly kind: "SCALAR";
3042
+ readonly name: "Base64";
3043
+ };
3044
+ readonly args: readonly [];
3045
+ readonly isDeprecated: false;
3046
+ }, {
3047
+ readonly name: "signature";
3048
+ readonly type: {
3049
+ readonly kind: "SCALAR";
3050
+ readonly name: "Base64";
3051
+ };
3052
+ readonly args: readonly [];
3053
+ readonly isDeprecated: false;
3054
+ }];
3055
+ readonly interfaces: readonly [];
2940
3056
  }, {
2941
3057
  readonly kind: "OBJECT";
2942
3058
  readonly name: "EndOfEpochTransaction";
@@ -7149,6 +7265,38 @@ declare const introspection: {
7149
7265
  };
7150
7266
  readonly args: readonly [];
7151
7267
  readonly isDeprecated: false;
7268
+ }, {
7269
+ readonly name: "asVector";
7270
+ readonly type: {
7271
+ readonly kind: "OBJECT";
7272
+ readonly name: "MoveValueConnection";
7273
+ };
7274
+ readonly args: readonly [{
7275
+ readonly name: "after";
7276
+ readonly type: {
7277
+ readonly kind: "SCALAR";
7278
+ readonly name: "String";
7279
+ };
7280
+ }, {
7281
+ readonly name: "before";
7282
+ readonly type: {
7283
+ readonly kind: "SCALAR";
7284
+ readonly name: "String";
7285
+ };
7286
+ }, {
7287
+ readonly name: "first";
7288
+ readonly type: {
7289
+ readonly kind: "SCALAR";
7290
+ readonly name: "Int";
7291
+ };
7292
+ }, {
7293
+ readonly name: "last";
7294
+ readonly type: {
7295
+ readonly kind: "SCALAR";
7296
+ readonly name: "Int";
7297
+ };
7298
+ }];
7299
+ readonly isDeprecated: false;
7152
7300
  }, {
7153
7301
  readonly name: "bcs";
7154
7302
  readonly type: {
@@ -7217,118 +7365,297 @@ declare const introspection: {
7217
7365
  readonly isDeprecated: false;
7218
7366
  }];
7219
7367
  readonly interfaces: readonly [];
7220
- }, {
7221
- readonly kind: "ENUM";
7222
- readonly name: "MoveVisibility";
7223
- readonly enumValues: readonly [{
7224
- readonly name: "PUBLIC";
7225
- readonly isDeprecated: false;
7226
- }, {
7227
- readonly name: "PRIVATE";
7228
- readonly isDeprecated: false;
7229
- }, {
7230
- readonly name: "FRIEND";
7231
- readonly isDeprecated: false;
7232
- }];
7233
7368
  }, {
7234
7369
  readonly kind: "OBJECT";
7235
- readonly name: "MutateConsensusStreamEnded";
7370
+ readonly name: "MoveValueConnection";
7236
7371
  readonly fields: readonly [{
7237
- readonly name: "address";
7372
+ readonly name: "edges";
7238
7373
  readonly type: {
7239
- readonly kind: "SCALAR";
7240
- readonly name: "SuiAddress";
7374
+ readonly kind: "NON_NULL";
7375
+ readonly ofType: {
7376
+ readonly kind: "LIST";
7377
+ readonly ofType: {
7378
+ readonly kind: "NON_NULL";
7379
+ readonly ofType: {
7380
+ readonly kind: "OBJECT";
7381
+ readonly name: "MoveValueEdge";
7382
+ };
7383
+ };
7384
+ };
7241
7385
  };
7242
7386
  readonly args: readonly [];
7243
7387
  readonly isDeprecated: false;
7244
7388
  }, {
7245
- readonly name: "sequenceNumber";
7389
+ readonly name: "nodes";
7246
7390
  readonly type: {
7247
- readonly kind: "SCALAR";
7248
- readonly name: "UInt53";
7391
+ readonly kind: "NON_NULL";
7392
+ readonly ofType: {
7393
+ readonly kind: "LIST";
7394
+ readonly ofType: {
7395
+ readonly kind: "NON_NULL";
7396
+ readonly ofType: {
7397
+ readonly kind: "OBJECT";
7398
+ readonly name: "MoveValue";
7399
+ };
7400
+ };
7401
+ };
7249
7402
  };
7250
7403
  readonly args: readonly [];
7251
7404
  readonly isDeprecated: false;
7252
- }];
7253
- readonly interfaces: readonly [];
7254
- }, {
7255
- readonly kind: "OBJECT";
7256
- readonly name: "Mutation";
7257
- readonly fields: readonly [{
7258
- readonly name: "executeTransaction";
7405
+ }, {
7406
+ readonly name: "pageInfo";
7259
7407
  readonly type: {
7260
7408
  readonly kind: "NON_NULL";
7261
7409
  readonly ofType: {
7262
7410
  readonly kind: "OBJECT";
7263
- readonly name: "ExecutionResult";
7411
+ readonly name: "PageInfo";
7264
7412
  };
7265
7413
  };
7266
- readonly args: readonly [{
7267
- readonly name: "signatures";
7268
- readonly type: {
7269
- readonly kind: "NON_NULL";
7270
- readonly ofType: {
7271
- readonly kind: "LIST";
7272
- readonly ofType: {
7273
- readonly kind: "NON_NULL";
7274
- readonly ofType: {
7275
- readonly kind: "SCALAR";
7276
- readonly name: "Base64";
7277
- };
7278
- };
7279
- };
7280
- };
7281
- }, {
7282
- readonly name: "transactionDataBcs";
7283
- readonly type: {
7284
- readonly kind: "NON_NULL";
7285
- readonly ofType: {
7286
- readonly kind: "SCALAR";
7287
- readonly name: "Base64";
7288
- };
7289
- };
7290
- }];
7414
+ readonly args: readonly [];
7291
7415
  readonly isDeprecated: false;
7292
7416
  }];
7293
7417
  readonly interfaces: readonly [];
7294
7418
  }, {
7295
7419
  readonly kind: "OBJECT";
7296
- readonly name: "NameRecord";
7420
+ readonly name: "MoveValueEdge";
7297
7421
  readonly fields: readonly [{
7298
- readonly name: "contents";
7422
+ readonly name: "cursor";
7299
7423
  readonly type: {
7300
7424
  readonly kind: "NON_NULL";
7301
7425
  readonly ofType: {
7302
- readonly kind: "OBJECT";
7303
- readonly name: "MoveValue";
7426
+ readonly kind: "SCALAR";
7427
+ readonly name: "String";
7304
7428
  };
7305
7429
  };
7306
7430
  readonly args: readonly [];
7307
7431
  readonly isDeprecated: false;
7308
7432
  }, {
7309
- readonly name: "domain";
7433
+ readonly name: "node";
7310
7434
  readonly type: {
7311
7435
  readonly kind: "NON_NULL";
7312
7436
  readonly ofType: {
7313
- readonly kind: "SCALAR";
7314
- readonly name: "String";
7437
+ readonly kind: "OBJECT";
7438
+ readonly name: "MoveValue";
7315
7439
  };
7316
7440
  };
7317
7441
  readonly args: readonly [];
7318
7442
  readonly isDeprecated: false;
7443
+ }];
7444
+ readonly interfaces: readonly [];
7445
+ }, {
7446
+ readonly kind: "ENUM";
7447
+ readonly name: "MoveVisibility";
7448
+ readonly enumValues: readonly [{
7449
+ readonly name: "PUBLIC";
7450
+ readonly isDeprecated: false;
7319
7451
  }, {
7320
- readonly name: "parent";
7452
+ readonly name: "PRIVATE";
7453
+ readonly isDeprecated: false;
7454
+ }, {
7455
+ readonly name: "FRIEND";
7456
+ readonly isDeprecated: false;
7457
+ }];
7458
+ }, {
7459
+ readonly kind: "OBJECT";
7460
+ readonly name: "MultisigCommittee";
7461
+ readonly fields: readonly [{
7462
+ readonly name: "members";
7321
7463
  readonly type: {
7322
- readonly kind: "OBJECT";
7323
- readonly name: "NameRecord";
7464
+ readonly kind: "LIST";
7465
+ readonly ofType: {
7466
+ readonly kind: "NON_NULL";
7467
+ readonly ofType: {
7468
+ readonly kind: "OBJECT";
7469
+ readonly name: "MultisigMember";
7470
+ };
7471
+ };
7324
7472
  };
7325
7473
  readonly args: readonly [];
7326
7474
  readonly isDeprecated: false;
7327
7475
  }, {
7328
- readonly name: "target";
7476
+ readonly name: "threshold";
7329
7477
  readonly type: {
7330
- readonly kind: "OBJECT";
7331
- readonly name: "Address";
7478
+ readonly kind: "SCALAR";
7479
+ readonly name: "Int";
7480
+ };
7481
+ readonly args: readonly [];
7482
+ readonly isDeprecated: false;
7483
+ }];
7484
+ readonly interfaces: readonly [];
7485
+ }, {
7486
+ readonly kind: "OBJECT";
7487
+ readonly name: "MultisigMember";
7488
+ readonly fields: readonly [{
7489
+ readonly name: "publicKey";
7490
+ readonly type: {
7491
+ readonly kind: "UNION";
7492
+ readonly name: "MultisigMemberPublicKey";
7493
+ };
7494
+ readonly args: readonly [];
7495
+ readonly isDeprecated: false;
7496
+ }, {
7497
+ readonly name: "weight";
7498
+ readonly type: {
7499
+ readonly kind: "SCALAR";
7500
+ readonly name: "Int";
7501
+ };
7502
+ readonly args: readonly [];
7503
+ readonly isDeprecated: false;
7504
+ }];
7505
+ readonly interfaces: readonly [];
7506
+ }, {
7507
+ readonly kind: "UNION";
7508
+ readonly name: "MultisigMemberPublicKey";
7509
+ readonly possibleTypes: readonly [{
7510
+ readonly kind: "OBJECT";
7511
+ readonly name: "Ed25519PublicKey";
7512
+ }, {
7513
+ readonly kind: "OBJECT";
7514
+ readonly name: "PasskeyPublicKey";
7515
+ }, {
7516
+ readonly kind: "OBJECT";
7517
+ readonly name: "Secp256K1PublicKey";
7518
+ }, {
7519
+ readonly kind: "OBJECT";
7520
+ readonly name: "Secp256R1PublicKey";
7521
+ }, {
7522
+ readonly kind: "OBJECT";
7523
+ readonly name: "ZkLoginPublicIdentifier";
7524
+ }];
7525
+ }, {
7526
+ readonly kind: "OBJECT";
7527
+ readonly name: "MultisigSignature";
7528
+ readonly fields: readonly [{
7529
+ readonly name: "bitmap";
7530
+ readonly type: {
7531
+ readonly kind: "SCALAR";
7532
+ readonly name: "Int";
7533
+ };
7534
+ readonly args: readonly [];
7535
+ readonly isDeprecated: false;
7536
+ }, {
7537
+ readonly name: "committee";
7538
+ readonly type: {
7539
+ readonly kind: "OBJECT";
7540
+ readonly name: "MultisigCommittee";
7541
+ };
7542
+ readonly args: readonly [];
7543
+ readonly isDeprecated: false;
7544
+ }, {
7545
+ readonly name: "signatures";
7546
+ readonly type: {
7547
+ readonly kind: "LIST";
7548
+ readonly ofType: {
7549
+ readonly kind: "NON_NULL";
7550
+ readonly ofType: {
7551
+ readonly kind: "UNION";
7552
+ readonly name: "SignatureScheme";
7553
+ };
7554
+ };
7555
+ };
7556
+ readonly args: readonly [];
7557
+ readonly isDeprecated: false;
7558
+ }];
7559
+ readonly interfaces: readonly [];
7560
+ }, {
7561
+ readonly kind: "OBJECT";
7562
+ readonly name: "MutateConsensusStreamEnded";
7563
+ readonly fields: readonly [{
7564
+ readonly name: "address";
7565
+ readonly type: {
7566
+ readonly kind: "SCALAR";
7567
+ readonly name: "SuiAddress";
7568
+ };
7569
+ readonly args: readonly [];
7570
+ readonly isDeprecated: false;
7571
+ }, {
7572
+ readonly name: "sequenceNumber";
7573
+ readonly type: {
7574
+ readonly kind: "SCALAR";
7575
+ readonly name: "UInt53";
7576
+ };
7577
+ readonly args: readonly [];
7578
+ readonly isDeprecated: false;
7579
+ }];
7580
+ readonly interfaces: readonly [];
7581
+ }, {
7582
+ readonly kind: "OBJECT";
7583
+ readonly name: "Mutation";
7584
+ readonly fields: readonly [{
7585
+ readonly name: "executeTransaction";
7586
+ readonly type: {
7587
+ readonly kind: "NON_NULL";
7588
+ readonly ofType: {
7589
+ readonly kind: "OBJECT";
7590
+ readonly name: "ExecutionResult";
7591
+ };
7592
+ };
7593
+ readonly args: readonly [{
7594
+ readonly name: "signatures";
7595
+ readonly type: {
7596
+ readonly kind: "NON_NULL";
7597
+ readonly ofType: {
7598
+ readonly kind: "LIST";
7599
+ readonly ofType: {
7600
+ readonly kind: "NON_NULL";
7601
+ readonly ofType: {
7602
+ readonly kind: "SCALAR";
7603
+ readonly name: "Base64";
7604
+ };
7605
+ };
7606
+ };
7607
+ };
7608
+ }, {
7609
+ readonly name: "transactionDataBcs";
7610
+ readonly type: {
7611
+ readonly kind: "NON_NULL";
7612
+ readonly ofType: {
7613
+ readonly kind: "SCALAR";
7614
+ readonly name: "Base64";
7615
+ };
7616
+ };
7617
+ }];
7618
+ readonly isDeprecated: false;
7619
+ }];
7620
+ readonly interfaces: readonly [];
7621
+ }, {
7622
+ readonly kind: "OBJECT";
7623
+ readonly name: "NameRecord";
7624
+ readonly fields: readonly [{
7625
+ readonly name: "contents";
7626
+ readonly type: {
7627
+ readonly kind: "NON_NULL";
7628
+ readonly ofType: {
7629
+ readonly kind: "OBJECT";
7630
+ readonly name: "MoveValue";
7631
+ };
7632
+ };
7633
+ readonly args: readonly [];
7634
+ readonly isDeprecated: false;
7635
+ }, {
7636
+ readonly name: "domain";
7637
+ readonly type: {
7638
+ readonly kind: "NON_NULL";
7639
+ readonly ofType: {
7640
+ readonly kind: "SCALAR";
7641
+ readonly name: "String";
7642
+ };
7643
+ };
7644
+ readonly args: readonly [];
7645
+ readonly isDeprecated: false;
7646
+ }, {
7647
+ readonly name: "parent";
7648
+ readonly type: {
7649
+ readonly kind: "OBJECT";
7650
+ readonly name: "NameRecord";
7651
+ };
7652
+ readonly args: readonly [];
7653
+ readonly isDeprecated: false;
7654
+ }, {
7655
+ readonly name: "target";
7656
+ readonly type: {
7657
+ readonly kind: "OBJECT";
7658
+ readonly name: "Address";
7332
7659
  };
7333
7660
  readonly args: readonly [{
7334
7661
  readonly name: "atCheckpoint";
@@ -8342,6 +8669,48 @@ declare const introspection: {
8342
8669
  readonly isDeprecated: false;
8343
8670
  }];
8344
8671
  readonly interfaces: readonly [];
8672
+ }, {
8673
+ readonly kind: "OBJECT";
8674
+ readonly name: "PasskeyPublicKey";
8675
+ readonly fields: readonly [{
8676
+ readonly name: "bytes";
8677
+ readonly type: {
8678
+ readonly kind: "SCALAR";
8679
+ readonly name: "Base64";
8680
+ };
8681
+ readonly args: readonly [];
8682
+ readonly isDeprecated: false;
8683
+ }];
8684
+ readonly interfaces: readonly [];
8685
+ }, {
8686
+ readonly kind: "OBJECT";
8687
+ readonly name: "PasskeySignature";
8688
+ readonly fields: readonly [{
8689
+ readonly name: "authenticatorData";
8690
+ readonly type: {
8691
+ readonly kind: "SCALAR";
8692
+ readonly name: "Base64";
8693
+ };
8694
+ readonly args: readonly [];
8695
+ readonly isDeprecated: false;
8696
+ }, {
8697
+ readonly name: "clientDataJson";
8698
+ readonly type: {
8699
+ readonly kind: "SCALAR";
8700
+ readonly name: "String";
8701
+ };
8702
+ readonly args: readonly [];
8703
+ readonly isDeprecated: false;
8704
+ }, {
8705
+ readonly name: "signature";
8706
+ readonly type: {
8707
+ readonly kind: "UNION";
8708
+ readonly name: "SignatureScheme";
8709
+ };
8710
+ readonly args: readonly [];
8711
+ readonly isDeprecated: false;
8712
+ }];
8713
+ readonly interfaces: readonly [];
8345
8714
  }, {
8346
8715
  readonly kind: "OBJECT";
8347
8716
  readonly name: "PerEpochConfig";
@@ -9498,11 +9867,8 @@ declare const introspection: {
9498
9867
  }, {
9499
9868
  readonly name: "verifyZkLoginSignature";
9500
9869
  readonly type: {
9501
- readonly kind: "NON_NULL";
9502
- readonly ofType: {
9503
- readonly kind: "OBJECT";
9504
- readonly name: "ZkLoginVerifyResult";
9505
- };
9870
+ readonly kind: "OBJECT";
9871
+ readonly name: "ZkLoginVerifyResult";
9506
9872
  };
9507
9873
  readonly args: readonly [{
9508
9874
  readonly name: "author";
@@ -9638,6 +10004,74 @@ declare const introspection: {
9638
10004
  readonly name: "UNREGULATED";
9639
10005
  readonly isDeprecated: false;
9640
10006
  }];
10007
+ }, {
10008
+ readonly kind: "OBJECT";
10009
+ readonly name: "Secp256K1PublicKey";
10010
+ readonly fields: readonly [{
10011
+ readonly name: "bytes";
10012
+ readonly type: {
10013
+ readonly kind: "SCALAR";
10014
+ readonly name: "Base64";
10015
+ };
10016
+ readonly args: readonly [];
10017
+ readonly isDeprecated: false;
10018
+ }];
10019
+ readonly interfaces: readonly [];
10020
+ }, {
10021
+ readonly kind: "OBJECT";
10022
+ readonly name: "Secp256K1Signature";
10023
+ readonly fields: readonly [{
10024
+ readonly name: "publicKey";
10025
+ readonly type: {
10026
+ readonly kind: "SCALAR";
10027
+ readonly name: "Base64";
10028
+ };
10029
+ readonly args: readonly [];
10030
+ readonly isDeprecated: false;
10031
+ }, {
10032
+ readonly name: "signature";
10033
+ readonly type: {
10034
+ readonly kind: "SCALAR";
10035
+ readonly name: "Base64";
10036
+ };
10037
+ readonly args: readonly [];
10038
+ readonly isDeprecated: false;
10039
+ }];
10040
+ readonly interfaces: readonly [];
10041
+ }, {
10042
+ readonly kind: "OBJECT";
10043
+ readonly name: "Secp256R1PublicKey";
10044
+ readonly fields: readonly [{
10045
+ readonly name: "bytes";
10046
+ readonly type: {
10047
+ readonly kind: "SCALAR";
10048
+ readonly name: "Base64";
10049
+ };
10050
+ readonly args: readonly [];
10051
+ readonly isDeprecated: false;
10052
+ }];
10053
+ readonly interfaces: readonly [];
10054
+ }, {
10055
+ readonly kind: "OBJECT";
10056
+ readonly name: "Secp256R1Signature";
10057
+ readonly fields: readonly [{
10058
+ readonly name: "publicKey";
10059
+ readonly type: {
10060
+ readonly kind: "SCALAR";
10061
+ readonly name: "Base64";
10062
+ };
10063
+ readonly args: readonly [];
10064
+ readonly isDeprecated: false;
10065
+ }, {
10066
+ readonly name: "signature";
10067
+ readonly type: {
10068
+ readonly kind: "SCALAR";
10069
+ readonly name: "Base64";
10070
+ };
10071
+ readonly args: readonly [];
10072
+ readonly isDeprecated: false;
10073
+ }];
10074
+ readonly interfaces: readonly [];
9641
10075
  }, {
9642
10076
  readonly kind: "OBJECT";
9643
10077
  readonly name: "ServiceConfig";
@@ -9927,6 +10361,28 @@ declare const introspection: {
9927
10361
  readonly isDeprecated: false;
9928
10362
  }];
9929
10363
  readonly interfaces: readonly [];
10364
+ }, {
10365
+ readonly kind: "UNION";
10366
+ readonly name: "SignatureScheme";
10367
+ readonly possibleTypes: readonly [{
10368
+ readonly kind: "OBJECT";
10369
+ readonly name: "Ed25519Signature";
10370
+ }, {
10371
+ readonly kind: "OBJECT";
10372
+ readonly name: "MultisigSignature";
10373
+ }, {
10374
+ readonly kind: "OBJECT";
10375
+ readonly name: "PasskeySignature";
10376
+ }, {
10377
+ readonly kind: "OBJECT";
10378
+ readonly name: "Secp256K1Signature";
10379
+ }, {
10380
+ readonly kind: "OBJECT";
10381
+ readonly name: "Secp256R1Signature";
10382
+ }, {
10383
+ readonly kind: "OBJECT";
10384
+ readonly name: "ZkLoginSignature";
10385
+ }];
9930
10386
  }, {
9931
10387
  readonly kind: "OBJECT";
9932
10388
  readonly name: "SimulationResult";
@@ -10900,6 +11356,14 @@ declare const introspection: {
10900
11356
  readonly kind: "OBJECT";
10901
11357
  readonly name: "UserSignature";
10902
11358
  readonly fields: readonly [{
11359
+ readonly name: "scheme";
11360
+ readonly type: {
11361
+ readonly kind: "UNION";
11362
+ readonly name: "SignatureScheme";
11363
+ };
11364
+ readonly args: readonly [];
11365
+ readonly isDeprecated: false;
11366
+ }, {
10903
11367
  readonly name: "signatureBytes";
10904
11368
  readonly type: {
10905
11369
  readonly kind: "SCALAR";
@@ -11182,6 +11646,64 @@ declare const introspection: {
11182
11646
  readonly isDeprecated: false;
11183
11647
  }];
11184
11648
  readonly interfaces: readonly [];
11649
+ }, {
11650
+ readonly kind: "OBJECT";
11651
+ readonly name: "ZkLoginClaim";
11652
+ readonly fields: readonly [{
11653
+ readonly name: "indexMod4";
11654
+ readonly type: {
11655
+ readonly kind: "SCALAR";
11656
+ readonly name: "Int";
11657
+ };
11658
+ readonly args: readonly [];
11659
+ readonly isDeprecated: false;
11660
+ }, {
11661
+ readonly name: "value";
11662
+ readonly type: {
11663
+ readonly kind: "SCALAR";
11664
+ readonly name: "String";
11665
+ };
11666
+ readonly args: readonly [];
11667
+ readonly isDeprecated: false;
11668
+ }];
11669
+ readonly interfaces: readonly [];
11670
+ }, {
11671
+ readonly kind: "OBJECT";
11672
+ readonly name: "ZkLoginInputs";
11673
+ readonly fields: readonly [{
11674
+ readonly name: "addressSeed";
11675
+ readonly type: {
11676
+ readonly kind: "SCALAR";
11677
+ readonly name: "String";
11678
+ };
11679
+ readonly args: readonly [];
11680
+ readonly isDeprecated: false;
11681
+ }, {
11682
+ readonly name: "headerBase64";
11683
+ readonly type: {
11684
+ readonly kind: "SCALAR";
11685
+ readonly name: "String";
11686
+ };
11687
+ readonly args: readonly [];
11688
+ readonly isDeprecated: false;
11689
+ }, {
11690
+ readonly name: "issBase64Details";
11691
+ readonly type: {
11692
+ readonly kind: "OBJECT";
11693
+ readonly name: "ZkLoginClaim";
11694
+ };
11695
+ readonly args: readonly [];
11696
+ readonly isDeprecated: false;
11697
+ }, {
11698
+ readonly name: "proofPoints";
11699
+ readonly type: {
11700
+ readonly kind: "OBJECT";
11701
+ readonly name: "ZkLoginProof";
11702
+ };
11703
+ readonly args: readonly [];
11704
+ readonly isDeprecated: false;
11705
+ }];
11706
+ readonly interfaces: readonly [];
11185
11707
  }, {
11186
11708
  readonly kind: "ENUM";
11187
11709
  readonly name: "ZkLoginIntentScope";
@@ -11194,9 +11716,9 @@ declare const introspection: {
11194
11716
  }];
11195
11717
  }, {
11196
11718
  readonly kind: "OBJECT";
11197
- readonly name: "ZkLoginVerifyResult";
11719
+ readonly name: "ZkLoginJwkId";
11198
11720
  readonly fields: readonly [{
11199
- readonly name: "error";
11721
+ readonly name: "iss";
11200
11722
  readonly type: {
11201
11723
  readonly kind: "SCALAR";
11202
11724
  readonly name: "String";
@@ -11204,6 +11726,114 @@ declare const introspection: {
11204
11726
  readonly args: readonly [];
11205
11727
  readonly isDeprecated: false;
11206
11728
  }, {
11729
+ readonly name: "kid";
11730
+ readonly type: {
11731
+ readonly kind: "SCALAR";
11732
+ readonly name: "String";
11733
+ };
11734
+ readonly args: readonly [];
11735
+ readonly isDeprecated: false;
11736
+ }];
11737
+ readonly interfaces: readonly [];
11738
+ }, {
11739
+ readonly kind: "OBJECT";
11740
+ readonly name: "ZkLoginProof";
11741
+ readonly fields: readonly [{
11742
+ readonly name: "a";
11743
+ readonly type: {
11744
+ readonly kind: "OBJECT";
11745
+ readonly name: "CircomG1";
11746
+ };
11747
+ readonly args: readonly [];
11748
+ readonly isDeprecated: false;
11749
+ }, {
11750
+ readonly name: "b";
11751
+ readonly type: {
11752
+ readonly kind: "OBJECT";
11753
+ readonly name: "CircomG2";
11754
+ };
11755
+ readonly args: readonly [];
11756
+ readonly isDeprecated: false;
11757
+ }, {
11758
+ readonly name: "c";
11759
+ readonly type: {
11760
+ readonly kind: "OBJECT";
11761
+ readonly name: "CircomG1";
11762
+ };
11763
+ readonly args: readonly [];
11764
+ readonly isDeprecated: false;
11765
+ }];
11766
+ readonly interfaces: readonly [];
11767
+ }, {
11768
+ readonly kind: "OBJECT";
11769
+ readonly name: "ZkLoginPublicIdentifier";
11770
+ readonly fields: readonly [{
11771
+ readonly name: "addressSeed";
11772
+ readonly type: {
11773
+ readonly kind: "SCALAR";
11774
+ readonly name: "String";
11775
+ };
11776
+ readonly args: readonly [];
11777
+ readonly isDeprecated: false;
11778
+ }, {
11779
+ readonly name: "iss";
11780
+ readonly type: {
11781
+ readonly kind: "SCALAR";
11782
+ readonly name: "String";
11783
+ };
11784
+ readonly args: readonly [];
11785
+ readonly isDeprecated: false;
11786
+ }];
11787
+ readonly interfaces: readonly [];
11788
+ }, {
11789
+ readonly kind: "OBJECT";
11790
+ readonly name: "ZkLoginSignature";
11791
+ readonly fields: readonly [{
11792
+ readonly name: "inputs";
11793
+ readonly type: {
11794
+ readonly kind: "OBJECT";
11795
+ readonly name: "ZkLoginInputs";
11796
+ };
11797
+ readonly args: readonly [];
11798
+ readonly isDeprecated: false;
11799
+ }, {
11800
+ readonly name: "jwkId";
11801
+ readonly type: {
11802
+ readonly kind: "OBJECT";
11803
+ readonly name: "ZkLoginJwkId";
11804
+ };
11805
+ readonly args: readonly [];
11806
+ readonly isDeprecated: false;
11807
+ }, {
11808
+ readonly name: "maxEpoch";
11809
+ readonly type: {
11810
+ readonly kind: "SCALAR";
11811
+ readonly name: "UInt53";
11812
+ };
11813
+ readonly args: readonly [];
11814
+ readonly isDeprecated: false;
11815
+ }, {
11816
+ readonly name: "publicIdentifier";
11817
+ readonly type: {
11818
+ readonly kind: "OBJECT";
11819
+ readonly name: "ZkLoginPublicIdentifier";
11820
+ };
11821
+ readonly args: readonly [];
11822
+ readonly isDeprecated: false;
11823
+ }, {
11824
+ readonly name: "signature";
11825
+ readonly type: {
11826
+ readonly kind: "UNION";
11827
+ readonly name: "SignatureScheme";
11828
+ };
11829
+ readonly args: readonly [];
11830
+ readonly isDeprecated: false;
11831
+ }];
11832
+ readonly interfaces: readonly [];
11833
+ }, {
11834
+ readonly kind: "OBJECT";
11835
+ readonly name: "ZkLoginVerifyResult";
11836
+ readonly fields: readonly [{
11207
11837
  readonly name: "success";
11208
11838
  readonly type: {
11209
11839
  readonly kind: "SCALAR";