@mysten/sui 2.5.1 → 2.7.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 +29 -0
- package/dist/bcs/bcs.d.mts +6 -6
- package/dist/client/core-resolver.mjs +6 -3
- package/dist/client/core-resolver.mjs.map +1 -1
- package/dist/client/core.d.mts +8 -8
- package/dist/client/core.d.mts.map +1 -1
- package/dist/client/core.mjs +11 -5
- package/dist/client/core.mjs.map +1 -1
- package/dist/client/types.d.mts +73 -18
- package/dist/client/types.d.mts.map +1 -1
- package/dist/cryptography/signature.d.mts +6 -6
- package/dist/graphql/client.d.mts +16 -1
- package/dist/graphql/client.d.mts.map +1 -1
- package/dist/graphql/client.mjs +50 -2
- package/dist/graphql/client.mjs.map +1 -1
- package/dist/graphql/core.d.mts +5 -5
- package/dist/graphql/core.d.mts.map +1 -1
- package/dist/graphql/core.mjs +28 -49
- package/dist/graphql/core.mjs.map +1 -1
- package/dist/graphql/generated/queries.d.mts.map +1 -1
- package/dist/graphql/generated/queries.mjs +25 -7
- package/dist/graphql/generated/queries.mjs.map +1 -1
- package/dist/graphql/generated/tada-env.d.mts +706 -98
- package/dist/grpc/client.d.mts +16 -1
- package/dist/grpc/client.d.mts.map +1 -1
- package/dist/grpc/client.mjs +42 -2
- package/dist/grpc/client.mjs.map +1 -1
- package/dist/grpc/core.d.mts +5 -5
- package/dist/grpc/core.d.mts.map +1 -1
- package/dist/grpc/core.mjs +18 -35
- package/dist/grpc/core.mjs.map +1 -1
- package/dist/grpc/proto/sui/rpc/v2/ledger_service.client.d.mts +4 -4
- package/dist/grpc/proto/sui/rpc/v2/move_package_service.client.d.mts +4 -4
- package/dist/grpc/proto/sui/rpc/v2/object.d.mts +38 -1
- package/dist/grpc/proto/sui/rpc/v2/object.d.mts.map +1 -1
- package/dist/grpc/proto/sui/rpc/v2/object.mjs +26 -1
- package/dist/grpc/proto/sui/rpc/v2/object.mjs.map +1 -1
- package/dist/grpc/proto/sui/rpc/v2/state_service.client.d.mts +4 -4
- package/dist/grpc/proto/sui/rpc/v2/subscription_service.client.d.mts +4 -4
- package/dist/grpc/proto/sui/rpc/v2/transaction.d.mts.map +1 -1
- package/dist/grpc/proto/sui/rpc/v2/transaction_execution_service.d.mts +8 -0
- package/dist/grpc/proto/sui/rpc/v2/transaction_execution_service.d.mts.map +1 -1
- package/dist/grpc/proto/sui/rpc/v2/transaction_execution_service.mjs +23 -12
- package/dist/grpc/proto/sui/rpc/v2/transaction_execution_service.mjs.map +1 -1
- package/dist/grpc/proto/types.d.mts +2 -2
- package/dist/grpc/proto/types.mjs +2 -1
- package/dist/jsonRpc/core.d.mts +6 -6
- package/dist/jsonRpc/core.d.mts.map +1 -1
- package/dist/jsonRpc/core.mjs +14 -5
- package/dist/jsonRpc/core.mjs.map +1 -1
- package/dist/transactions/Transaction.d.mts +6 -6
- package/dist/transactions/Transaction.d.mts.map +1 -1
- package/dist/transactions/executor/caching.mjs.map +1 -1
- package/dist/transactions/executor/parallel.d.mts +1 -1
- package/dist/transactions/executor/parallel.d.mts.map +1 -1
- package/dist/transactions/executor/parallel.mjs.map +1 -1
- package/dist/transactions/executor/serial.d.mts +1 -1
- package/dist/transactions/executor/serial.d.mts.map +1 -1
- package/dist/transactions/executor/serial.mjs.map +1 -1
- package/dist/version.mjs +1 -1
- package/dist/version.mjs.map +1 -1
- package/dist/zklogin/bcs.d.mts +14 -14
- package/package.json +1 -1
- package/src/client/core-resolver.ts +9 -8
- package/src/client/core.ts +28 -18
- package/src/client/types.ts +73 -18
- package/src/graphql/client.ts +96 -4
- package/src/graphql/core.ts +43 -88
- package/src/graphql/generated/queries.ts +271 -44
- package/src/graphql/generated/schema.graphql +328 -25
- package/src/graphql/generated/tada-env.ts +779 -58
- package/src/graphql/queries/getDynamicFields.graphql +8 -1
- package/src/graphql/queries/objects.graphql +10 -0
- package/src/graphql/queries/transactions.graphql +1 -3
- package/src/graphql/queries/verifyZkLoginSignature.graphql +0 -1
- package/src/grpc/client.ts +62 -4
- package/src/grpc/core.ts +42 -39
- package/src/grpc/proto/sui/rpc/v2/object.ts +44 -0
- package/src/grpc/proto/sui/rpc/v2/transaction_execution_service.ts +16 -0
- package/src/jsonRpc/core.ts +18 -7
- package/src/transactions/executor/caching.ts +2 -2
- package/src/transactions/executor/parallel.ts +1 -1
- package/src/transactions/executor/serial.ts +1 -1
- package/src/version.ts +1 -1
|
@@ -1579,6 +1579,101 @@ const introspection = {
|
|
|
1579
1579
|
],
|
|
1580
1580
|
"isOneOf": false
|
|
1581
1581
|
},
|
|
1582
|
+
{
|
|
1583
|
+
"kind": "OBJECT",
|
|
1584
|
+
"name": "CircomG1",
|
|
1585
|
+
"fields": [
|
|
1586
|
+
{
|
|
1587
|
+
"name": "e0",
|
|
1588
|
+
"type": {
|
|
1589
|
+
"kind": "SCALAR",
|
|
1590
|
+
"name": "String"
|
|
1591
|
+
},
|
|
1592
|
+
"args": [],
|
|
1593
|
+
"isDeprecated": false
|
|
1594
|
+
},
|
|
1595
|
+
{
|
|
1596
|
+
"name": "e1",
|
|
1597
|
+
"type": {
|
|
1598
|
+
"kind": "SCALAR",
|
|
1599
|
+
"name": "String"
|
|
1600
|
+
},
|
|
1601
|
+
"args": [],
|
|
1602
|
+
"isDeprecated": false
|
|
1603
|
+
},
|
|
1604
|
+
{
|
|
1605
|
+
"name": "e2",
|
|
1606
|
+
"type": {
|
|
1607
|
+
"kind": "SCALAR",
|
|
1608
|
+
"name": "String"
|
|
1609
|
+
},
|
|
1610
|
+
"args": [],
|
|
1611
|
+
"isDeprecated": false
|
|
1612
|
+
}
|
|
1613
|
+
],
|
|
1614
|
+
"interfaces": []
|
|
1615
|
+
},
|
|
1616
|
+
{
|
|
1617
|
+
"kind": "OBJECT",
|
|
1618
|
+
"name": "CircomG2",
|
|
1619
|
+
"fields": [
|
|
1620
|
+
{
|
|
1621
|
+
"name": "e00",
|
|
1622
|
+
"type": {
|
|
1623
|
+
"kind": "SCALAR",
|
|
1624
|
+
"name": "String"
|
|
1625
|
+
},
|
|
1626
|
+
"args": [],
|
|
1627
|
+
"isDeprecated": false
|
|
1628
|
+
},
|
|
1629
|
+
{
|
|
1630
|
+
"name": "e01",
|
|
1631
|
+
"type": {
|
|
1632
|
+
"kind": "SCALAR",
|
|
1633
|
+
"name": "String"
|
|
1634
|
+
},
|
|
1635
|
+
"args": [],
|
|
1636
|
+
"isDeprecated": false
|
|
1637
|
+
},
|
|
1638
|
+
{
|
|
1639
|
+
"name": "e10",
|
|
1640
|
+
"type": {
|
|
1641
|
+
"kind": "SCALAR",
|
|
1642
|
+
"name": "String"
|
|
1643
|
+
},
|
|
1644
|
+
"args": [],
|
|
1645
|
+
"isDeprecated": false
|
|
1646
|
+
},
|
|
1647
|
+
{
|
|
1648
|
+
"name": "e11",
|
|
1649
|
+
"type": {
|
|
1650
|
+
"kind": "SCALAR",
|
|
1651
|
+
"name": "String"
|
|
1652
|
+
},
|
|
1653
|
+
"args": [],
|
|
1654
|
+
"isDeprecated": false
|
|
1655
|
+
},
|
|
1656
|
+
{
|
|
1657
|
+
"name": "e20",
|
|
1658
|
+
"type": {
|
|
1659
|
+
"kind": "SCALAR",
|
|
1660
|
+
"name": "String"
|
|
1661
|
+
},
|
|
1662
|
+
"args": [],
|
|
1663
|
+
"isDeprecated": false
|
|
1664
|
+
},
|
|
1665
|
+
{
|
|
1666
|
+
"name": "e21",
|
|
1667
|
+
"type": {
|
|
1668
|
+
"kind": "SCALAR",
|
|
1669
|
+
"name": "String"
|
|
1670
|
+
},
|
|
1671
|
+
"args": [],
|
|
1672
|
+
"isDeprecated": false
|
|
1673
|
+
}
|
|
1674
|
+
],
|
|
1675
|
+
"interfaces": []
|
|
1676
|
+
},
|
|
1582
1677
|
{
|
|
1583
1678
|
"kind": "OBJECT",
|
|
1584
1679
|
"name": "CoinDenyListStateCreateTransaction",
|
|
@@ -3421,6 +3516,47 @@ const introspection = {
|
|
|
3421
3516
|
}
|
|
3422
3517
|
]
|
|
3423
3518
|
},
|
|
3519
|
+
{
|
|
3520
|
+
"kind": "OBJECT",
|
|
3521
|
+
"name": "Ed25519PublicKey",
|
|
3522
|
+
"fields": [
|
|
3523
|
+
{
|
|
3524
|
+
"name": "bytes",
|
|
3525
|
+
"type": {
|
|
3526
|
+
"kind": "SCALAR",
|
|
3527
|
+
"name": "Base64"
|
|
3528
|
+
},
|
|
3529
|
+
"args": [],
|
|
3530
|
+
"isDeprecated": false
|
|
3531
|
+
}
|
|
3532
|
+
],
|
|
3533
|
+
"interfaces": []
|
|
3534
|
+
},
|
|
3535
|
+
{
|
|
3536
|
+
"kind": "OBJECT",
|
|
3537
|
+
"name": "Ed25519Signature",
|
|
3538
|
+
"fields": [
|
|
3539
|
+
{
|
|
3540
|
+
"name": "publicKey",
|
|
3541
|
+
"type": {
|
|
3542
|
+
"kind": "SCALAR",
|
|
3543
|
+
"name": "Base64"
|
|
3544
|
+
},
|
|
3545
|
+
"args": [],
|
|
3546
|
+
"isDeprecated": false
|
|
3547
|
+
},
|
|
3548
|
+
{
|
|
3549
|
+
"name": "signature",
|
|
3550
|
+
"type": {
|
|
3551
|
+
"kind": "SCALAR",
|
|
3552
|
+
"name": "Base64"
|
|
3553
|
+
},
|
|
3554
|
+
"args": [],
|
|
3555
|
+
"isDeprecated": false
|
|
3556
|
+
}
|
|
3557
|
+
],
|
|
3558
|
+
"interfaces": []
|
|
3559
|
+
},
|
|
3424
3560
|
{
|
|
3425
3561
|
"kind": "OBJECT",
|
|
3426
3562
|
"name": "EndOfEpochTransaction",
|
|
@@ -4315,21 +4451,6 @@ const introspection = {
|
|
|
4315
4451
|
},
|
|
4316
4452
|
"args": [],
|
|
4317
4453
|
"isDeprecated": false
|
|
4318
|
-
},
|
|
4319
|
-
{
|
|
4320
|
-
"name": "errors",
|
|
4321
|
-
"type": {
|
|
4322
|
-
"kind": "LIST",
|
|
4323
|
-
"ofType": {
|
|
4324
|
-
"kind": "NON_NULL",
|
|
4325
|
-
"ofType": {
|
|
4326
|
-
"kind": "SCALAR",
|
|
4327
|
-
"name": "String"
|
|
4328
|
-
}
|
|
4329
|
-
}
|
|
4330
|
-
},
|
|
4331
|
-
"args": [],
|
|
4332
|
-
"isDeprecated": false
|
|
4333
4454
|
}
|
|
4334
4455
|
],
|
|
4335
4456
|
"interfaces": []
|
|
@@ -8317,6 +8438,44 @@ const introspection = {
|
|
|
8317
8438
|
"args": [],
|
|
8318
8439
|
"isDeprecated": false
|
|
8319
8440
|
},
|
|
8441
|
+
{
|
|
8442
|
+
"name": "asVector",
|
|
8443
|
+
"type": {
|
|
8444
|
+
"kind": "OBJECT",
|
|
8445
|
+
"name": "MoveValueConnection"
|
|
8446
|
+
},
|
|
8447
|
+
"args": [
|
|
8448
|
+
{
|
|
8449
|
+
"name": "after",
|
|
8450
|
+
"type": {
|
|
8451
|
+
"kind": "SCALAR",
|
|
8452
|
+
"name": "String"
|
|
8453
|
+
}
|
|
8454
|
+
},
|
|
8455
|
+
{
|
|
8456
|
+
"name": "before",
|
|
8457
|
+
"type": {
|
|
8458
|
+
"kind": "SCALAR",
|
|
8459
|
+
"name": "String"
|
|
8460
|
+
}
|
|
8461
|
+
},
|
|
8462
|
+
{
|
|
8463
|
+
"name": "first",
|
|
8464
|
+
"type": {
|
|
8465
|
+
"kind": "SCALAR",
|
|
8466
|
+
"name": "Int"
|
|
8467
|
+
}
|
|
8468
|
+
},
|
|
8469
|
+
{
|
|
8470
|
+
"name": "last",
|
|
8471
|
+
"type": {
|
|
8472
|
+
"kind": "SCALAR",
|
|
8473
|
+
"name": "Int"
|
|
8474
|
+
}
|
|
8475
|
+
}
|
|
8476
|
+
],
|
|
8477
|
+
"isDeprecated": false
|
|
8478
|
+
},
|
|
8320
8479
|
{
|
|
8321
8480
|
"name": "bcs",
|
|
8322
8481
|
"type": {
|
|
@@ -8397,41 +8556,84 @@ const introspection = {
|
|
|
8397
8556
|
"interfaces": []
|
|
8398
8557
|
},
|
|
8399
8558
|
{
|
|
8400
|
-
"kind": "
|
|
8401
|
-
"name": "
|
|
8402
|
-
"
|
|
8559
|
+
"kind": "OBJECT",
|
|
8560
|
+
"name": "MoveValueConnection",
|
|
8561
|
+
"fields": [
|
|
8403
8562
|
{
|
|
8404
|
-
"name": "
|
|
8563
|
+
"name": "edges",
|
|
8564
|
+
"type": {
|
|
8565
|
+
"kind": "NON_NULL",
|
|
8566
|
+
"ofType": {
|
|
8567
|
+
"kind": "LIST",
|
|
8568
|
+
"ofType": {
|
|
8569
|
+
"kind": "NON_NULL",
|
|
8570
|
+
"ofType": {
|
|
8571
|
+
"kind": "OBJECT",
|
|
8572
|
+
"name": "MoveValueEdge"
|
|
8573
|
+
}
|
|
8574
|
+
}
|
|
8575
|
+
}
|
|
8576
|
+
},
|
|
8577
|
+
"args": [],
|
|
8405
8578
|
"isDeprecated": false
|
|
8406
8579
|
},
|
|
8407
8580
|
{
|
|
8408
|
-
"name": "
|
|
8581
|
+
"name": "nodes",
|
|
8582
|
+
"type": {
|
|
8583
|
+
"kind": "NON_NULL",
|
|
8584
|
+
"ofType": {
|
|
8585
|
+
"kind": "LIST",
|
|
8586
|
+
"ofType": {
|
|
8587
|
+
"kind": "NON_NULL",
|
|
8588
|
+
"ofType": {
|
|
8589
|
+
"kind": "OBJECT",
|
|
8590
|
+
"name": "MoveValue"
|
|
8591
|
+
}
|
|
8592
|
+
}
|
|
8593
|
+
}
|
|
8594
|
+
},
|
|
8595
|
+
"args": [],
|
|
8409
8596
|
"isDeprecated": false
|
|
8410
8597
|
},
|
|
8411
8598
|
{
|
|
8412
|
-
"name": "
|
|
8599
|
+
"name": "pageInfo",
|
|
8600
|
+
"type": {
|
|
8601
|
+
"kind": "NON_NULL",
|
|
8602
|
+
"ofType": {
|
|
8603
|
+
"kind": "OBJECT",
|
|
8604
|
+
"name": "PageInfo"
|
|
8605
|
+
}
|
|
8606
|
+
},
|
|
8607
|
+
"args": [],
|
|
8413
8608
|
"isDeprecated": false
|
|
8414
8609
|
}
|
|
8415
|
-
]
|
|
8610
|
+
],
|
|
8611
|
+
"interfaces": []
|
|
8416
8612
|
},
|
|
8417
8613
|
{
|
|
8418
8614
|
"kind": "OBJECT",
|
|
8419
|
-
"name": "
|
|
8615
|
+
"name": "MoveValueEdge",
|
|
8420
8616
|
"fields": [
|
|
8421
8617
|
{
|
|
8422
|
-
"name": "
|
|
8618
|
+
"name": "cursor",
|
|
8423
8619
|
"type": {
|
|
8424
|
-
"kind": "
|
|
8425
|
-
"
|
|
8620
|
+
"kind": "NON_NULL",
|
|
8621
|
+
"ofType": {
|
|
8622
|
+
"kind": "SCALAR",
|
|
8623
|
+
"name": "String"
|
|
8624
|
+
}
|
|
8426
8625
|
},
|
|
8427
8626
|
"args": [],
|
|
8428
8627
|
"isDeprecated": false
|
|
8429
8628
|
},
|
|
8430
8629
|
{
|
|
8431
|
-
"name": "
|
|
8630
|
+
"name": "node",
|
|
8432
8631
|
"type": {
|
|
8433
|
-
"kind": "
|
|
8434
|
-
"
|
|
8632
|
+
"kind": "NON_NULL",
|
|
8633
|
+
"ofType": {
|
|
8634
|
+
"kind": "OBJECT",
|
|
8635
|
+
"name": "MoveValue"
|
|
8636
|
+
}
|
|
8435
8637
|
},
|
|
8436
8638
|
"args": [],
|
|
8437
8639
|
"isDeprecated": false
|
|
@@ -8440,20 +8642,185 @@ const introspection = {
|
|
|
8440
8642
|
"interfaces": []
|
|
8441
8643
|
},
|
|
8442
8644
|
{
|
|
8443
|
-
"kind": "
|
|
8444
|
-
"name": "
|
|
8445
|
-
"
|
|
8645
|
+
"kind": "ENUM",
|
|
8646
|
+
"name": "MoveVisibility",
|
|
8647
|
+
"enumValues": [
|
|
8446
8648
|
{
|
|
8447
|
-
"name": "
|
|
8448
|
-
"
|
|
8449
|
-
|
|
8450
|
-
|
|
8451
|
-
|
|
8452
|
-
|
|
8453
|
-
|
|
8454
|
-
|
|
8455
|
-
"
|
|
8456
|
-
|
|
8649
|
+
"name": "PUBLIC",
|
|
8650
|
+
"isDeprecated": false
|
|
8651
|
+
},
|
|
8652
|
+
{
|
|
8653
|
+
"name": "PRIVATE",
|
|
8654
|
+
"isDeprecated": false
|
|
8655
|
+
},
|
|
8656
|
+
{
|
|
8657
|
+
"name": "FRIEND",
|
|
8658
|
+
"isDeprecated": false
|
|
8659
|
+
}
|
|
8660
|
+
]
|
|
8661
|
+
},
|
|
8662
|
+
{
|
|
8663
|
+
"kind": "OBJECT",
|
|
8664
|
+
"name": "MultisigCommittee",
|
|
8665
|
+
"fields": [
|
|
8666
|
+
{
|
|
8667
|
+
"name": "members",
|
|
8668
|
+
"type": {
|
|
8669
|
+
"kind": "LIST",
|
|
8670
|
+
"ofType": {
|
|
8671
|
+
"kind": "NON_NULL",
|
|
8672
|
+
"ofType": {
|
|
8673
|
+
"kind": "OBJECT",
|
|
8674
|
+
"name": "MultisigMember"
|
|
8675
|
+
}
|
|
8676
|
+
}
|
|
8677
|
+
},
|
|
8678
|
+
"args": [],
|
|
8679
|
+
"isDeprecated": false
|
|
8680
|
+
},
|
|
8681
|
+
{
|
|
8682
|
+
"name": "threshold",
|
|
8683
|
+
"type": {
|
|
8684
|
+
"kind": "SCALAR",
|
|
8685
|
+
"name": "Int"
|
|
8686
|
+
},
|
|
8687
|
+
"args": [],
|
|
8688
|
+
"isDeprecated": false
|
|
8689
|
+
}
|
|
8690
|
+
],
|
|
8691
|
+
"interfaces": []
|
|
8692
|
+
},
|
|
8693
|
+
{
|
|
8694
|
+
"kind": "OBJECT",
|
|
8695
|
+
"name": "MultisigMember",
|
|
8696
|
+
"fields": [
|
|
8697
|
+
{
|
|
8698
|
+
"name": "publicKey",
|
|
8699
|
+
"type": {
|
|
8700
|
+
"kind": "UNION",
|
|
8701
|
+
"name": "MultisigMemberPublicKey"
|
|
8702
|
+
},
|
|
8703
|
+
"args": [],
|
|
8704
|
+
"isDeprecated": false
|
|
8705
|
+
},
|
|
8706
|
+
{
|
|
8707
|
+
"name": "weight",
|
|
8708
|
+
"type": {
|
|
8709
|
+
"kind": "SCALAR",
|
|
8710
|
+
"name": "Int"
|
|
8711
|
+
},
|
|
8712
|
+
"args": [],
|
|
8713
|
+
"isDeprecated": false
|
|
8714
|
+
}
|
|
8715
|
+
],
|
|
8716
|
+
"interfaces": []
|
|
8717
|
+
},
|
|
8718
|
+
{
|
|
8719
|
+
"kind": "UNION",
|
|
8720
|
+
"name": "MultisigMemberPublicKey",
|
|
8721
|
+
"possibleTypes": [
|
|
8722
|
+
{
|
|
8723
|
+
"kind": "OBJECT",
|
|
8724
|
+
"name": "Ed25519PublicKey"
|
|
8725
|
+
},
|
|
8726
|
+
{
|
|
8727
|
+
"kind": "OBJECT",
|
|
8728
|
+
"name": "PasskeyPublicKey"
|
|
8729
|
+
},
|
|
8730
|
+
{
|
|
8731
|
+
"kind": "OBJECT",
|
|
8732
|
+
"name": "Secp256K1PublicKey"
|
|
8733
|
+
},
|
|
8734
|
+
{
|
|
8735
|
+
"kind": "OBJECT",
|
|
8736
|
+
"name": "Secp256R1PublicKey"
|
|
8737
|
+
},
|
|
8738
|
+
{
|
|
8739
|
+
"kind": "OBJECT",
|
|
8740
|
+
"name": "ZkLoginPublicIdentifier"
|
|
8741
|
+
}
|
|
8742
|
+
]
|
|
8743
|
+
},
|
|
8744
|
+
{
|
|
8745
|
+
"kind": "OBJECT",
|
|
8746
|
+
"name": "MultisigSignature",
|
|
8747
|
+
"fields": [
|
|
8748
|
+
{
|
|
8749
|
+
"name": "bitmap",
|
|
8750
|
+
"type": {
|
|
8751
|
+
"kind": "SCALAR",
|
|
8752
|
+
"name": "Int"
|
|
8753
|
+
},
|
|
8754
|
+
"args": [],
|
|
8755
|
+
"isDeprecated": false
|
|
8756
|
+
},
|
|
8757
|
+
{
|
|
8758
|
+
"name": "committee",
|
|
8759
|
+
"type": {
|
|
8760
|
+
"kind": "OBJECT",
|
|
8761
|
+
"name": "MultisigCommittee"
|
|
8762
|
+
},
|
|
8763
|
+
"args": [],
|
|
8764
|
+
"isDeprecated": false
|
|
8765
|
+
},
|
|
8766
|
+
{
|
|
8767
|
+
"name": "signatures",
|
|
8768
|
+
"type": {
|
|
8769
|
+
"kind": "LIST",
|
|
8770
|
+
"ofType": {
|
|
8771
|
+
"kind": "NON_NULL",
|
|
8772
|
+
"ofType": {
|
|
8773
|
+
"kind": "UNION",
|
|
8774
|
+
"name": "SignatureScheme"
|
|
8775
|
+
}
|
|
8776
|
+
}
|
|
8777
|
+
},
|
|
8778
|
+
"args": [],
|
|
8779
|
+
"isDeprecated": false
|
|
8780
|
+
}
|
|
8781
|
+
],
|
|
8782
|
+
"interfaces": []
|
|
8783
|
+
},
|
|
8784
|
+
{
|
|
8785
|
+
"kind": "OBJECT",
|
|
8786
|
+
"name": "MutateConsensusStreamEnded",
|
|
8787
|
+
"fields": [
|
|
8788
|
+
{
|
|
8789
|
+
"name": "address",
|
|
8790
|
+
"type": {
|
|
8791
|
+
"kind": "SCALAR",
|
|
8792
|
+
"name": "SuiAddress"
|
|
8793
|
+
},
|
|
8794
|
+
"args": [],
|
|
8795
|
+
"isDeprecated": false
|
|
8796
|
+
},
|
|
8797
|
+
{
|
|
8798
|
+
"name": "sequenceNumber",
|
|
8799
|
+
"type": {
|
|
8800
|
+
"kind": "SCALAR",
|
|
8801
|
+
"name": "UInt53"
|
|
8802
|
+
},
|
|
8803
|
+
"args": [],
|
|
8804
|
+
"isDeprecated": false
|
|
8805
|
+
}
|
|
8806
|
+
],
|
|
8807
|
+
"interfaces": []
|
|
8808
|
+
},
|
|
8809
|
+
{
|
|
8810
|
+
"kind": "OBJECT",
|
|
8811
|
+
"name": "Mutation",
|
|
8812
|
+
"fields": [
|
|
8813
|
+
{
|
|
8814
|
+
"name": "executeTransaction",
|
|
8815
|
+
"type": {
|
|
8816
|
+
"kind": "NON_NULL",
|
|
8817
|
+
"ofType": {
|
|
8818
|
+
"kind": "OBJECT",
|
|
8819
|
+
"name": "ExecutionResult"
|
|
8820
|
+
}
|
|
8821
|
+
},
|
|
8822
|
+
"args": [
|
|
8823
|
+
{
|
|
8457
8824
|
"name": "signatures",
|
|
8458
8825
|
"type": {
|
|
8459
8826
|
"kind": "NON_NULL",
|
|
@@ -9719,6 +10086,56 @@ const introspection = {
|
|
|
9719
10086
|
],
|
|
9720
10087
|
"interfaces": []
|
|
9721
10088
|
},
|
|
10089
|
+
{
|
|
10090
|
+
"kind": "OBJECT",
|
|
10091
|
+
"name": "PasskeyPublicKey",
|
|
10092
|
+
"fields": [
|
|
10093
|
+
{
|
|
10094
|
+
"name": "bytes",
|
|
10095
|
+
"type": {
|
|
10096
|
+
"kind": "SCALAR",
|
|
10097
|
+
"name": "Base64"
|
|
10098
|
+
},
|
|
10099
|
+
"args": [],
|
|
10100
|
+
"isDeprecated": false
|
|
10101
|
+
}
|
|
10102
|
+
],
|
|
10103
|
+
"interfaces": []
|
|
10104
|
+
},
|
|
10105
|
+
{
|
|
10106
|
+
"kind": "OBJECT",
|
|
10107
|
+
"name": "PasskeySignature",
|
|
10108
|
+
"fields": [
|
|
10109
|
+
{
|
|
10110
|
+
"name": "authenticatorData",
|
|
10111
|
+
"type": {
|
|
10112
|
+
"kind": "SCALAR",
|
|
10113
|
+
"name": "Base64"
|
|
10114
|
+
},
|
|
10115
|
+
"args": [],
|
|
10116
|
+
"isDeprecated": false
|
|
10117
|
+
},
|
|
10118
|
+
{
|
|
10119
|
+
"name": "clientDataJson",
|
|
10120
|
+
"type": {
|
|
10121
|
+
"kind": "SCALAR",
|
|
10122
|
+
"name": "String"
|
|
10123
|
+
},
|
|
10124
|
+
"args": [],
|
|
10125
|
+
"isDeprecated": false
|
|
10126
|
+
},
|
|
10127
|
+
{
|
|
10128
|
+
"name": "signature",
|
|
10129
|
+
"type": {
|
|
10130
|
+
"kind": "UNION",
|
|
10131
|
+
"name": "SignatureScheme"
|
|
10132
|
+
},
|
|
10133
|
+
"args": [],
|
|
10134
|
+
"isDeprecated": false
|
|
10135
|
+
}
|
|
10136
|
+
],
|
|
10137
|
+
"interfaces": []
|
|
10138
|
+
},
|
|
9722
10139
|
{
|
|
9723
10140
|
"kind": "OBJECT",
|
|
9724
10141
|
"name": "PerEpochConfig",
|
|
@@ -11061,11 +11478,8 @@ const introspection = {
|
|
|
11061
11478
|
{
|
|
11062
11479
|
"name": "verifyZkLoginSignature",
|
|
11063
11480
|
"type": {
|
|
11064
|
-
"kind": "
|
|
11065
|
-
"
|
|
11066
|
-
"kind": "OBJECT",
|
|
11067
|
-
"name": "ZkLoginVerifyResult"
|
|
11068
|
-
}
|
|
11481
|
+
"kind": "OBJECT",
|
|
11482
|
+
"name": "ZkLoginVerifyResult"
|
|
11069
11483
|
},
|
|
11070
11484
|
"args": [
|
|
11071
11485
|
{
|
|
@@ -11228,6 +11642,88 @@ const introspection = {
|
|
|
11228
11642
|
}
|
|
11229
11643
|
]
|
|
11230
11644
|
},
|
|
11645
|
+
{
|
|
11646
|
+
"kind": "OBJECT",
|
|
11647
|
+
"name": "Secp256K1PublicKey",
|
|
11648
|
+
"fields": [
|
|
11649
|
+
{
|
|
11650
|
+
"name": "bytes",
|
|
11651
|
+
"type": {
|
|
11652
|
+
"kind": "SCALAR",
|
|
11653
|
+
"name": "Base64"
|
|
11654
|
+
},
|
|
11655
|
+
"args": [],
|
|
11656
|
+
"isDeprecated": false
|
|
11657
|
+
}
|
|
11658
|
+
],
|
|
11659
|
+
"interfaces": []
|
|
11660
|
+
},
|
|
11661
|
+
{
|
|
11662
|
+
"kind": "OBJECT",
|
|
11663
|
+
"name": "Secp256K1Signature",
|
|
11664
|
+
"fields": [
|
|
11665
|
+
{
|
|
11666
|
+
"name": "publicKey",
|
|
11667
|
+
"type": {
|
|
11668
|
+
"kind": "SCALAR",
|
|
11669
|
+
"name": "Base64"
|
|
11670
|
+
},
|
|
11671
|
+
"args": [],
|
|
11672
|
+
"isDeprecated": false
|
|
11673
|
+
},
|
|
11674
|
+
{
|
|
11675
|
+
"name": "signature",
|
|
11676
|
+
"type": {
|
|
11677
|
+
"kind": "SCALAR",
|
|
11678
|
+
"name": "Base64"
|
|
11679
|
+
},
|
|
11680
|
+
"args": [],
|
|
11681
|
+
"isDeprecated": false
|
|
11682
|
+
}
|
|
11683
|
+
],
|
|
11684
|
+
"interfaces": []
|
|
11685
|
+
},
|
|
11686
|
+
{
|
|
11687
|
+
"kind": "OBJECT",
|
|
11688
|
+
"name": "Secp256R1PublicKey",
|
|
11689
|
+
"fields": [
|
|
11690
|
+
{
|
|
11691
|
+
"name": "bytes",
|
|
11692
|
+
"type": {
|
|
11693
|
+
"kind": "SCALAR",
|
|
11694
|
+
"name": "Base64"
|
|
11695
|
+
},
|
|
11696
|
+
"args": [],
|
|
11697
|
+
"isDeprecated": false
|
|
11698
|
+
}
|
|
11699
|
+
],
|
|
11700
|
+
"interfaces": []
|
|
11701
|
+
},
|
|
11702
|
+
{
|
|
11703
|
+
"kind": "OBJECT",
|
|
11704
|
+
"name": "Secp256R1Signature",
|
|
11705
|
+
"fields": [
|
|
11706
|
+
{
|
|
11707
|
+
"name": "publicKey",
|
|
11708
|
+
"type": {
|
|
11709
|
+
"kind": "SCALAR",
|
|
11710
|
+
"name": "Base64"
|
|
11711
|
+
},
|
|
11712
|
+
"args": [],
|
|
11713
|
+
"isDeprecated": false
|
|
11714
|
+
},
|
|
11715
|
+
{
|
|
11716
|
+
"name": "signature",
|
|
11717
|
+
"type": {
|
|
11718
|
+
"kind": "SCALAR",
|
|
11719
|
+
"name": "Base64"
|
|
11720
|
+
},
|
|
11721
|
+
"args": [],
|
|
11722
|
+
"isDeprecated": false
|
|
11723
|
+
}
|
|
11724
|
+
],
|
|
11725
|
+
"interfaces": []
|
|
11726
|
+
},
|
|
11231
11727
|
{
|
|
11232
11728
|
"kind": "OBJECT",
|
|
11233
11729
|
"name": "ServiceConfig",
|
|
@@ -11559,6 +12055,36 @@ const introspection = {
|
|
|
11559
12055
|
],
|
|
11560
12056
|
"interfaces": []
|
|
11561
12057
|
},
|
|
12058
|
+
{
|
|
12059
|
+
"kind": "UNION",
|
|
12060
|
+
"name": "SignatureScheme",
|
|
12061
|
+
"possibleTypes": [
|
|
12062
|
+
{
|
|
12063
|
+
"kind": "OBJECT",
|
|
12064
|
+
"name": "Ed25519Signature"
|
|
12065
|
+
},
|
|
12066
|
+
{
|
|
12067
|
+
"kind": "OBJECT",
|
|
12068
|
+
"name": "MultisigSignature"
|
|
12069
|
+
},
|
|
12070
|
+
{
|
|
12071
|
+
"kind": "OBJECT",
|
|
12072
|
+
"name": "PasskeySignature"
|
|
12073
|
+
},
|
|
12074
|
+
{
|
|
12075
|
+
"kind": "OBJECT",
|
|
12076
|
+
"name": "Secp256K1Signature"
|
|
12077
|
+
},
|
|
12078
|
+
{
|
|
12079
|
+
"kind": "OBJECT",
|
|
12080
|
+
"name": "Secp256R1Signature"
|
|
12081
|
+
},
|
|
12082
|
+
{
|
|
12083
|
+
"kind": "OBJECT",
|
|
12084
|
+
"name": "ZkLoginSignature"
|
|
12085
|
+
}
|
|
12086
|
+
]
|
|
12087
|
+
},
|
|
11562
12088
|
{
|
|
11563
12089
|
"kind": "OBJECT",
|
|
11564
12090
|
"name": "SimulationResult",
|
|
@@ -11572,15 +12098,6 @@ const introspection = {
|
|
|
11572
12098
|
"args": [],
|
|
11573
12099
|
"isDeprecated": false
|
|
11574
12100
|
},
|
|
11575
|
-
{
|
|
11576
|
-
"name": "error",
|
|
11577
|
-
"type": {
|
|
11578
|
-
"kind": "SCALAR",
|
|
11579
|
-
"name": "String"
|
|
11580
|
-
},
|
|
11581
|
-
"args": [],
|
|
11582
|
-
"isDeprecated": false
|
|
11583
|
-
},
|
|
11584
12101
|
{
|
|
11585
12102
|
"name": "outputs",
|
|
11586
12103
|
"type": {
|
|
@@ -12708,6 +13225,15 @@ const introspection = {
|
|
|
12708
13225
|
"kind": "OBJECT",
|
|
12709
13226
|
"name": "UserSignature",
|
|
12710
13227
|
"fields": [
|
|
13228
|
+
{
|
|
13229
|
+
"name": "scheme",
|
|
13230
|
+
"type": {
|
|
13231
|
+
"kind": "UNION",
|
|
13232
|
+
"name": "SignatureScheme"
|
|
13233
|
+
},
|
|
13234
|
+
"args": [],
|
|
13235
|
+
"isDeprecated": false
|
|
13236
|
+
},
|
|
12711
13237
|
{
|
|
12712
13238
|
"name": "signatureBytes",
|
|
12713
13239
|
"type": {
|
|
@@ -13043,6 +13569,74 @@ const introspection = {
|
|
|
13043
13569
|
],
|
|
13044
13570
|
"interfaces": []
|
|
13045
13571
|
},
|
|
13572
|
+
{
|
|
13573
|
+
"kind": "OBJECT",
|
|
13574
|
+
"name": "ZkLoginClaim",
|
|
13575
|
+
"fields": [
|
|
13576
|
+
{
|
|
13577
|
+
"name": "indexMod4",
|
|
13578
|
+
"type": {
|
|
13579
|
+
"kind": "SCALAR",
|
|
13580
|
+
"name": "Int"
|
|
13581
|
+
},
|
|
13582
|
+
"args": [],
|
|
13583
|
+
"isDeprecated": false
|
|
13584
|
+
},
|
|
13585
|
+
{
|
|
13586
|
+
"name": "value",
|
|
13587
|
+
"type": {
|
|
13588
|
+
"kind": "SCALAR",
|
|
13589
|
+
"name": "String"
|
|
13590
|
+
},
|
|
13591
|
+
"args": [],
|
|
13592
|
+
"isDeprecated": false
|
|
13593
|
+
}
|
|
13594
|
+
],
|
|
13595
|
+
"interfaces": []
|
|
13596
|
+
},
|
|
13597
|
+
{
|
|
13598
|
+
"kind": "OBJECT",
|
|
13599
|
+
"name": "ZkLoginInputs",
|
|
13600
|
+
"fields": [
|
|
13601
|
+
{
|
|
13602
|
+
"name": "addressSeed",
|
|
13603
|
+
"type": {
|
|
13604
|
+
"kind": "SCALAR",
|
|
13605
|
+
"name": "String"
|
|
13606
|
+
},
|
|
13607
|
+
"args": [],
|
|
13608
|
+
"isDeprecated": false
|
|
13609
|
+
},
|
|
13610
|
+
{
|
|
13611
|
+
"name": "headerBase64",
|
|
13612
|
+
"type": {
|
|
13613
|
+
"kind": "SCALAR",
|
|
13614
|
+
"name": "String"
|
|
13615
|
+
},
|
|
13616
|
+
"args": [],
|
|
13617
|
+
"isDeprecated": false
|
|
13618
|
+
},
|
|
13619
|
+
{
|
|
13620
|
+
"name": "issBase64Details",
|
|
13621
|
+
"type": {
|
|
13622
|
+
"kind": "OBJECT",
|
|
13623
|
+
"name": "ZkLoginClaim"
|
|
13624
|
+
},
|
|
13625
|
+
"args": [],
|
|
13626
|
+
"isDeprecated": false
|
|
13627
|
+
},
|
|
13628
|
+
{
|
|
13629
|
+
"name": "proofPoints",
|
|
13630
|
+
"type": {
|
|
13631
|
+
"kind": "OBJECT",
|
|
13632
|
+
"name": "ZkLoginProof"
|
|
13633
|
+
},
|
|
13634
|
+
"args": [],
|
|
13635
|
+
"isDeprecated": false
|
|
13636
|
+
}
|
|
13637
|
+
],
|
|
13638
|
+
"interfaces": []
|
|
13639
|
+
},
|
|
13046
13640
|
{
|
|
13047
13641
|
"kind": "ENUM",
|
|
13048
13642
|
"name": "ZkLoginIntentScope",
|
|
@@ -13059,17 +13653,144 @@ const introspection = {
|
|
|
13059
13653
|
},
|
|
13060
13654
|
{
|
|
13061
13655
|
"kind": "OBJECT",
|
|
13062
|
-
"name": "
|
|
13656
|
+
"name": "ZkLoginJwkId",
|
|
13657
|
+
"fields": [
|
|
13658
|
+
{
|
|
13659
|
+
"name": "iss",
|
|
13660
|
+
"type": {
|
|
13661
|
+
"kind": "SCALAR",
|
|
13662
|
+
"name": "String"
|
|
13663
|
+
},
|
|
13664
|
+
"args": [],
|
|
13665
|
+
"isDeprecated": false
|
|
13666
|
+
},
|
|
13667
|
+
{
|
|
13668
|
+
"name": "kid",
|
|
13669
|
+
"type": {
|
|
13670
|
+
"kind": "SCALAR",
|
|
13671
|
+
"name": "String"
|
|
13672
|
+
},
|
|
13673
|
+
"args": [],
|
|
13674
|
+
"isDeprecated": false
|
|
13675
|
+
}
|
|
13676
|
+
],
|
|
13677
|
+
"interfaces": []
|
|
13678
|
+
},
|
|
13679
|
+
{
|
|
13680
|
+
"kind": "OBJECT",
|
|
13681
|
+
"name": "ZkLoginProof",
|
|
13682
|
+
"fields": [
|
|
13683
|
+
{
|
|
13684
|
+
"name": "a",
|
|
13685
|
+
"type": {
|
|
13686
|
+
"kind": "OBJECT",
|
|
13687
|
+
"name": "CircomG1"
|
|
13688
|
+
},
|
|
13689
|
+
"args": [],
|
|
13690
|
+
"isDeprecated": false
|
|
13691
|
+
},
|
|
13692
|
+
{
|
|
13693
|
+
"name": "b",
|
|
13694
|
+
"type": {
|
|
13695
|
+
"kind": "OBJECT",
|
|
13696
|
+
"name": "CircomG2"
|
|
13697
|
+
},
|
|
13698
|
+
"args": [],
|
|
13699
|
+
"isDeprecated": false
|
|
13700
|
+
},
|
|
13701
|
+
{
|
|
13702
|
+
"name": "c",
|
|
13703
|
+
"type": {
|
|
13704
|
+
"kind": "OBJECT",
|
|
13705
|
+
"name": "CircomG1"
|
|
13706
|
+
},
|
|
13707
|
+
"args": [],
|
|
13708
|
+
"isDeprecated": false
|
|
13709
|
+
}
|
|
13710
|
+
],
|
|
13711
|
+
"interfaces": []
|
|
13712
|
+
},
|
|
13713
|
+
{
|
|
13714
|
+
"kind": "OBJECT",
|
|
13715
|
+
"name": "ZkLoginPublicIdentifier",
|
|
13063
13716
|
"fields": [
|
|
13064
13717
|
{
|
|
13065
|
-
"name": "
|
|
13718
|
+
"name": "addressSeed",
|
|
13719
|
+
"type": {
|
|
13720
|
+
"kind": "SCALAR",
|
|
13721
|
+
"name": "String"
|
|
13722
|
+
},
|
|
13723
|
+
"args": [],
|
|
13724
|
+
"isDeprecated": false
|
|
13725
|
+
},
|
|
13726
|
+
{
|
|
13727
|
+
"name": "iss",
|
|
13066
13728
|
"type": {
|
|
13067
13729
|
"kind": "SCALAR",
|
|
13068
13730
|
"name": "String"
|
|
13069
13731
|
},
|
|
13070
13732
|
"args": [],
|
|
13071
13733
|
"isDeprecated": false
|
|
13734
|
+
}
|
|
13735
|
+
],
|
|
13736
|
+
"interfaces": []
|
|
13737
|
+
},
|
|
13738
|
+
{
|
|
13739
|
+
"kind": "OBJECT",
|
|
13740
|
+
"name": "ZkLoginSignature",
|
|
13741
|
+
"fields": [
|
|
13742
|
+
{
|
|
13743
|
+
"name": "inputs",
|
|
13744
|
+
"type": {
|
|
13745
|
+
"kind": "OBJECT",
|
|
13746
|
+
"name": "ZkLoginInputs"
|
|
13747
|
+
},
|
|
13748
|
+
"args": [],
|
|
13749
|
+
"isDeprecated": false
|
|
13750
|
+
},
|
|
13751
|
+
{
|
|
13752
|
+
"name": "jwkId",
|
|
13753
|
+
"type": {
|
|
13754
|
+
"kind": "OBJECT",
|
|
13755
|
+
"name": "ZkLoginJwkId"
|
|
13756
|
+
},
|
|
13757
|
+
"args": [],
|
|
13758
|
+
"isDeprecated": false
|
|
13072
13759
|
},
|
|
13760
|
+
{
|
|
13761
|
+
"name": "maxEpoch",
|
|
13762
|
+
"type": {
|
|
13763
|
+
"kind": "SCALAR",
|
|
13764
|
+
"name": "UInt53"
|
|
13765
|
+
},
|
|
13766
|
+
"args": [],
|
|
13767
|
+
"isDeprecated": false
|
|
13768
|
+
},
|
|
13769
|
+
{
|
|
13770
|
+
"name": "publicIdentifier",
|
|
13771
|
+
"type": {
|
|
13772
|
+
"kind": "OBJECT",
|
|
13773
|
+
"name": "ZkLoginPublicIdentifier"
|
|
13774
|
+
},
|
|
13775
|
+
"args": [],
|
|
13776
|
+
"isDeprecated": false
|
|
13777
|
+
},
|
|
13778
|
+
{
|
|
13779
|
+
"name": "signature",
|
|
13780
|
+
"type": {
|
|
13781
|
+
"kind": "UNION",
|
|
13782
|
+
"name": "SignatureScheme"
|
|
13783
|
+
},
|
|
13784
|
+
"args": [],
|
|
13785
|
+
"isDeprecated": false
|
|
13786
|
+
}
|
|
13787
|
+
],
|
|
13788
|
+
"interfaces": []
|
|
13789
|
+
},
|
|
13790
|
+
{
|
|
13791
|
+
"kind": "OBJECT",
|
|
13792
|
+
"name": "ZkLoginVerifyResult",
|
|
13793
|
+
"fields": [
|
|
13073
13794
|
{
|
|
13074
13795
|
"name": "success",
|
|
13075
13796
|
"type": {
|