@settlemint/sdk-eas 2.3.5-prf7f294ed → 2.3.5-prfb2ed7df

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.
@@ -1,16 +1,30 @@
1
- import { createPortalClient } from "@settlemint/sdk-portal";
2
- import { Address, Hex } from "viem";
3
- import * as gql_tada0 from "gql.tada";
1
+ import { z } from "zod/v4";
4
2
 
5
- //#region src/types.d.ts
3
+ //#region src/client-options.schema.d.ts
6
4
  /**
7
- * Common address constants
5
+ * Schema for validating EAS client configuration options.
6
+ * Extends the base Viem client options with EAS-specific requirements.
8
7
  */
9
8
  /**
10
- * Common address constants
9
+ * Schema for validating EAS client configuration options.
10
+ * Extends the base Viem client options with EAS-specific requirements.
11
+ */
12
+ declare const ClientOptionsSchema: z.ZodObject<{
13
+ schemaRegistryAddress: z.ZodString;
14
+ attestationAddress: z.ZodString;
15
+ accessToken: z.ZodString;
16
+ chainId: z.ZodString;
17
+ chainName: z.ZodString;
18
+ rpcUrl: z.ZodString;
19
+ }, z.core.$strip>;
20
+ /**
21
+ * Configuration options for creating an EAS client.
22
+ * Combines EAS-specific options with base Viem client options.
11
23
  */
12
- declare const ZERO_ADDRESS: "0x0000000000000000000000000000000000000000";
13
- declare const ZERO_BYTES32: Hex;
24
+ type ClientOptions = z.infer<typeof ClientOptionsSchema>;
25
+
26
+ //#endregion
27
+ //#region src/types.d.ts
14
28
  /**
15
29
  * Supported field types for EAS schema fields.
16
30
  * Maps to the Solidity types that can be used in EAS schemas.
@@ -39,4205 +53,45 @@ interface SchemaField {
39
53
  description?: string;
40
54
  }
41
55
  /**
42
- * Configuration options for the EAS client
56
+ * Options for registering a new schema in the EAS Schema Registry.
43
57
  */
44
- interface EASClientOptions {
45
- /** Portal GraphQL endpoint URL */
46
- instance: string;
47
- /** Portal access token */
48
- accessToken: string;
49
- /** Optional EAS contract address (if already deployed) */
50
- easContractAddress?: Address;
51
- /** Optional Schema Registry contract address (if already deployed) */
52
- schemaRegistryContractAddress?: Address;
53
- /** Enable debug logging */
54
- debug?: boolean;
55
- }
56
- /**
57
- * Schema registration request
58
- */
59
- interface SchemaRequest {
60
- /** Schema fields (alternative to schema string) */
61
- fields?: SchemaField[];
62
- /** Raw schema string (alternative to fields) */
63
- schema?: string;
64
- /** Resolver contract address (use ZERO_ADDRESS for no resolver) */
65
- resolver: Address;
58
+ interface RegisterSchemaOptions {
59
+ /** Array of fields that make up the schema */
60
+ fields: SchemaField[];
61
+ /** Address of the resolver contract that will handle attestations */
62
+ resolverAddress: string;
66
63
  /** Whether attestations using this schema can be revoked */
67
64
  revocable: boolean;
68
65
  }
69
- /**
70
- * Attestation data structure
71
- */
72
- interface AttestationData {
73
- /** Recipient of the attestation */
74
- recipient: Address;
75
- /** Expiration time (0 for no expiration) */
76
- expirationTime: bigint;
77
- /** Whether this attestation can be revoked */
78
- revocable: boolean;
79
- /** Reference UID (use ZERO_BYTES32 for no reference) */
80
- refUID: Hex;
81
- /** Encoded attestation data */
82
- data: Hex;
83
- /** Value sent with the attestation */
84
- value: bigint;
85
- }
86
- /**
87
- * Attestation request
88
- */
89
- interface AttestationRequest {
90
- /** Schema UID to attest against */
91
- schema: Hex;
92
- /** Attestation data */
93
- data: AttestationData;
94
- }
95
- /**
96
- * Transaction result
97
- */
98
- interface TransactionResult {
99
- /** Transaction hash */
100
- hash: Hex;
101
- /** Whether the transaction was successful */
102
- success: boolean;
103
- }
104
- /**
105
- * Schema information
106
- */
107
- interface SchemaData {
108
- /** Schema UID */
109
- uid: Hex;
110
- /** Resolver contract address */
111
- resolver: Address;
112
- /** Whether attestations can be revoked */
113
- revocable: boolean;
114
- /** Schema string */
115
- schema: string;
116
- }
117
- /**
118
- * Attestation information
119
- */
120
- interface AttestationInfo {
121
- /** Attestation UID */
122
- uid: Hex;
123
- /** Schema UID */
124
- schema: Hex;
125
- /** Address that created the attestation */
126
- attester: Address;
127
- /** Recipient of the attestation */
128
- recipient: Address;
129
- /** Creation timestamp */
130
- time: bigint;
131
- /** Expiration timestamp */
132
- expirationTime: bigint;
133
- /** Whether this attestation can be revoked */
134
- revocable: boolean;
135
- /** Reference UID */
136
- refUID: Hex;
137
- /** Encoded attestation data */
138
- data: Hex;
139
- /** Value sent with the attestation */
140
- value: bigint;
141
- }
142
- /**
143
- * Options for retrieving schemas
144
- */
145
- interface GetSchemasOptions {
146
- /** Maximum number of schemas to return */
147
- limit?: number;
148
- /** Number of schemas to skip */
149
- offset?: number;
150
- }
151
- /**
152
- * Options for retrieving attestations
153
- */
154
- interface GetAttestationsOptions {
155
- /** Maximum number of attestations to return */
156
- limit?: number;
157
- /** Number of attestations to skip */
158
- offset?: number;
159
- /** Filter by schema UID */
160
- schema?: Hex;
161
- /** Filter by attester address */
162
- attester?: Address;
163
- /** Filter by recipient address */
164
- recipient?: Address;
165
- }
166
- /**
167
- * Contract deployment result
168
- */
169
- interface DeploymentResult {
170
- /** Deployed EAS contract address */
171
- easAddress: Address;
172
- /** Deployed Schema Registry contract address */
173
- schemaRegistryAddress: Address;
174
- /** EAS deployment transaction hash (when address not immediately available) */
175
- easTransactionHash?: Hex;
176
- /** Schema Registry deployment transaction hash (when address not immediately available) */
177
- schemaRegistryTransactionHash?: Hex;
178
- }
179
- /**
180
- * @deprecated Use SchemaRequest instead
181
- */
182
- interface RegisterSchemaOptions extends SchemaRequest {}
183
- /**
184
- * @internal
185
- * Portal transaction response structure
186
- */
187
- interface PortalTransactionResponse {
188
- transactionHash?: string;
189
- contractAddress?: string;
190
- }
191
- /**
192
- * @internal
193
- * Portal schema response structure
194
- */
195
- interface PortalSchemaResponse {
196
- EASSchemaRegistry?: {
197
- getSchema?: {
198
- uid: string;
199
- resolver: string;
200
- revocable: boolean;
201
- schema: string;
202
- };
203
- };
204
- }
205
- /**
206
- * @internal
207
- * Portal attestation response structure
208
- */
209
- interface PortalAttestationResponse {
210
- EAS?: {
211
- getAttestation?: {
212
- uid: string;
213
- schema: string;
214
- attester: string;
215
- recipient: string;
216
- time: string;
217
- expirationTime: string;
218
- revocable: boolean;
219
- refUID: string;
220
- data: string;
221
- };
222
- isAttestationValid?: boolean;
223
- getTimestamp?: string;
224
- };
225
- }
226
- /**
227
- * @internal
228
- * Portal contracts response structure
229
- */
230
- interface PortalContractsResponse {
231
- getContractsEasSchemaRegistry?: {
232
- count: number;
233
- records: Array<{
234
- address: string;
235
- abiName: string;
236
- createdAt: string;
237
- }>;
238
- };
239
- getContractsEas?: {
240
- count: number;
241
- records: Array<{
242
- address: string;
243
- abiName: string;
244
- createdAt: string;
245
- }>;
246
- };
247
- } //#endregion
248
- //#region src/utils/validation.d.ts
249
- declare function validateFieldName(name: string): void;
250
- declare function validateFieldType(type: string): asserts type is EASFieldType;
251
- declare function validateSchemaFields(fields: SchemaField[]): void;
252
- declare function buildSchemaString(fields: SchemaField[]): string;
253
-
254
- //#endregion
255
- //#region src/portal/portal-env.d.ts
256
- /* eslint-disable */
257
- /* prettier-ignore */
258
- type introspection_types = {
259
- 'Boolean': unknown;
260
- 'ConstructorArguments': unknown;
261
- 'Contract': {
262
- kind: 'OBJECT';
263
- name: 'Contract';
264
- fields: {
265
- 'abiName': {
266
- name: 'abiName';
267
- type: {
268
- kind: 'SCALAR';
269
- name: 'String';
270
- ofType: null;
271
- };
272
- };
273
- 'address': {
274
- name: 'address';
275
- type: {
276
- kind: 'SCALAR';
277
- name: 'String';
278
- ofType: null;
279
- };
280
- };
281
- 'createdAt': {
282
- name: 'createdAt';
283
- type: {
284
- kind: 'SCALAR';
285
- name: 'String';
286
- ofType: null;
287
- };
288
- };
289
- 'transaction': {
290
- name: 'transaction';
291
- type: {
292
- kind: 'OBJECT';
293
- name: 'TransactionOutput';
294
- ofType: null;
295
- };
296
- };
297
- 'transactionHash': {
298
- name: 'transactionHash';
299
- type: {
300
- kind: 'SCALAR';
301
- name: 'String';
302
- ofType: null;
303
- };
304
- };
305
- };
306
- };
307
- 'ContractDeployStatus': {
308
- kind: 'OBJECT';
309
- name: 'ContractDeployStatus';
310
- fields: {
311
- 'abiName': {
312
- name: 'abiName';
313
- type: {
314
- kind: 'SCALAR';
315
- name: 'String';
316
- ofType: null;
317
- };
318
- };
319
- 'address': {
320
- name: 'address';
321
- type: {
322
- kind: 'SCALAR';
323
- name: 'String';
324
- ofType: null;
325
- };
326
- };
327
- 'createdAt': {
328
- name: 'createdAt';
329
- type: {
330
- kind: 'SCALAR';
331
- name: 'String';
332
- ofType: null;
333
- };
334
- };
335
- 'deployedAt': {
336
- name: 'deployedAt';
337
- type: {
338
- kind: 'SCALAR';
339
- name: 'String';
340
- ofType: null;
341
- };
342
- };
343
- 'revertedAt': {
344
- name: 'revertedAt';
345
- type: {
346
- kind: 'SCALAR';
347
- name: 'String';
348
- ofType: null;
349
- };
350
- };
351
- 'transaction': {
352
- name: 'transaction';
353
- type: {
354
- kind: 'OBJECT';
355
- name: 'TransactionOutput';
356
- ofType: null;
357
- };
358
- };
359
- 'transactionHash': {
360
- name: 'transactionHash';
361
- type: {
362
- kind: 'SCALAR';
363
- name: 'String';
364
- ofType: null;
365
- };
366
- };
367
- };
368
- };
369
- 'ContractDeploymentTransactionOutput': {
370
- kind: 'OBJECT';
371
- name: 'ContractDeploymentTransactionOutput';
372
- fields: {
373
- 'transactionHash': {
374
- name: 'transactionHash';
375
- type: {
376
- kind: 'SCALAR';
377
- name: 'String';
378
- ofType: null;
379
- };
380
- };
381
- };
382
- };
383
- 'ContractsDeployStatusPaginatedOutput': {
384
- kind: 'OBJECT';
385
- name: 'ContractsDeployStatusPaginatedOutput';
386
- fields: {
387
- 'count': {
388
- name: 'count';
389
- type: {
390
- kind: 'NON_NULL';
391
- name: never;
392
- ofType: {
393
- kind: 'SCALAR';
394
- name: 'Int';
395
- ofType: null;
396
- };
397
- };
398
- };
399
- 'records': {
400
- name: 'records';
401
- type: {
402
- kind: 'NON_NULL';
403
- name: never;
404
- ofType: {
405
- kind: 'LIST';
406
- name: never;
407
- ofType: {
408
- kind: 'NON_NULL';
409
- name: never;
410
- ofType: {
411
- kind: 'OBJECT';
412
- name: 'ContractDeployStatus';
413
- ofType: null;
414
- };
415
- };
416
- };
417
- };
418
- };
419
- };
420
- };
421
- 'ContractsPaginatedOutput': {
422
- kind: 'OBJECT';
423
- name: 'ContractsPaginatedOutput';
424
- fields: {
425
- 'count': {
426
- name: 'count';
427
- type: {
428
- kind: 'NON_NULL';
429
- name: never;
430
- ofType: {
431
- kind: 'SCALAR';
432
- name: 'Int';
433
- ofType: null;
434
- };
435
- };
436
- };
437
- 'records': {
438
- name: 'records';
439
- type: {
440
- kind: 'NON_NULL';
441
- name: never;
442
- ofType: {
443
- kind: 'LIST';
444
- name: never;
445
- ofType: {
446
- kind: 'NON_NULL';
447
- name: never;
448
- ofType: {
449
- kind: 'OBJECT';
450
- name: 'Contract';
451
- ofType: null;
452
- };
453
- };
454
- };
455
- };
456
- };
457
- };
458
- };
459
- 'CreateWalletInfoInput': {
460
- kind: 'INPUT_OBJECT';
461
- name: 'CreateWalletInfoInput';
462
- isOneOf: false;
463
- inputFields: [{
464
- name: 'name';
465
- type: {
466
- kind: 'NON_NULL';
467
- name: never;
468
- ofType: {
469
- kind: 'SCALAR';
470
- name: 'String';
471
- ofType: null;
472
- };
473
- };
474
- defaultValue: null;
475
- }];
476
- };
477
- 'CreateWalletOutput': {
478
- kind: 'OBJECT';
479
- name: 'CreateWalletOutput';
480
- fields: {
481
- 'address': {
482
- name: 'address';
483
- type: {
484
- kind: 'SCALAR';
485
- name: 'String';
486
- ofType: null;
487
- };
488
- };
489
- 'derivationPath': {
490
- name: 'derivationPath';
491
- type: {
492
- kind: 'SCALAR';
493
- name: 'String';
494
- ofType: null;
495
- };
496
- };
497
- 'id': {
498
- name: 'id';
499
- type: {
500
- kind: 'SCALAR';
501
- name: 'String';
502
- ofType: null;
503
- };
504
- };
505
- 'name': {
506
- name: 'name';
507
- type: {
508
- kind: 'SCALAR';
509
- name: 'String';
510
- ofType: null;
511
- };
512
- };
513
- };
514
- };
515
- 'CreateWalletVerificationInput': {
516
- kind: 'INPUT_OBJECT';
517
- name: 'CreateWalletVerificationInput';
518
- isOneOf: false;
519
- inputFields: [{
520
- name: 'otp';
521
- type: {
522
- kind: 'INPUT_OBJECT';
523
- name: 'OTPSettingsInput';
524
- ofType: null;
525
- };
526
- defaultValue: null;
527
- }, {
528
- name: 'pincode';
529
- type: {
530
- kind: 'INPUT_OBJECT';
531
- name: 'PincodeSettingsInput';
532
- ofType: null;
533
- };
534
- defaultValue: null;
535
- }, {
536
- name: 'secretCodes';
537
- type: {
538
- kind: 'INPUT_OBJECT';
539
- name: 'SecretCodesSettingsInput';
540
- ofType: null;
541
- };
542
- defaultValue: null;
543
- }];
544
- };
545
- 'CreateWalletVerificationOutput': {
546
- kind: 'OBJECT';
547
- name: 'CreateWalletVerificationOutput';
548
- fields: {
549
- 'id': {
550
- name: 'id';
551
- type: {
552
- kind: 'SCALAR';
553
- name: 'String';
554
- ofType: null;
555
- };
556
- };
557
- 'name': {
558
- name: 'name';
559
- type: {
560
- kind: 'SCALAR';
561
- name: 'String';
562
- ofType: null;
563
- };
564
- };
565
- 'parameters': {
566
- name: 'parameters';
567
- type: {
568
- kind: 'SCALAR';
569
- name: 'JSON';
570
- ofType: null;
571
- };
572
- };
573
- 'verificationType': {
574
- name: 'verificationType';
575
- type: {
576
- kind: 'ENUM';
577
- name: 'WalletVerificationType';
578
- ofType: null;
579
- };
580
- };
581
- };
582
- };
583
- 'DeleteWalletVerificationOutput': {
584
- kind: 'OBJECT';
585
- name: 'DeleteWalletVerificationOutput';
586
- fields: {
587
- 'success': {
588
- name: 'success';
589
- type: {
590
- kind: 'SCALAR';
591
- name: 'Boolean';
592
- ofType: null;
593
- };
594
- };
595
- };
596
- };
597
- 'DeployContractEASInput': {
598
- kind: 'INPUT_OBJECT';
599
- name: 'DeployContractEASInput';
600
- isOneOf: false;
601
- inputFields: [{
602
- name: 'forwarder';
603
- type: {
604
- kind: 'NON_NULL';
605
- name: never;
606
- ofType: {
607
- kind: 'SCALAR';
608
- name: 'String';
609
- ofType: null;
610
- };
611
- };
612
- defaultValue: null;
613
- }, {
614
- name: 'registry';
615
- type: {
616
- kind: 'NON_NULL';
617
- name: never;
618
- ofType: {
619
- kind: 'SCALAR';
620
- name: 'String';
621
- ofType: null;
622
- };
623
- };
624
- defaultValue: null;
625
- }];
626
- };
627
- 'DeployContractEASSchemaRegistryInput': {
628
- kind: 'INPUT_OBJECT';
629
- name: 'DeployContractEASSchemaRegistryInput';
630
- isOneOf: false;
631
- inputFields: [{
632
- name: 'forwarder';
633
- type: {
634
- kind: 'NON_NULL';
635
- name: never;
636
- ofType: {
637
- kind: 'SCALAR';
638
- name: 'String';
639
- ofType: null;
640
- };
641
- };
642
- defaultValue: null;
643
- }];
644
- };
645
- 'EAS': {
646
- kind: 'OBJECT';
647
- name: 'EAS';
648
- fields: {
649
- 'eip712Domain': {
650
- name: 'eip712Domain';
651
- type: {
652
- kind: 'OBJECT';
653
- name: 'EASEip712DomainOutput';
654
- ofType: null;
655
- };
656
- };
657
- 'getAttestTypeHash': {
658
- name: 'getAttestTypeHash';
659
- type: {
660
- kind: 'SCALAR';
661
- name: 'String';
662
- ofType: null;
663
- };
664
- };
665
- 'getAttestation': {
666
- name: 'getAttestation';
667
- type: {
668
- kind: 'OBJECT';
669
- name: 'EASTuple0GetAttestationOutput';
670
- ofType: null;
671
- };
672
- };
673
- 'getDomainSeparator': {
674
- name: 'getDomainSeparator';
675
- type: {
676
- kind: 'SCALAR';
677
- name: 'String';
678
- ofType: null;
679
- };
680
- };
681
- 'getName': {
682
- name: 'getName';
683
- type: {
684
- kind: 'SCALAR';
685
- name: 'String';
686
- ofType: null;
687
- };
688
- };
689
- 'getNonce': {
690
- name: 'getNonce';
691
- type: {
692
- kind: 'SCALAR';
693
- name: 'String';
694
- ofType: null;
695
- };
696
- };
697
- 'getRevokeOffchain': {
698
- name: 'getRevokeOffchain';
699
- type: {
700
- kind: 'SCALAR';
701
- name: 'String';
702
- ofType: null;
703
- };
704
- };
705
- 'getRevokeTypeHash': {
706
- name: 'getRevokeTypeHash';
707
- type: {
708
- kind: 'SCALAR';
709
- name: 'String';
710
- ofType: null;
711
- };
712
- };
713
- 'getSchemaRegistry': {
714
- name: 'getSchemaRegistry';
715
- type: {
716
- kind: 'SCALAR';
717
- name: 'String';
718
- ofType: null;
719
- };
720
- };
721
- 'getTimestamp': {
722
- name: 'getTimestamp';
723
- type: {
724
- kind: 'SCALAR';
725
- name: 'String';
726
- ofType: null;
727
- };
728
- };
729
- 'id': {
730
- name: 'id';
731
- type: {
732
- kind: 'SCALAR';
733
- name: 'ID';
734
- ofType: null;
735
- };
736
- };
737
- 'isAttestationValid': {
738
- name: 'isAttestationValid';
739
- type: {
740
- kind: 'SCALAR';
741
- name: 'Boolean';
742
- ofType: null;
743
- };
744
- };
745
- 'isTrustedForwarder': {
746
- name: 'isTrustedForwarder';
747
- type: {
748
- kind: 'SCALAR';
749
- name: 'Boolean';
750
- ofType: null;
751
- };
752
- };
753
- 'trustedForwarder': {
754
- name: 'trustedForwarder';
755
- type: {
756
- kind: 'SCALAR';
757
- name: 'String';
758
- ofType: null;
759
- };
760
- };
761
- 'version': {
762
- name: 'version';
763
- type: {
764
- kind: 'SCALAR';
765
- name: 'String';
766
- ofType: null;
767
- };
768
- };
769
- };
770
- };
771
- 'EASAttestByDelegationInput': {
772
- kind: 'INPUT_OBJECT';
773
- name: 'EASAttestByDelegationInput';
774
- isOneOf: false;
775
- inputFields: [{
776
- name: 'delegatedRequest';
777
- type: {
778
- kind: 'NON_NULL';
779
- name: never;
780
- ofType: {
781
- kind: 'INPUT_OBJECT';
782
- name: 'EASEASAttestByDelegationDelegatedRequestInput';
783
- ofType: null;
784
- };
785
- };
786
- defaultValue: null;
787
- }];
788
- };
789
- 'EASAttestInput': {
790
- kind: 'INPUT_OBJECT';
791
- name: 'EASAttestInput';
792
- isOneOf: false;
793
- inputFields: [{
794
- name: 'request';
795
- type: {
796
- kind: 'NON_NULL';
797
- name: never;
798
- ofType: {
799
- kind: 'INPUT_OBJECT';
800
- name: 'EASEASAttestRequestInput';
801
- ofType: null;
802
- };
803
- };
804
- defaultValue: null;
805
- }];
806
- };
807
- 'EASEASAttestByDelegationDelegatedRequestInput': {
808
- kind: 'INPUT_OBJECT';
809
- name: 'EASEASAttestByDelegationDelegatedRequestInput';
810
- isOneOf: false;
811
- inputFields: [{
812
- name: 'attester';
813
- type: {
814
- kind: 'NON_NULL';
815
- name: never;
816
- ofType: {
817
- kind: 'SCALAR';
818
- name: 'String';
819
- ofType: null;
820
- };
821
- };
822
- defaultValue: null;
823
- }, {
824
- name: 'data';
825
- type: {
826
- kind: 'NON_NULL';
827
- name: never;
828
- ofType: {
829
- kind: 'INPUT_OBJECT';
830
- name: 'EASEASEASAttestByDelegationDelegatedRequestDataInput';
831
- ofType: null;
832
- };
833
- };
834
- defaultValue: null;
835
- }, {
836
- name: 'deadline';
837
- type: {
838
- kind: 'NON_NULL';
839
- name: never;
840
- ofType: {
841
- kind: 'SCALAR';
842
- name: 'String';
843
- ofType: null;
844
- };
845
- };
846
- defaultValue: null;
847
- }, {
848
- name: 'schema';
849
- type: {
850
- kind: 'NON_NULL';
851
- name: never;
852
- ofType: {
853
- kind: 'SCALAR';
854
- name: 'String';
855
- ofType: null;
856
- };
857
- };
858
- defaultValue: null;
859
- }, {
860
- name: 'signature';
861
- type: {
862
- kind: 'NON_NULL';
863
- name: never;
864
- ofType: {
865
- kind: 'INPUT_OBJECT';
866
- name: 'EASEASEASAttestByDelegationDelegatedRequestSignatureInput';
867
- ofType: null;
868
- };
869
- };
870
- defaultValue: null;
871
- }];
872
- };
873
- 'EASEASAttestRequestInput': {
874
- kind: 'INPUT_OBJECT';
875
- name: 'EASEASAttestRequestInput';
876
- isOneOf: false;
877
- inputFields: [{
878
- name: 'data';
879
- type: {
880
- kind: 'NON_NULL';
881
- name: never;
882
- ofType: {
883
- kind: 'INPUT_OBJECT';
884
- name: 'EASEASEASAttestRequestDataInput';
885
- ofType: null;
886
- };
887
- };
888
- defaultValue: null;
889
- }, {
890
- name: 'schema';
891
- type: {
892
- kind: 'NON_NULL';
893
- name: never;
894
- ofType: {
895
- kind: 'SCALAR';
896
- name: 'String';
897
- ofType: null;
898
- };
899
- };
900
- defaultValue: null;
901
- }];
902
- };
903
- 'EASEASEASAttestByDelegationDelegatedRequestDataInput': {
904
- kind: 'INPUT_OBJECT';
905
- name: 'EASEASEASAttestByDelegationDelegatedRequestDataInput';
906
- isOneOf: false;
907
- inputFields: [{
908
- name: 'data';
909
- type: {
910
- kind: 'NON_NULL';
911
- name: never;
912
- ofType: {
913
- kind: 'SCALAR';
914
- name: 'String';
915
- ofType: null;
916
- };
917
- };
918
- defaultValue: null;
919
- }, {
920
- name: 'expirationTime';
921
- type: {
922
- kind: 'NON_NULL';
923
- name: never;
924
- ofType: {
925
- kind: 'SCALAR';
926
- name: 'String';
927
- ofType: null;
928
- };
929
- };
930
- defaultValue: null;
931
- }, {
932
- name: 'recipient';
933
- type: {
934
- kind: 'NON_NULL';
935
- name: never;
936
- ofType: {
937
- kind: 'SCALAR';
938
- name: 'String';
939
- ofType: null;
940
- };
941
- };
942
- defaultValue: null;
943
- }, {
944
- name: 'refUID';
945
- type: {
946
- kind: 'NON_NULL';
947
- name: never;
948
- ofType: {
949
- kind: 'SCALAR';
950
- name: 'String';
951
- ofType: null;
952
- };
953
- };
954
- defaultValue: null;
955
- }, {
956
- name: 'revocable';
957
- type: {
958
- kind: 'NON_NULL';
959
- name: never;
960
- ofType: {
961
- kind: 'SCALAR';
962
- name: 'Boolean';
963
- ofType: null;
964
- };
965
- };
966
- defaultValue: null;
967
- }, {
968
- name: 'value';
969
- type: {
970
- kind: 'NON_NULL';
971
- name: never;
972
- ofType: {
973
- kind: 'SCALAR';
974
- name: 'String';
975
- ofType: null;
976
- };
977
- };
978
- defaultValue: null;
979
- }];
980
- };
981
- 'EASEASEASAttestByDelegationDelegatedRequestSignatureInput': {
982
- kind: 'INPUT_OBJECT';
983
- name: 'EASEASEASAttestByDelegationDelegatedRequestSignatureInput';
984
- isOneOf: false;
985
- inputFields: [{
986
- name: 'r';
987
- type: {
988
- kind: 'NON_NULL';
989
- name: never;
990
- ofType: {
991
- kind: 'SCALAR';
992
- name: 'String';
993
- ofType: null;
994
- };
995
- };
996
- defaultValue: null;
997
- }, {
998
- name: 's';
999
- type: {
1000
- kind: 'NON_NULL';
1001
- name: never;
1002
- ofType: {
1003
- kind: 'SCALAR';
1004
- name: 'String';
1005
- ofType: null;
1006
- };
1007
- };
1008
- defaultValue: null;
1009
- }, {
1010
- name: 'v';
1011
- type: {
1012
- kind: 'NON_NULL';
1013
- name: never;
1014
- ofType: {
1015
- kind: 'SCALAR';
1016
- name: 'Int';
1017
- ofType: null;
1018
- };
1019
- };
1020
- defaultValue: null;
1021
- }];
1022
- };
1023
- 'EASEASEASAttestRequestDataInput': {
1024
- kind: 'INPUT_OBJECT';
1025
- name: 'EASEASEASAttestRequestDataInput';
1026
- isOneOf: false;
1027
- inputFields: [{
1028
- name: 'data';
1029
- type: {
1030
- kind: 'NON_NULL';
1031
- name: never;
1032
- ofType: {
1033
- kind: 'SCALAR';
1034
- name: 'String';
1035
- ofType: null;
1036
- };
1037
- };
1038
- defaultValue: null;
1039
- }, {
1040
- name: 'expirationTime';
1041
- type: {
1042
- kind: 'NON_NULL';
1043
- name: never;
1044
- ofType: {
1045
- kind: 'SCALAR';
1046
- name: 'String';
1047
- ofType: null;
1048
- };
1049
- };
1050
- defaultValue: null;
1051
- }, {
1052
- name: 'recipient';
1053
- type: {
1054
- kind: 'NON_NULL';
1055
- name: never;
1056
- ofType: {
1057
- kind: 'SCALAR';
1058
- name: 'String';
1059
- ofType: null;
1060
- };
1061
- };
1062
- defaultValue: null;
1063
- }, {
1064
- name: 'refUID';
1065
- type: {
1066
- kind: 'NON_NULL';
1067
- name: never;
1068
- ofType: {
1069
- kind: 'SCALAR';
1070
- name: 'String';
1071
- ofType: null;
1072
- };
1073
- };
1074
- defaultValue: null;
1075
- }, {
1076
- name: 'revocable';
1077
- type: {
1078
- kind: 'NON_NULL';
1079
- name: never;
1080
- ofType: {
1081
- kind: 'SCALAR';
1082
- name: 'Boolean';
1083
- ofType: null;
1084
- };
1085
- };
1086
- defaultValue: null;
1087
- }, {
1088
- name: 'value';
1089
- type: {
1090
- kind: 'NON_NULL';
1091
- name: never;
1092
- ofType: {
1093
- kind: 'SCALAR';
1094
- name: 'String';
1095
- ofType: null;
1096
- };
1097
- };
1098
- defaultValue: null;
1099
- }];
1100
- };
1101
- 'EASEASEASMultiAttestByDelegationMultiDelegatedRequestsDataInput': {
1102
- kind: 'INPUT_OBJECT';
1103
- name: 'EASEASEASMultiAttestByDelegationMultiDelegatedRequestsDataInput';
1104
- isOneOf: false;
1105
- inputFields: [{
1106
- name: 'data';
1107
- type: {
1108
- kind: 'NON_NULL';
1109
- name: never;
1110
- ofType: {
1111
- kind: 'SCALAR';
1112
- name: 'String';
1113
- ofType: null;
1114
- };
1115
- };
1116
- defaultValue: null;
1117
- }, {
1118
- name: 'expirationTime';
1119
- type: {
1120
- kind: 'NON_NULL';
1121
- name: never;
1122
- ofType: {
1123
- kind: 'SCALAR';
1124
- name: 'String';
1125
- ofType: null;
1126
- };
1127
- };
1128
- defaultValue: null;
1129
- }, {
1130
- name: 'recipient';
1131
- type: {
1132
- kind: 'NON_NULL';
1133
- name: never;
1134
- ofType: {
1135
- kind: 'SCALAR';
1136
- name: 'String';
1137
- ofType: null;
1138
- };
1139
- };
1140
- defaultValue: null;
1141
- }, {
1142
- name: 'refUID';
1143
- type: {
1144
- kind: 'NON_NULL';
1145
- name: never;
1146
- ofType: {
1147
- kind: 'SCALAR';
1148
- name: 'String';
1149
- ofType: null;
1150
- };
1151
- };
1152
- defaultValue: null;
1153
- }, {
1154
- name: 'revocable';
1155
- type: {
1156
- kind: 'NON_NULL';
1157
- name: never;
1158
- ofType: {
1159
- kind: 'SCALAR';
1160
- name: 'Boolean';
1161
- ofType: null;
1162
- };
1163
- };
1164
- defaultValue: null;
1165
- }, {
1166
- name: 'value';
1167
- type: {
1168
- kind: 'NON_NULL';
1169
- name: never;
1170
- ofType: {
1171
- kind: 'SCALAR';
1172
- name: 'String';
1173
- ofType: null;
1174
- };
1175
- };
1176
- defaultValue: null;
1177
- }];
1178
- };
1179
- 'EASEASEASMultiAttestByDelegationMultiDelegatedRequestsSignaturesInput': {
1180
- kind: 'INPUT_OBJECT';
1181
- name: 'EASEASEASMultiAttestByDelegationMultiDelegatedRequestsSignaturesInput';
1182
- isOneOf: false;
1183
- inputFields: [{
1184
- name: 'r';
1185
- type: {
1186
- kind: 'NON_NULL';
1187
- name: never;
1188
- ofType: {
1189
- kind: 'SCALAR';
1190
- name: 'String';
1191
- ofType: null;
1192
- };
1193
- };
1194
- defaultValue: null;
1195
- }, {
1196
- name: 's';
1197
- type: {
1198
- kind: 'NON_NULL';
1199
- name: never;
1200
- ofType: {
1201
- kind: 'SCALAR';
1202
- name: 'String';
1203
- ofType: null;
1204
- };
1205
- };
1206
- defaultValue: null;
1207
- }, {
1208
- name: 'v';
1209
- type: {
1210
- kind: 'NON_NULL';
1211
- name: never;
1212
- ofType: {
1213
- kind: 'SCALAR';
1214
- name: 'Int';
1215
- ofType: null;
1216
- };
1217
- };
1218
- defaultValue: null;
1219
- }];
1220
- };
1221
- 'EASEASEASMultiAttestMultiRequestsDataInput': {
1222
- kind: 'INPUT_OBJECT';
1223
- name: 'EASEASEASMultiAttestMultiRequestsDataInput';
1224
- isOneOf: false;
1225
- inputFields: [{
1226
- name: 'data';
1227
- type: {
1228
- kind: 'NON_NULL';
1229
- name: never;
1230
- ofType: {
1231
- kind: 'SCALAR';
1232
- name: 'String';
1233
- ofType: null;
1234
- };
1235
- };
1236
- defaultValue: null;
1237
- }, {
1238
- name: 'expirationTime';
1239
- type: {
1240
- kind: 'NON_NULL';
1241
- name: never;
1242
- ofType: {
1243
- kind: 'SCALAR';
1244
- name: 'String';
1245
- ofType: null;
1246
- };
1247
- };
1248
- defaultValue: null;
1249
- }, {
1250
- name: 'recipient';
1251
- type: {
1252
- kind: 'NON_NULL';
1253
- name: never;
1254
- ofType: {
1255
- kind: 'SCALAR';
1256
- name: 'String';
1257
- ofType: null;
1258
- };
1259
- };
1260
- defaultValue: null;
1261
- }, {
1262
- name: 'refUID';
1263
- type: {
1264
- kind: 'NON_NULL';
1265
- name: never;
1266
- ofType: {
1267
- kind: 'SCALAR';
1268
- name: 'String';
1269
- ofType: null;
1270
- };
1271
- };
1272
- defaultValue: null;
1273
- }, {
1274
- name: 'revocable';
1275
- type: {
1276
- kind: 'NON_NULL';
1277
- name: never;
1278
- ofType: {
1279
- kind: 'SCALAR';
1280
- name: 'Boolean';
1281
- ofType: null;
1282
- };
1283
- };
1284
- defaultValue: null;
1285
- }, {
1286
- name: 'value';
1287
- type: {
1288
- kind: 'NON_NULL';
1289
- name: never;
1290
- ofType: {
1291
- kind: 'SCALAR';
1292
- name: 'String';
1293
- ofType: null;
1294
- };
1295
- };
1296
- defaultValue: null;
1297
- }];
1298
- };
1299
- 'EASEASEASMultiRevokeByDelegationMultiDelegatedRequestsDataInput': {
1300
- kind: 'INPUT_OBJECT';
1301
- name: 'EASEASEASMultiRevokeByDelegationMultiDelegatedRequestsDataInput';
1302
- isOneOf: false;
1303
- inputFields: [{
1304
- name: 'uid';
1305
- type: {
1306
- kind: 'NON_NULL';
1307
- name: never;
1308
- ofType: {
1309
- kind: 'SCALAR';
1310
- name: 'String';
1311
- ofType: null;
1312
- };
1313
- };
1314
- defaultValue: null;
1315
- }, {
1316
- name: 'value';
1317
- type: {
1318
- kind: 'NON_NULL';
1319
- name: never;
1320
- ofType: {
1321
- kind: 'SCALAR';
1322
- name: 'String';
1323
- ofType: null;
1324
- };
1325
- };
1326
- defaultValue: null;
1327
- }];
1328
- };
1329
- 'EASEASEASMultiRevokeByDelegationMultiDelegatedRequestsSignaturesInput': {
1330
- kind: 'INPUT_OBJECT';
1331
- name: 'EASEASEASMultiRevokeByDelegationMultiDelegatedRequestsSignaturesInput';
1332
- isOneOf: false;
1333
- inputFields: [{
1334
- name: 'r';
1335
- type: {
1336
- kind: 'NON_NULL';
1337
- name: never;
1338
- ofType: {
1339
- kind: 'SCALAR';
1340
- name: 'String';
1341
- ofType: null;
1342
- };
1343
- };
1344
- defaultValue: null;
1345
- }, {
1346
- name: 's';
1347
- type: {
1348
- kind: 'NON_NULL';
1349
- name: never;
1350
- ofType: {
1351
- kind: 'SCALAR';
1352
- name: 'String';
1353
- ofType: null;
1354
- };
1355
- };
1356
- defaultValue: null;
1357
- }, {
1358
- name: 'v';
1359
- type: {
1360
- kind: 'NON_NULL';
1361
- name: never;
1362
- ofType: {
1363
- kind: 'SCALAR';
1364
- name: 'Int';
1365
- ofType: null;
1366
- };
1367
- };
1368
- defaultValue: null;
1369
- }];
1370
- };
1371
- 'EASEASEASMultiRevokeMultiRequestsDataInput': {
1372
- kind: 'INPUT_OBJECT';
1373
- name: 'EASEASEASMultiRevokeMultiRequestsDataInput';
1374
- isOneOf: false;
1375
- inputFields: [{
1376
- name: 'uid';
1377
- type: {
1378
- kind: 'NON_NULL';
1379
- name: never;
1380
- ofType: {
1381
- kind: 'SCALAR';
1382
- name: 'String';
1383
- ofType: null;
1384
- };
1385
- };
1386
- defaultValue: null;
1387
- }, {
1388
- name: 'value';
1389
- type: {
1390
- kind: 'NON_NULL';
1391
- name: never;
1392
- ofType: {
1393
- kind: 'SCALAR';
1394
- name: 'String';
1395
- ofType: null;
1396
- };
1397
- };
1398
- defaultValue: null;
1399
- }];
1400
- };
1401
- 'EASEASEASRevokeByDelegationDelegatedRequestDataInput': {
1402
- kind: 'INPUT_OBJECT';
1403
- name: 'EASEASEASRevokeByDelegationDelegatedRequestDataInput';
1404
- isOneOf: false;
1405
- inputFields: [{
1406
- name: 'uid';
1407
- type: {
1408
- kind: 'NON_NULL';
1409
- name: never;
1410
- ofType: {
1411
- kind: 'SCALAR';
1412
- name: 'String';
1413
- ofType: null;
1414
- };
1415
- };
1416
- defaultValue: null;
1417
- }, {
1418
- name: 'value';
1419
- type: {
1420
- kind: 'NON_NULL';
1421
- name: never;
1422
- ofType: {
1423
- kind: 'SCALAR';
1424
- name: 'String';
1425
- ofType: null;
1426
- };
1427
- };
1428
- defaultValue: null;
1429
- }];
1430
- };
1431
- 'EASEASEASRevokeByDelegationDelegatedRequestSignatureInput': {
1432
- kind: 'INPUT_OBJECT';
1433
- name: 'EASEASEASRevokeByDelegationDelegatedRequestSignatureInput';
1434
- isOneOf: false;
1435
- inputFields: [{
1436
- name: 'r';
1437
- type: {
1438
- kind: 'NON_NULL';
1439
- name: never;
1440
- ofType: {
1441
- kind: 'SCALAR';
1442
- name: 'String';
1443
- ofType: null;
1444
- };
1445
- };
1446
- defaultValue: null;
1447
- }, {
1448
- name: 's';
1449
- type: {
1450
- kind: 'NON_NULL';
1451
- name: never;
1452
- ofType: {
1453
- kind: 'SCALAR';
1454
- name: 'String';
1455
- ofType: null;
1456
- };
1457
- };
1458
- defaultValue: null;
1459
- }, {
1460
- name: 'v';
1461
- type: {
1462
- kind: 'NON_NULL';
1463
- name: never;
1464
- ofType: {
1465
- kind: 'SCALAR';
1466
- name: 'Int';
1467
- ofType: null;
1468
- };
1469
- };
1470
- defaultValue: null;
1471
- }];
1472
- };
1473
- 'EASEASEASRevokeRequestDataInput': {
1474
- kind: 'INPUT_OBJECT';
1475
- name: 'EASEASEASRevokeRequestDataInput';
1476
- isOneOf: false;
1477
- inputFields: [{
1478
- name: 'uid';
1479
- type: {
1480
- kind: 'NON_NULL';
1481
- name: never;
1482
- ofType: {
1483
- kind: 'SCALAR';
1484
- name: 'String';
1485
- ofType: null;
1486
- };
1487
- };
1488
- defaultValue: null;
1489
- }, {
1490
- name: 'value';
1491
- type: {
1492
- kind: 'NON_NULL';
1493
- name: never;
1494
- ofType: {
1495
- kind: 'SCALAR';
1496
- name: 'String';
1497
- ofType: null;
1498
- };
1499
- };
1500
- defaultValue: null;
1501
- }];
1502
- };
1503
- 'EASEASMultiAttestByDelegationMultiDelegatedRequestsInput': {
1504
- kind: 'INPUT_OBJECT';
1505
- name: 'EASEASMultiAttestByDelegationMultiDelegatedRequestsInput';
1506
- isOneOf: false;
1507
- inputFields: [{
1508
- name: 'attester';
1509
- type: {
1510
- kind: 'NON_NULL';
1511
- name: never;
1512
- ofType: {
1513
- kind: 'SCALAR';
1514
- name: 'String';
1515
- ofType: null;
1516
- };
1517
- };
1518
- defaultValue: null;
1519
- }, {
1520
- name: 'data';
1521
- type: {
1522
- kind: 'NON_NULL';
1523
- name: never;
1524
- ofType: {
1525
- kind: 'LIST';
1526
- name: never;
1527
- ofType: {
1528
- kind: 'NON_NULL';
1529
- name: never;
1530
- ofType: {
1531
- kind: 'INPUT_OBJECT';
1532
- name: 'EASEASEASMultiAttestByDelegationMultiDelegatedRequestsDataInput';
1533
- ofType: null;
1534
- };
1535
- };
1536
- };
1537
- };
1538
- defaultValue: null;
1539
- }, {
1540
- name: 'deadline';
1541
- type: {
1542
- kind: 'NON_NULL';
1543
- name: never;
1544
- ofType: {
1545
- kind: 'SCALAR';
1546
- name: 'String';
1547
- ofType: null;
1548
- };
1549
- };
1550
- defaultValue: null;
1551
- }, {
1552
- name: 'schema';
1553
- type: {
1554
- kind: 'NON_NULL';
1555
- name: never;
1556
- ofType: {
1557
- kind: 'SCALAR';
1558
- name: 'String';
1559
- ofType: null;
1560
- };
1561
- };
1562
- defaultValue: null;
1563
- }, {
1564
- name: 'signatures';
1565
- type: {
1566
- kind: 'NON_NULL';
1567
- name: never;
1568
- ofType: {
1569
- kind: 'LIST';
1570
- name: never;
1571
- ofType: {
1572
- kind: 'NON_NULL';
1573
- name: never;
1574
- ofType: {
1575
- kind: 'INPUT_OBJECT';
1576
- name: 'EASEASEASMultiAttestByDelegationMultiDelegatedRequestsSignaturesInput';
1577
- ofType: null;
1578
- };
1579
- };
1580
- };
1581
- };
1582
- defaultValue: null;
1583
- }];
1584
- };
1585
- 'EASEASMultiAttestMultiRequestsInput': {
1586
- kind: 'INPUT_OBJECT';
1587
- name: 'EASEASMultiAttestMultiRequestsInput';
1588
- isOneOf: false;
1589
- inputFields: [{
1590
- name: 'data';
1591
- type: {
1592
- kind: 'NON_NULL';
1593
- name: never;
1594
- ofType: {
1595
- kind: 'LIST';
1596
- name: never;
1597
- ofType: {
1598
- kind: 'NON_NULL';
1599
- name: never;
1600
- ofType: {
1601
- kind: 'INPUT_OBJECT';
1602
- name: 'EASEASEASMultiAttestMultiRequestsDataInput';
1603
- ofType: null;
1604
- };
1605
- };
1606
- };
1607
- };
1608
- defaultValue: null;
1609
- }, {
1610
- name: 'schema';
1611
- type: {
1612
- kind: 'NON_NULL';
1613
- name: never;
1614
- ofType: {
1615
- kind: 'SCALAR';
1616
- name: 'String';
1617
- ofType: null;
1618
- };
1619
- };
1620
- defaultValue: null;
1621
- }];
1622
- };
1623
- 'EASEASMultiRevokeByDelegationMultiDelegatedRequestsInput': {
1624
- kind: 'INPUT_OBJECT';
1625
- name: 'EASEASMultiRevokeByDelegationMultiDelegatedRequestsInput';
1626
- isOneOf: false;
1627
- inputFields: [{
1628
- name: 'data';
1629
- type: {
1630
- kind: 'NON_NULL';
1631
- name: never;
1632
- ofType: {
1633
- kind: 'LIST';
1634
- name: never;
1635
- ofType: {
1636
- kind: 'NON_NULL';
1637
- name: never;
1638
- ofType: {
1639
- kind: 'INPUT_OBJECT';
1640
- name: 'EASEASEASMultiRevokeByDelegationMultiDelegatedRequestsDataInput';
1641
- ofType: null;
1642
- };
1643
- };
1644
- };
1645
- };
1646
- defaultValue: null;
1647
- }, {
1648
- name: 'deadline';
1649
- type: {
1650
- kind: 'NON_NULL';
1651
- name: never;
1652
- ofType: {
1653
- kind: 'SCALAR';
1654
- name: 'String';
1655
- ofType: null;
1656
- };
1657
- };
1658
- defaultValue: null;
1659
- }, {
1660
- name: 'revoker';
1661
- type: {
1662
- kind: 'NON_NULL';
1663
- name: never;
1664
- ofType: {
1665
- kind: 'SCALAR';
1666
- name: 'String';
1667
- ofType: null;
1668
- };
1669
- };
1670
- defaultValue: null;
1671
- }, {
1672
- name: 'schema';
1673
- type: {
1674
- kind: 'NON_NULL';
1675
- name: never;
1676
- ofType: {
1677
- kind: 'SCALAR';
1678
- name: 'String';
1679
- ofType: null;
1680
- };
1681
- };
1682
- defaultValue: null;
1683
- }, {
1684
- name: 'signatures';
1685
- type: {
1686
- kind: 'NON_NULL';
1687
- name: never;
1688
- ofType: {
1689
- kind: 'LIST';
1690
- name: never;
1691
- ofType: {
1692
- kind: 'NON_NULL';
1693
- name: never;
1694
- ofType: {
1695
- kind: 'INPUT_OBJECT';
1696
- name: 'EASEASEASMultiRevokeByDelegationMultiDelegatedRequestsSignaturesInput';
1697
- ofType: null;
1698
- };
1699
- };
1700
- };
1701
- };
1702
- defaultValue: null;
1703
- }];
1704
- };
1705
- 'EASEASMultiRevokeMultiRequestsInput': {
1706
- kind: 'INPUT_OBJECT';
1707
- name: 'EASEASMultiRevokeMultiRequestsInput';
1708
- isOneOf: false;
1709
- inputFields: [{
1710
- name: 'data';
1711
- type: {
1712
- kind: 'NON_NULL';
1713
- name: never;
1714
- ofType: {
1715
- kind: 'LIST';
1716
- name: never;
1717
- ofType: {
1718
- kind: 'NON_NULL';
1719
- name: never;
1720
- ofType: {
1721
- kind: 'INPUT_OBJECT';
1722
- name: 'EASEASEASMultiRevokeMultiRequestsDataInput';
1723
- ofType: null;
1724
- };
1725
- };
1726
- };
1727
- };
1728
- defaultValue: null;
1729
- }, {
1730
- name: 'schema';
1731
- type: {
1732
- kind: 'NON_NULL';
1733
- name: never;
1734
- ofType: {
1735
- kind: 'SCALAR';
1736
- name: 'String';
1737
- ofType: null;
1738
- };
1739
- };
1740
- defaultValue: null;
1741
- }];
1742
- };
1743
- 'EASEASRevokeByDelegationDelegatedRequestInput': {
1744
- kind: 'INPUT_OBJECT';
1745
- name: 'EASEASRevokeByDelegationDelegatedRequestInput';
1746
- isOneOf: false;
1747
- inputFields: [{
1748
- name: 'data';
1749
- type: {
1750
- kind: 'NON_NULL';
1751
- name: never;
1752
- ofType: {
1753
- kind: 'INPUT_OBJECT';
1754
- name: 'EASEASEASRevokeByDelegationDelegatedRequestDataInput';
1755
- ofType: null;
1756
- };
1757
- };
1758
- defaultValue: null;
1759
- }, {
1760
- name: 'deadline';
1761
- type: {
1762
- kind: 'NON_NULL';
1763
- name: never;
1764
- ofType: {
1765
- kind: 'SCALAR';
1766
- name: 'String';
1767
- ofType: null;
1768
- };
1769
- };
1770
- defaultValue: null;
1771
- }, {
1772
- name: 'revoker';
1773
- type: {
1774
- kind: 'NON_NULL';
1775
- name: never;
1776
- ofType: {
1777
- kind: 'SCALAR';
1778
- name: 'String';
1779
- ofType: null;
1780
- };
1781
- };
1782
- defaultValue: null;
1783
- }, {
1784
- name: 'schema';
1785
- type: {
1786
- kind: 'NON_NULL';
1787
- name: never;
1788
- ofType: {
1789
- kind: 'SCALAR';
1790
- name: 'String';
1791
- ofType: null;
1792
- };
1793
- };
1794
- defaultValue: null;
1795
- }, {
1796
- name: 'signature';
1797
- type: {
1798
- kind: 'NON_NULL';
1799
- name: never;
1800
- ofType: {
1801
- kind: 'INPUT_OBJECT';
1802
- name: 'EASEASEASRevokeByDelegationDelegatedRequestSignatureInput';
1803
- ofType: null;
1804
- };
1805
- };
1806
- defaultValue: null;
1807
- }];
1808
- };
1809
- 'EASEASRevokeRequestInput': {
1810
- kind: 'INPUT_OBJECT';
1811
- name: 'EASEASRevokeRequestInput';
1812
- isOneOf: false;
1813
- inputFields: [{
1814
- name: 'data';
1815
- type: {
1816
- kind: 'NON_NULL';
1817
- name: never;
1818
- ofType: {
1819
- kind: 'INPUT_OBJECT';
1820
- name: 'EASEASEASRevokeRequestDataInput';
1821
- ofType: null;
1822
- };
1823
- };
1824
- defaultValue: null;
1825
- }, {
1826
- name: 'schema';
1827
- type: {
1828
- kind: 'NON_NULL';
1829
- name: never;
1830
- ofType: {
1831
- kind: 'SCALAR';
1832
- name: 'String';
1833
- ofType: null;
1834
- };
1835
- };
1836
- defaultValue: null;
1837
- }];
1838
- };
1839
- 'EASEip712DomainOutput': {
1840
- kind: 'OBJECT';
1841
- name: 'EASEip712DomainOutput';
1842
- fields: {
1843
- 'chainId': {
1844
- name: 'chainId';
1845
- type: {
1846
- kind: 'SCALAR';
1847
- name: 'String';
1848
- ofType: null;
1849
- };
1850
- };
1851
- 'extensions': {
1852
- name: 'extensions';
1853
- type: {
1854
- kind: 'LIST';
1855
- name: never;
1856
- ofType: {
1857
- kind: 'NON_NULL';
1858
- name: never;
1859
- ofType: {
1860
- kind: 'SCALAR';
1861
- name: 'String';
1862
- ofType: null;
1863
- };
1864
- };
1865
- };
1866
- };
1867
- 'fields': {
1868
- name: 'fields';
1869
- type: {
1870
- kind: 'SCALAR';
1871
- name: 'String';
1872
- ofType: null;
1873
- };
1874
- };
1875
- 'name': {
1876
- name: 'name';
1877
- type: {
1878
- kind: 'SCALAR';
1879
- name: 'String';
1880
- ofType: null;
1881
- };
1882
- };
1883
- 'salt': {
1884
- name: 'salt';
1885
- type: {
1886
- kind: 'SCALAR';
1887
- name: 'String';
1888
- ofType: null;
1889
- };
1890
- };
1891
- 'verifyingContract': {
1892
- name: 'verifyingContract';
1893
- type: {
1894
- kind: 'SCALAR';
1895
- name: 'String';
1896
- ofType: null;
1897
- };
1898
- };
1899
- 'version': {
1900
- name: 'version';
1901
- type: {
1902
- kind: 'SCALAR';
1903
- name: 'String';
1904
- ofType: null;
1905
- };
1906
- };
1907
- };
1908
- };
1909
- 'EASIncreaseNonceInput': {
1910
- kind: 'INPUT_OBJECT';
1911
- name: 'EASIncreaseNonceInput';
1912
- isOneOf: false;
1913
- inputFields: [{
1914
- name: 'newNonce';
1915
- type: {
1916
- kind: 'NON_NULL';
1917
- name: never;
1918
- ofType: {
1919
- kind: 'SCALAR';
1920
- name: 'String';
1921
- ofType: null;
1922
- };
1923
- };
1924
- defaultValue: null;
1925
- }];
1926
- };
1927
- 'EASMultiAttestByDelegationInput': {
1928
- kind: 'INPUT_OBJECT';
1929
- name: 'EASMultiAttestByDelegationInput';
1930
- isOneOf: false;
1931
- inputFields: [{
1932
- name: 'multiDelegatedRequests';
1933
- type: {
1934
- kind: 'NON_NULL';
1935
- name: never;
1936
- ofType: {
1937
- kind: 'LIST';
1938
- name: never;
1939
- ofType: {
1940
- kind: 'NON_NULL';
1941
- name: never;
1942
- ofType: {
1943
- kind: 'INPUT_OBJECT';
1944
- name: 'EASEASMultiAttestByDelegationMultiDelegatedRequestsInput';
1945
- ofType: null;
1946
- };
1947
- };
1948
- };
1949
- };
1950
- defaultValue: null;
1951
- }];
1952
- };
1953
- 'EASMultiAttestInput': {
1954
- kind: 'INPUT_OBJECT';
1955
- name: 'EASMultiAttestInput';
1956
- isOneOf: false;
1957
- inputFields: [{
1958
- name: 'multiRequests';
1959
- type: {
1960
- kind: 'NON_NULL';
1961
- name: never;
1962
- ofType: {
1963
- kind: 'LIST';
1964
- name: never;
1965
- ofType: {
1966
- kind: 'NON_NULL';
1967
- name: never;
1968
- ofType: {
1969
- kind: 'INPUT_OBJECT';
1970
- name: 'EASEASMultiAttestMultiRequestsInput';
1971
- ofType: null;
1972
- };
1973
- };
1974
- };
1975
- };
1976
- defaultValue: null;
1977
- }];
1978
- };
1979
- 'EASMultiRevokeByDelegationInput': {
1980
- kind: 'INPUT_OBJECT';
1981
- name: 'EASMultiRevokeByDelegationInput';
1982
- isOneOf: false;
1983
- inputFields: [{
1984
- name: 'multiDelegatedRequests';
1985
- type: {
1986
- kind: 'NON_NULL';
1987
- name: never;
1988
- ofType: {
1989
- kind: 'LIST';
1990
- name: never;
1991
- ofType: {
1992
- kind: 'NON_NULL';
1993
- name: never;
1994
- ofType: {
1995
- kind: 'INPUT_OBJECT';
1996
- name: 'EASEASMultiRevokeByDelegationMultiDelegatedRequestsInput';
1997
- ofType: null;
1998
- };
1999
- };
2000
- };
2001
- };
2002
- defaultValue: null;
2003
- }];
2004
- };
2005
- 'EASMultiRevokeInput': {
2006
- kind: 'INPUT_OBJECT';
2007
- name: 'EASMultiRevokeInput';
2008
- isOneOf: false;
2009
- inputFields: [{
2010
- name: 'multiRequests';
2011
- type: {
2012
- kind: 'NON_NULL';
2013
- name: never;
2014
- ofType: {
2015
- kind: 'LIST';
2016
- name: never;
2017
- ofType: {
2018
- kind: 'NON_NULL';
2019
- name: never;
2020
- ofType: {
2021
- kind: 'INPUT_OBJECT';
2022
- name: 'EASEASMultiRevokeMultiRequestsInput';
2023
- ofType: null;
2024
- };
2025
- };
2026
- };
2027
- };
2028
- defaultValue: null;
2029
- }];
2030
- };
2031
- 'EASMultiRevokeOffchainInput': {
2032
- kind: 'INPUT_OBJECT';
2033
- name: 'EASMultiRevokeOffchainInput';
2034
- isOneOf: false;
2035
- inputFields: [{
2036
- name: 'data';
2037
- type: {
2038
- kind: 'NON_NULL';
2039
- name: never;
2040
- ofType: {
2041
- kind: 'LIST';
2042
- name: never;
2043
- ofType: {
2044
- kind: 'NON_NULL';
2045
- name: never;
2046
- ofType: {
2047
- kind: 'SCALAR';
2048
- name: 'String';
2049
- ofType: null;
2050
- };
2051
- };
2052
- };
2053
- };
2054
- defaultValue: null;
2055
- }];
2056
- };
2057
- 'EASMultiTimestampInput': {
2058
- kind: 'INPUT_OBJECT';
2059
- name: 'EASMultiTimestampInput';
2060
- isOneOf: false;
2061
- inputFields: [{
2062
- name: 'data';
2063
- type: {
2064
- kind: 'NON_NULL';
2065
- name: never;
2066
- ofType: {
2067
- kind: 'LIST';
2068
- name: never;
2069
- ofType: {
2070
- kind: 'NON_NULL';
2071
- name: never;
2072
- ofType: {
2073
- kind: 'SCALAR';
2074
- name: 'String';
2075
- ofType: null;
2076
- };
2077
- };
2078
- };
2079
- };
2080
- defaultValue: null;
2081
- }];
2082
- };
2083
- 'EASRevokeByDelegationInput': {
2084
- kind: 'INPUT_OBJECT';
2085
- name: 'EASRevokeByDelegationInput';
2086
- isOneOf: false;
2087
- inputFields: [{
2088
- name: 'delegatedRequest';
2089
- type: {
2090
- kind: 'NON_NULL';
2091
- name: never;
2092
- ofType: {
2093
- kind: 'INPUT_OBJECT';
2094
- name: 'EASEASRevokeByDelegationDelegatedRequestInput';
2095
- ofType: null;
2096
- };
2097
- };
2098
- defaultValue: null;
2099
- }];
2100
- };
2101
- 'EASRevokeInput': {
2102
- kind: 'INPUT_OBJECT';
2103
- name: 'EASRevokeInput';
2104
- isOneOf: false;
2105
- inputFields: [{
2106
- name: 'request';
2107
- type: {
2108
- kind: 'NON_NULL';
2109
- name: never;
2110
- ofType: {
2111
- kind: 'INPUT_OBJECT';
2112
- name: 'EASEASRevokeRequestInput';
2113
- ofType: null;
2114
- };
2115
- };
2116
- defaultValue: null;
2117
- }];
2118
- };
2119
- 'EASRevokeOffchainInput': {
2120
- kind: 'INPUT_OBJECT';
2121
- name: 'EASRevokeOffchainInput';
2122
- isOneOf: false;
2123
- inputFields: [{
2124
- name: 'data';
2125
- type: {
2126
- kind: 'NON_NULL';
2127
- name: never;
2128
- ofType: {
2129
- kind: 'SCALAR';
2130
- name: 'String';
2131
- ofType: null;
2132
- };
2133
- };
2134
- defaultValue: null;
2135
- }];
2136
- };
2137
- 'EASSchemaRegistry': {
2138
- kind: 'OBJECT';
2139
- name: 'EASSchemaRegistry';
2140
- fields: {
2141
- 'getSchema': {
2142
- name: 'getSchema';
2143
- type: {
2144
- kind: 'OBJECT';
2145
- name: 'EASSchemaRegistryTuple0GetSchemaOutput';
2146
- ofType: null;
2147
- };
2148
- };
2149
- 'id': {
2150
- name: 'id';
2151
- type: {
2152
- kind: 'SCALAR';
2153
- name: 'ID';
2154
- ofType: null;
2155
- };
2156
- };
2157
- 'isTrustedForwarder': {
2158
- name: 'isTrustedForwarder';
2159
- type: {
2160
- kind: 'SCALAR';
2161
- name: 'Boolean';
2162
- ofType: null;
2163
- };
2164
- };
2165
- 'trustedForwarder': {
2166
- name: 'trustedForwarder';
2167
- type: {
2168
- kind: 'SCALAR';
2169
- name: 'String';
2170
- ofType: null;
2171
- };
2172
- };
2173
- 'version': {
2174
- name: 'version';
2175
- type: {
2176
- kind: 'SCALAR';
2177
- name: 'String';
2178
- ofType: null;
2179
- };
2180
- };
2181
- };
2182
- };
2183
- 'EASSchemaRegistryRegisterInput': {
2184
- kind: 'INPUT_OBJECT';
2185
- name: 'EASSchemaRegistryRegisterInput';
2186
- isOneOf: false;
2187
- inputFields: [{
2188
- name: 'resolver';
2189
- type: {
2190
- kind: 'NON_NULL';
2191
- name: never;
2192
- ofType: {
2193
- kind: 'SCALAR';
2194
- name: 'String';
2195
- ofType: null;
2196
- };
2197
- };
2198
- defaultValue: null;
2199
- }, {
2200
- name: 'revocable';
2201
- type: {
2202
- kind: 'NON_NULL';
2203
- name: never;
2204
- ofType: {
2205
- kind: 'SCALAR';
2206
- name: 'Boolean';
2207
- ofType: null;
2208
- };
2209
- };
2210
- defaultValue: null;
2211
- }, {
2212
- name: 'schema';
2213
- type: {
2214
- kind: 'NON_NULL';
2215
- name: never;
2216
- ofType: {
2217
- kind: 'SCALAR';
2218
- name: 'String';
2219
- ofType: null;
2220
- };
2221
- };
2222
- defaultValue: null;
2223
- }];
2224
- };
2225
- 'EASSchemaRegistryTransactionOutput': {
2226
- kind: 'OBJECT';
2227
- name: 'EASSchemaRegistryTransactionOutput';
2228
- fields: {
2229
- 'transactionHash': {
2230
- name: 'transactionHash';
2231
- type: {
2232
- kind: 'SCALAR';
2233
- name: 'String';
2234
- ofType: null;
2235
- };
2236
- };
2237
- };
2238
- };
2239
- 'EASSchemaRegistryTransactionReceiptOutput': {
2240
- kind: 'OBJECT';
2241
- name: 'EASSchemaRegistryTransactionReceiptOutput';
2242
- fields: {
2243
- 'blobGasPrice': {
2244
- name: 'blobGasPrice';
2245
- type: {
2246
- kind: 'SCALAR';
2247
- name: 'String';
2248
- ofType: null;
2249
- };
2250
- };
2251
- 'blobGasUsed': {
2252
- name: 'blobGasUsed';
2253
- type: {
2254
- kind: 'SCALAR';
2255
- name: 'String';
2256
- ofType: null;
2257
- };
2258
- };
2259
- 'blockHash': {
2260
- name: 'blockHash';
2261
- type: {
2262
- kind: 'NON_NULL';
2263
- name: never;
2264
- ofType: {
2265
- kind: 'SCALAR';
2266
- name: 'String';
2267
- ofType: null;
2268
- };
2269
- };
2270
- };
2271
- 'blockNumber': {
2272
- name: 'blockNumber';
2273
- type: {
2274
- kind: 'NON_NULL';
2275
- name: never;
2276
- ofType: {
2277
- kind: 'SCALAR';
2278
- name: 'String';
2279
- ofType: null;
2280
- };
2281
- };
2282
- };
2283
- 'contractAddress': {
2284
- name: 'contractAddress';
2285
- type: {
2286
- kind: 'SCALAR';
2287
- name: 'String';
2288
- ofType: null;
2289
- };
2290
- };
2291
- 'cumulativeGasUsed': {
2292
- name: 'cumulativeGasUsed';
2293
- type: {
2294
- kind: 'NON_NULL';
2295
- name: never;
2296
- ofType: {
2297
- kind: 'SCALAR';
2298
- name: 'String';
2299
- ofType: null;
2300
- };
2301
- };
2302
- };
2303
- 'effectiveGasPrice': {
2304
- name: 'effectiveGasPrice';
2305
- type: {
2306
- kind: 'NON_NULL';
2307
- name: never;
2308
- ofType: {
2309
- kind: 'SCALAR';
2310
- name: 'String';
2311
- ofType: null;
2312
- };
2313
- };
2314
- };
2315
- 'events': {
2316
- name: 'events';
2317
- type: {
2318
- kind: 'NON_NULL';
2319
- name: never;
2320
- ofType: {
2321
- kind: 'SCALAR';
2322
- name: 'JSON';
2323
- ofType: null;
2324
- };
2325
- };
2326
- };
2327
- 'from': {
2328
- name: 'from';
2329
- type: {
2330
- kind: 'NON_NULL';
2331
- name: never;
2332
- ofType: {
2333
- kind: 'SCALAR';
2334
- name: 'String';
2335
- ofType: null;
2336
- };
2337
- };
2338
- };
2339
- 'gasUsed': {
2340
- name: 'gasUsed';
2341
- type: {
2342
- kind: 'NON_NULL';
2343
- name: never;
2344
- ofType: {
2345
- kind: 'SCALAR';
2346
- name: 'String';
2347
- ofType: null;
2348
- };
2349
- };
2350
- };
2351
- 'logs': {
2352
- name: 'logs';
2353
- type: {
2354
- kind: 'NON_NULL';
2355
- name: never;
2356
- ofType: {
2357
- kind: 'SCALAR';
2358
- name: 'JSON';
2359
- ofType: null;
2360
- };
2361
- };
2362
- };
2363
- 'logsBloom': {
2364
- name: 'logsBloom';
2365
- type: {
2366
- kind: 'NON_NULL';
2367
- name: never;
2368
- ofType: {
2369
- kind: 'SCALAR';
2370
- name: 'String';
2371
- ofType: null;
2372
- };
2373
- };
2374
- };
2375
- 'revertReason': {
2376
- name: 'revertReason';
2377
- type: {
2378
- kind: 'SCALAR';
2379
- name: 'String';
2380
- ofType: null;
2381
- };
2382
- };
2383
- 'revertReasonDecoded': {
2384
- name: 'revertReasonDecoded';
2385
- type: {
2386
- kind: 'SCALAR';
2387
- name: 'String';
2388
- ofType: null;
2389
- };
2390
- };
2391
- 'root': {
2392
- name: 'root';
2393
- type: {
2394
- kind: 'SCALAR';
2395
- name: 'String';
2396
- ofType: null;
2397
- };
2398
- };
2399
- 'status': {
2400
- name: 'status';
2401
- type: {
2402
- kind: 'NON_NULL';
2403
- name: never;
2404
- ofType: {
2405
- kind: 'ENUM';
2406
- name: 'TransactionReceiptStatus';
2407
- ofType: null;
2408
- };
2409
- };
2410
- };
2411
- 'to': {
2412
- name: 'to';
2413
- type: {
2414
- kind: 'SCALAR';
2415
- name: 'String';
2416
- ofType: null;
2417
- };
2418
- };
2419
- 'transactionHash': {
2420
- name: 'transactionHash';
2421
- type: {
2422
- kind: 'NON_NULL';
2423
- name: never;
2424
- ofType: {
2425
- kind: 'SCALAR';
2426
- name: 'String';
2427
- ofType: null;
2428
- };
2429
- };
2430
- };
2431
- 'transactionIndex': {
2432
- name: 'transactionIndex';
2433
- type: {
2434
- kind: 'NON_NULL';
2435
- name: never;
2436
- ofType: {
2437
- kind: 'SCALAR';
2438
- name: 'Int';
2439
- ofType: null;
2440
- };
2441
- };
2442
- };
2443
- 'type': {
2444
- name: 'type';
2445
- type: {
2446
- kind: 'NON_NULL';
2447
- name: never;
2448
- ofType: {
2449
- kind: 'SCALAR';
2450
- name: 'String';
2451
- ofType: null;
2452
- };
2453
- };
2454
- };
2455
- 'userOperationReceipts': {
2456
- name: 'userOperationReceipts';
2457
- type: {
2458
- kind: 'LIST';
2459
- name: never;
2460
- ofType: {
2461
- kind: 'NON_NULL';
2462
- name: never;
2463
- ofType: {
2464
- kind: 'OBJECT';
2465
- name: 'UserOperationReceipt';
2466
- ofType: null;
2467
- };
2468
- };
2469
- };
2470
- };
2471
- };
2472
- };
2473
- 'EASSchemaRegistryTuple0GetSchemaOutput': {
2474
- kind: 'OBJECT';
2475
- name: 'EASSchemaRegistryTuple0GetSchemaOutput';
2476
- fields: {
2477
- 'resolver': {
2478
- name: 'resolver';
2479
- type: {
2480
- kind: 'SCALAR';
2481
- name: 'String';
2482
- ofType: null;
2483
- };
2484
- };
2485
- 'revocable': {
2486
- name: 'revocable';
2487
- type: {
2488
- kind: 'SCALAR';
2489
- name: 'Boolean';
2490
- ofType: null;
2491
- };
2492
- };
2493
- 'schema': {
2494
- name: 'schema';
2495
- type: {
2496
- kind: 'SCALAR';
2497
- name: 'String';
2498
- ofType: null;
2499
- };
2500
- };
2501
- 'uid': {
2502
- name: 'uid';
2503
- type: {
2504
- kind: 'SCALAR';
2505
- name: 'String';
2506
- ofType: null;
2507
- };
2508
- };
2509
- };
2510
- };
2511
- 'EASTimestampInput': {
2512
- kind: 'INPUT_OBJECT';
2513
- name: 'EASTimestampInput';
2514
- isOneOf: false;
2515
- inputFields: [{
2516
- name: 'data';
2517
- type: {
2518
- kind: 'NON_NULL';
2519
- name: never;
2520
- ofType: {
2521
- kind: 'SCALAR';
2522
- name: 'String';
2523
- ofType: null;
2524
- };
2525
- };
2526
- defaultValue: null;
2527
- }];
2528
- };
2529
- 'EASTransactionOutput': {
2530
- kind: 'OBJECT';
2531
- name: 'EASTransactionOutput';
2532
- fields: {
2533
- 'transactionHash': {
2534
- name: 'transactionHash';
2535
- type: {
2536
- kind: 'SCALAR';
2537
- name: 'String';
2538
- ofType: null;
2539
- };
2540
- };
2541
- };
2542
- };
2543
- 'EASTransactionReceiptOutput': {
2544
- kind: 'OBJECT';
2545
- name: 'EASTransactionReceiptOutput';
2546
- fields: {
2547
- 'blobGasPrice': {
2548
- name: 'blobGasPrice';
2549
- type: {
2550
- kind: 'SCALAR';
2551
- name: 'String';
2552
- ofType: null;
2553
- };
2554
- };
2555
- 'blobGasUsed': {
2556
- name: 'blobGasUsed';
2557
- type: {
2558
- kind: 'SCALAR';
2559
- name: 'String';
2560
- ofType: null;
2561
- };
2562
- };
2563
- 'blockHash': {
2564
- name: 'blockHash';
2565
- type: {
2566
- kind: 'NON_NULL';
2567
- name: never;
2568
- ofType: {
2569
- kind: 'SCALAR';
2570
- name: 'String';
2571
- ofType: null;
2572
- };
2573
- };
2574
- };
2575
- 'blockNumber': {
2576
- name: 'blockNumber';
2577
- type: {
2578
- kind: 'NON_NULL';
2579
- name: never;
2580
- ofType: {
2581
- kind: 'SCALAR';
2582
- name: 'String';
2583
- ofType: null;
2584
- };
2585
- };
2586
- };
2587
- 'contractAddress': {
2588
- name: 'contractAddress';
2589
- type: {
2590
- kind: 'SCALAR';
2591
- name: 'String';
2592
- ofType: null;
2593
- };
2594
- };
2595
- 'cumulativeGasUsed': {
2596
- name: 'cumulativeGasUsed';
2597
- type: {
2598
- kind: 'NON_NULL';
2599
- name: never;
2600
- ofType: {
2601
- kind: 'SCALAR';
2602
- name: 'String';
2603
- ofType: null;
2604
- };
2605
- };
2606
- };
2607
- 'effectiveGasPrice': {
2608
- name: 'effectiveGasPrice';
2609
- type: {
2610
- kind: 'NON_NULL';
2611
- name: never;
2612
- ofType: {
2613
- kind: 'SCALAR';
2614
- name: 'String';
2615
- ofType: null;
2616
- };
2617
- };
2618
- };
2619
- 'events': {
2620
- name: 'events';
2621
- type: {
2622
- kind: 'NON_NULL';
2623
- name: never;
2624
- ofType: {
2625
- kind: 'SCALAR';
2626
- name: 'JSON';
2627
- ofType: null;
2628
- };
2629
- };
2630
- };
2631
- 'from': {
2632
- name: 'from';
2633
- type: {
2634
- kind: 'NON_NULL';
2635
- name: never;
2636
- ofType: {
2637
- kind: 'SCALAR';
2638
- name: 'String';
2639
- ofType: null;
2640
- };
2641
- };
2642
- };
2643
- 'gasUsed': {
2644
- name: 'gasUsed';
2645
- type: {
2646
- kind: 'NON_NULL';
2647
- name: never;
2648
- ofType: {
2649
- kind: 'SCALAR';
2650
- name: 'String';
2651
- ofType: null;
2652
- };
2653
- };
2654
- };
2655
- 'logs': {
2656
- name: 'logs';
2657
- type: {
2658
- kind: 'NON_NULL';
2659
- name: never;
2660
- ofType: {
2661
- kind: 'SCALAR';
2662
- name: 'JSON';
2663
- ofType: null;
2664
- };
2665
- };
2666
- };
2667
- 'logsBloom': {
2668
- name: 'logsBloom';
2669
- type: {
2670
- kind: 'NON_NULL';
2671
- name: never;
2672
- ofType: {
2673
- kind: 'SCALAR';
2674
- name: 'String';
2675
- ofType: null;
2676
- };
2677
- };
2678
- };
2679
- 'revertReason': {
2680
- name: 'revertReason';
2681
- type: {
2682
- kind: 'SCALAR';
2683
- name: 'String';
2684
- ofType: null;
2685
- };
2686
- };
2687
- 'revertReasonDecoded': {
2688
- name: 'revertReasonDecoded';
2689
- type: {
2690
- kind: 'SCALAR';
2691
- name: 'String';
2692
- ofType: null;
2693
- };
2694
- };
2695
- 'root': {
2696
- name: 'root';
2697
- type: {
2698
- kind: 'SCALAR';
2699
- name: 'String';
2700
- ofType: null;
2701
- };
2702
- };
2703
- 'status': {
2704
- name: 'status';
2705
- type: {
2706
- kind: 'NON_NULL';
2707
- name: never;
2708
- ofType: {
2709
- kind: 'ENUM';
2710
- name: 'TransactionReceiptStatus';
2711
- ofType: null;
2712
- };
2713
- };
2714
- };
2715
- 'to': {
2716
- name: 'to';
2717
- type: {
2718
- kind: 'SCALAR';
2719
- name: 'String';
2720
- ofType: null;
2721
- };
2722
- };
2723
- 'transactionHash': {
2724
- name: 'transactionHash';
2725
- type: {
2726
- kind: 'NON_NULL';
2727
- name: never;
2728
- ofType: {
2729
- kind: 'SCALAR';
2730
- name: 'String';
2731
- ofType: null;
2732
- };
2733
- };
2734
- };
2735
- 'transactionIndex': {
2736
- name: 'transactionIndex';
2737
- type: {
2738
- kind: 'NON_NULL';
2739
- name: never;
2740
- ofType: {
2741
- kind: 'SCALAR';
2742
- name: 'Int';
2743
- ofType: null;
2744
- };
2745
- };
2746
- };
2747
- 'type': {
2748
- name: 'type';
2749
- type: {
2750
- kind: 'NON_NULL';
2751
- name: never;
2752
- ofType: {
2753
- kind: 'SCALAR';
2754
- name: 'String';
2755
- ofType: null;
2756
- };
2757
- };
2758
- };
2759
- 'userOperationReceipts': {
2760
- name: 'userOperationReceipts';
2761
- type: {
2762
- kind: 'LIST';
2763
- name: never;
2764
- ofType: {
2765
- kind: 'NON_NULL';
2766
- name: never;
2767
- ofType: {
2768
- kind: 'OBJECT';
2769
- name: 'UserOperationReceipt';
2770
- ofType: null;
2771
- };
2772
- };
2773
- };
2774
- };
2775
- };
2776
- };
2777
- 'EASTuple0GetAttestationOutput': {
2778
- kind: 'OBJECT';
2779
- name: 'EASTuple0GetAttestationOutput';
2780
- fields: {
2781
- 'attester': {
2782
- name: 'attester';
2783
- type: {
2784
- kind: 'SCALAR';
2785
- name: 'String';
2786
- ofType: null;
2787
- };
2788
- };
2789
- 'data': {
2790
- name: 'data';
2791
- type: {
2792
- kind: 'SCALAR';
2793
- name: 'String';
2794
- ofType: null;
2795
- };
2796
- };
2797
- 'expirationTime': {
2798
- name: 'expirationTime';
2799
- type: {
2800
- kind: 'SCALAR';
2801
- name: 'String';
2802
- ofType: null;
2803
- };
2804
- };
2805
- 'recipient': {
2806
- name: 'recipient';
2807
- type: {
2808
- kind: 'SCALAR';
2809
- name: 'String';
2810
- ofType: null;
2811
- };
2812
- };
2813
- 'refUID': {
2814
- name: 'refUID';
2815
- type: {
2816
- kind: 'SCALAR';
2817
- name: 'String';
2818
- ofType: null;
2819
- };
2820
- };
2821
- 'revocable': {
2822
- name: 'revocable';
2823
- type: {
2824
- kind: 'SCALAR';
2825
- name: 'Boolean';
2826
- ofType: null;
2827
- };
2828
- };
2829
- 'revocationTime': {
2830
- name: 'revocationTime';
2831
- type: {
2832
- kind: 'SCALAR';
2833
- name: 'String';
2834
- ofType: null;
2835
- };
2836
- };
2837
- 'schema': {
2838
- name: 'schema';
2839
- type: {
2840
- kind: 'SCALAR';
2841
- name: 'String';
2842
- ofType: null;
2843
- };
2844
- };
2845
- 'time': {
2846
- name: 'time';
2847
- type: {
2848
- kind: 'SCALAR';
2849
- name: 'String';
2850
- ofType: null;
2851
- };
2852
- };
2853
- 'uid': {
2854
- name: 'uid';
2855
- type: {
2856
- kind: 'SCALAR';
2857
- name: 'String';
2858
- ofType: null;
2859
- };
2860
- };
2861
- };
2862
- };
2863
- 'ID': unknown;
2864
- 'Int': unknown;
2865
- 'JSON': unknown;
2866
- 'Mutation': {
2867
- kind: 'OBJECT';
2868
- name: 'Mutation';
2869
- fields: {
2870
- 'DeployContract': {
2871
- name: 'DeployContract';
2872
- type: {
2873
- kind: 'OBJECT';
2874
- name: 'ContractDeploymentTransactionOutput';
2875
- ofType: null;
2876
- };
2877
- };
2878
- 'DeployContractEAS': {
2879
- name: 'DeployContractEAS';
2880
- type: {
2881
- kind: 'OBJECT';
2882
- name: 'ContractDeploymentTransactionOutput';
2883
- ofType: null;
2884
- };
2885
- };
2886
- 'DeployContractEASSchemaRegistry': {
2887
- name: 'DeployContractEASSchemaRegistry';
2888
- type: {
2889
- kind: 'OBJECT';
2890
- name: 'ContractDeploymentTransactionOutput';
2891
- ofType: null;
2892
- };
2893
- };
2894
- 'EASAttest': {
2895
- name: 'EASAttest';
2896
- type: {
2897
- kind: 'OBJECT';
2898
- name: 'EASTransactionOutput';
2899
- ofType: null;
2900
- };
2901
- };
2902
- 'EASAttestByDelegation': {
2903
- name: 'EASAttestByDelegation';
2904
- type: {
2905
- kind: 'OBJECT';
2906
- name: 'EASTransactionOutput';
2907
- ofType: null;
2908
- };
2909
- };
2910
- 'EASIncreaseNonce': {
2911
- name: 'EASIncreaseNonce';
2912
- type: {
2913
- kind: 'OBJECT';
2914
- name: 'EASTransactionOutput';
2915
- ofType: null;
2916
- };
2917
- };
2918
- 'EASMultiAttest': {
2919
- name: 'EASMultiAttest';
2920
- type: {
2921
- kind: 'OBJECT';
2922
- name: 'EASTransactionOutput';
2923
- ofType: null;
2924
- };
2925
- };
2926
- 'EASMultiAttestByDelegation': {
2927
- name: 'EASMultiAttestByDelegation';
2928
- type: {
2929
- kind: 'OBJECT';
2930
- name: 'EASTransactionOutput';
2931
- ofType: null;
2932
- };
2933
- };
2934
- 'EASMultiRevoke': {
2935
- name: 'EASMultiRevoke';
2936
- type: {
2937
- kind: 'OBJECT';
2938
- name: 'EASTransactionOutput';
2939
- ofType: null;
2940
- };
2941
- };
2942
- 'EASMultiRevokeByDelegation': {
2943
- name: 'EASMultiRevokeByDelegation';
2944
- type: {
2945
- kind: 'OBJECT';
2946
- name: 'EASTransactionOutput';
2947
- ofType: null;
2948
- };
2949
- };
2950
- 'EASMultiRevokeOffchain': {
2951
- name: 'EASMultiRevokeOffchain';
2952
- type: {
2953
- kind: 'OBJECT';
2954
- name: 'EASTransactionOutput';
2955
- ofType: null;
2956
- };
2957
- };
2958
- 'EASMultiTimestamp': {
2959
- name: 'EASMultiTimestamp';
2960
- type: {
2961
- kind: 'OBJECT';
2962
- name: 'EASTransactionOutput';
2963
- ofType: null;
2964
- };
2965
- };
2966
- 'EASRevoke': {
2967
- name: 'EASRevoke';
2968
- type: {
2969
- kind: 'OBJECT';
2970
- name: 'EASTransactionOutput';
2971
- ofType: null;
2972
- };
2973
- };
2974
- 'EASRevokeByDelegation': {
2975
- name: 'EASRevokeByDelegation';
2976
- type: {
2977
- kind: 'OBJECT';
2978
- name: 'EASTransactionOutput';
2979
- ofType: null;
2980
- };
2981
- };
2982
- 'EASRevokeOffchain': {
2983
- name: 'EASRevokeOffchain';
2984
- type: {
2985
- kind: 'OBJECT';
2986
- name: 'EASTransactionOutput';
2987
- ofType: null;
2988
- };
2989
- };
2990
- 'EASSchemaRegistryRegister': {
2991
- name: 'EASSchemaRegistryRegister';
2992
- type: {
2993
- kind: 'OBJECT';
2994
- name: 'EASSchemaRegistryTransactionOutput';
2995
- ofType: null;
2996
- };
2997
- };
2998
- 'EASTimestamp': {
2999
- name: 'EASTimestamp';
3000
- type: {
3001
- kind: 'OBJECT';
3002
- name: 'EASTransactionOutput';
3003
- ofType: null;
3004
- };
3005
- };
3006
- 'createWallet': {
3007
- name: 'createWallet';
3008
- type: {
3009
- kind: 'OBJECT';
3010
- name: 'CreateWalletOutput';
3011
- ofType: null;
3012
- };
3013
- };
3014
- 'createWalletVerification': {
3015
- name: 'createWalletVerification';
3016
- type: {
3017
- kind: 'OBJECT';
3018
- name: 'CreateWalletVerificationOutput';
3019
- ofType: null;
3020
- };
3021
- };
3022
- 'createWalletVerificationChallenges': {
3023
- name: 'createWalletVerificationChallenges';
3024
- type: {
3025
- kind: 'LIST';
3026
- name: never;
3027
- ofType: {
3028
- kind: 'NON_NULL';
3029
- name: never;
3030
- ofType: {
3031
- kind: 'OBJECT';
3032
- name: 'WalletVerificationChallenge';
3033
- ofType: null;
3034
- };
3035
- };
3036
- };
3037
- };
3038
- 'deleteWalletVerification': {
3039
- name: 'deleteWalletVerification';
3040
- type: {
3041
- kind: 'OBJECT';
3042
- name: 'DeleteWalletVerificationOutput';
3043
- ofType: null;
3044
- };
3045
- };
3046
- 'verifyWalletVerificationChallenge': {
3047
- name: 'verifyWalletVerificationChallenge';
3048
- type: {
3049
- kind: 'OBJECT';
3050
- name: 'VerifyWalletVerificationChallengeOutput';
3051
- ofType: null;
3052
- };
3053
- };
3054
- };
3055
- };
3056
- 'OTPAlgorithm': {
3057
- name: 'OTPAlgorithm';
3058
- enumValues: 'SHA1' | 'SHA3_224' | 'SHA3_256' | 'SHA3_384' | 'SHA3_512' | 'SHA224' | 'SHA256' | 'SHA384' | 'SHA512';
3059
- };
3060
- 'OTPSettingsInput': {
3061
- kind: 'INPUT_OBJECT';
3062
- name: 'OTPSettingsInput';
3063
- isOneOf: false;
3064
- inputFields: [{
3065
- name: 'algorithm';
3066
- type: {
3067
- kind: 'ENUM';
3068
- name: 'OTPAlgorithm';
3069
- ofType: null;
3070
- };
3071
- defaultValue: null;
3072
- }, {
3073
- name: 'digits';
3074
- type: {
3075
- kind: 'SCALAR';
3076
- name: 'Int';
3077
- ofType: null;
3078
- };
3079
- defaultValue: null;
3080
- }, {
3081
- name: 'issuer';
3082
- type: {
3083
- kind: 'SCALAR';
3084
- name: 'String';
3085
- ofType: null;
3086
- };
3087
- defaultValue: null;
3088
- }, {
3089
- name: 'name';
3090
- type: {
3091
- kind: 'NON_NULL';
3092
- name: never;
3093
- ofType: {
3094
- kind: 'SCALAR';
3095
- name: 'String';
3096
- ofType: null;
3097
- };
3098
- };
3099
- defaultValue: null;
3100
- }, {
3101
- name: 'period';
3102
- type: {
3103
- kind: 'SCALAR';
3104
- name: 'Int';
3105
- ofType: null;
3106
- };
3107
- defaultValue: null;
3108
- }];
3109
- };
3110
- 'PincodeSettingsInput': {
3111
- kind: 'INPUT_OBJECT';
3112
- name: 'PincodeSettingsInput';
3113
- isOneOf: false;
3114
- inputFields: [{
3115
- name: 'name';
3116
- type: {
3117
- kind: 'NON_NULL';
3118
- name: never;
3119
- ofType: {
3120
- kind: 'SCALAR';
3121
- name: 'String';
3122
- ofType: null;
3123
- };
3124
- };
3125
- defaultValue: null;
3126
- }, {
3127
- name: 'pincode';
3128
- type: {
3129
- kind: 'NON_NULL';
3130
- name: never;
3131
- ofType: {
3132
- kind: 'SCALAR';
3133
- name: 'String';
3134
- ofType: null;
3135
- };
3136
- };
3137
- defaultValue: null;
3138
- }];
3139
- };
3140
- 'Query': {
3141
- kind: 'OBJECT';
3142
- name: 'Query';
3143
- fields: {
3144
- 'EAS': {
3145
- name: 'EAS';
3146
- type: {
3147
- kind: 'OBJECT';
3148
- name: 'EAS';
3149
- ofType: null;
3150
- };
3151
- };
3152
- 'EASAttestByDelegationReceipt': {
3153
- name: 'EASAttestByDelegationReceipt';
3154
- type: {
3155
- kind: 'OBJECT';
3156
- name: 'EASTransactionReceiptOutput';
3157
- ofType: null;
3158
- };
3159
- };
3160
- 'EASAttestReceipt': {
3161
- name: 'EASAttestReceipt';
3162
- type: {
3163
- kind: 'OBJECT';
3164
- name: 'EASTransactionReceiptOutput';
3165
- ofType: null;
3166
- };
3167
- };
3168
- 'EASIncreaseNonceReceipt': {
3169
- name: 'EASIncreaseNonceReceipt';
3170
- type: {
3171
- kind: 'OBJECT';
3172
- name: 'EASTransactionReceiptOutput';
3173
- ofType: null;
3174
- };
3175
- };
3176
- 'EASMultiAttestByDelegationReceipt': {
3177
- name: 'EASMultiAttestByDelegationReceipt';
3178
- type: {
3179
- kind: 'OBJECT';
3180
- name: 'EASTransactionReceiptOutput';
3181
- ofType: null;
3182
- };
3183
- };
3184
- 'EASMultiAttestReceipt': {
3185
- name: 'EASMultiAttestReceipt';
3186
- type: {
3187
- kind: 'OBJECT';
3188
- name: 'EASTransactionReceiptOutput';
3189
- ofType: null;
3190
- };
3191
- };
3192
- 'EASMultiRevokeByDelegationReceipt': {
3193
- name: 'EASMultiRevokeByDelegationReceipt';
3194
- type: {
3195
- kind: 'OBJECT';
3196
- name: 'EASTransactionReceiptOutput';
3197
- ofType: null;
3198
- };
3199
- };
3200
- 'EASMultiRevokeOffchainReceipt': {
3201
- name: 'EASMultiRevokeOffchainReceipt';
3202
- type: {
3203
- kind: 'OBJECT';
3204
- name: 'EASTransactionReceiptOutput';
3205
- ofType: null;
3206
- };
3207
- };
3208
- 'EASMultiRevokeReceipt': {
3209
- name: 'EASMultiRevokeReceipt';
3210
- type: {
3211
- kind: 'OBJECT';
3212
- name: 'EASTransactionReceiptOutput';
3213
- ofType: null;
3214
- };
3215
- };
3216
- 'EASMultiTimestampReceipt': {
3217
- name: 'EASMultiTimestampReceipt';
3218
- type: {
3219
- kind: 'OBJECT';
3220
- name: 'EASTransactionReceiptOutput';
3221
- ofType: null;
3222
- };
3223
- };
3224
- 'EASRevokeByDelegationReceipt': {
3225
- name: 'EASRevokeByDelegationReceipt';
3226
- type: {
3227
- kind: 'OBJECT';
3228
- name: 'EASTransactionReceiptOutput';
3229
- ofType: null;
3230
- };
3231
- };
3232
- 'EASRevokeOffchainReceipt': {
3233
- name: 'EASRevokeOffchainReceipt';
3234
- type: {
3235
- kind: 'OBJECT';
3236
- name: 'EASTransactionReceiptOutput';
3237
- ofType: null;
3238
- };
3239
- };
3240
- 'EASRevokeReceipt': {
3241
- name: 'EASRevokeReceipt';
3242
- type: {
3243
- kind: 'OBJECT';
3244
- name: 'EASTransactionReceiptOutput';
3245
- ofType: null;
3246
- };
3247
- };
3248
- 'EASSchemaRegistry': {
3249
- name: 'EASSchemaRegistry';
3250
- type: {
3251
- kind: 'OBJECT';
3252
- name: 'EASSchemaRegistry';
3253
- ofType: null;
3254
- };
3255
- };
3256
- 'EASSchemaRegistryRegisterReceipt': {
3257
- name: 'EASSchemaRegistryRegisterReceipt';
3258
- type: {
3259
- kind: 'OBJECT';
3260
- name: 'EASSchemaRegistryTransactionReceiptOutput';
3261
- ofType: null;
3262
- };
3263
- };
3264
- 'EASTimestampReceipt': {
3265
- name: 'EASTimestampReceipt';
3266
- type: {
3267
- kind: 'OBJECT';
3268
- name: 'EASTransactionReceiptOutput';
3269
- ofType: null;
3270
- };
3271
- };
3272
- 'getContracts': {
3273
- name: 'getContracts';
3274
- type: {
3275
- kind: 'OBJECT';
3276
- name: 'ContractsPaginatedOutput';
3277
- ofType: null;
3278
- };
3279
- };
3280
- 'getContractsDeployStatus': {
3281
- name: 'getContractsDeployStatus';
3282
- type: {
3283
- kind: 'OBJECT';
3284
- name: 'ContractsDeployStatusPaginatedOutput';
3285
- ofType: null;
3286
- };
3287
- };
3288
- 'getContractsDeployStatusEas': {
3289
- name: 'getContractsDeployStatusEas';
3290
- type: {
3291
- kind: 'OBJECT';
3292
- name: 'ContractsDeployStatusPaginatedOutput';
3293
- ofType: null;
3294
- };
3295
- };
3296
- 'getContractsDeployStatusEasSchemaRegistry': {
3297
- name: 'getContractsDeployStatusEasSchemaRegistry';
3298
- type: {
3299
- kind: 'OBJECT';
3300
- name: 'ContractsDeployStatusPaginatedOutput';
3301
- ofType: null;
3302
- };
3303
- };
3304
- 'getContractsEas': {
3305
- name: 'getContractsEas';
3306
- type: {
3307
- kind: 'OBJECT';
3308
- name: 'ContractsPaginatedOutput';
3309
- ofType: null;
3310
- };
3311
- };
3312
- 'getContractsEasSchemaRegistry': {
3313
- name: 'getContractsEasSchemaRegistry';
3314
- type: {
3315
- kind: 'OBJECT';
3316
- name: 'ContractsPaginatedOutput';
3317
- ofType: null;
3318
- };
3319
- };
3320
- 'getPendingAndRecentlyProcessedTransactions': {
3321
- name: 'getPendingAndRecentlyProcessedTransactions';
3322
- type: {
3323
- kind: 'OBJECT';
3324
- name: 'TransactionsPaginatedOutput';
3325
- ofType: null;
3326
- };
3327
- };
3328
- 'getPendingTransactions': {
3329
- name: 'getPendingTransactions';
3330
- type: {
3331
- kind: 'OBJECT';
3332
- name: 'TransactionsPaginatedOutput';
3333
- ofType: null;
3334
- };
3335
- };
3336
- 'getProcessedTransactions': {
3337
- name: 'getProcessedTransactions';
3338
- type: {
3339
- kind: 'OBJECT';
3340
- name: 'TransactionsPaginatedOutput';
3341
- ofType: null;
3342
- };
3343
- };
3344
- 'getTransaction': {
3345
- name: 'getTransaction';
3346
- type: {
3347
- kind: 'OBJECT';
3348
- name: 'TransactionOutput';
3349
- ofType: null;
3350
- };
3351
- };
3352
- 'getTransactionsTimeline': {
3353
- name: 'getTransactionsTimeline';
3354
- type: {
3355
- kind: 'LIST';
3356
- name: never;
3357
- ofType: {
3358
- kind: 'NON_NULL';
3359
- name: never;
3360
- ofType: {
3361
- kind: 'OBJECT';
3362
- name: 'TransactionTimelineOutput';
3363
- ofType: null;
3364
- };
3365
- };
3366
- };
3367
- };
3368
- 'getWalletVerifications': {
3369
- name: 'getWalletVerifications';
3370
- type: {
3371
- kind: 'LIST';
3372
- name: never;
3373
- ofType: {
3374
- kind: 'NON_NULL';
3375
- name: never;
3376
- ofType: {
3377
- kind: 'OBJECT';
3378
- name: 'WalletVerification';
3379
- ofType: null;
3380
- };
3381
- };
3382
- };
3383
- };
3384
- };
3385
- };
3386
- 'SecretCodesSettingsInput': {
3387
- kind: 'INPUT_OBJECT';
3388
- name: 'SecretCodesSettingsInput';
3389
- isOneOf: false;
3390
- inputFields: [{
3391
- name: 'name';
3392
- type: {
3393
- kind: 'NON_NULL';
3394
- name: never;
3395
- ofType: {
3396
- kind: 'SCALAR';
3397
- name: 'String';
3398
- ofType: null;
3399
- };
3400
- };
3401
- defaultValue: null;
3402
- }];
3403
- };
3404
- 'String': unknown;
3405
- 'Subscription': {
3406
- kind: 'OBJECT';
3407
- name: 'Subscription';
3408
- fields: {
3409
- 'getContractsDeployStatus': {
3410
- name: 'getContractsDeployStatus';
3411
- type: {
3412
- kind: 'OBJECT';
3413
- name: 'ContractsDeployStatusPaginatedOutput';
3414
- ofType: null;
3415
- };
3416
- };
3417
- 'getContractsDeployStatusEas': {
3418
- name: 'getContractsDeployStatusEas';
3419
- type: {
3420
- kind: 'OBJECT';
3421
- name: 'ContractsDeployStatusPaginatedOutput';
3422
- ofType: null;
3423
- };
3424
- };
3425
- 'getContractsDeployStatusEasSchemaRegistry': {
3426
- name: 'getContractsDeployStatusEasSchemaRegistry';
3427
- type: {
3428
- kind: 'OBJECT';
3429
- name: 'ContractsDeployStatusPaginatedOutput';
3430
- ofType: null;
3431
- };
3432
- };
3433
- 'getPendingAndRecentlyProcessedTransactions': {
3434
- name: 'getPendingAndRecentlyProcessedTransactions';
3435
- type: {
3436
- kind: 'OBJECT';
3437
- name: 'TransactionsPaginatedOutput';
3438
- ofType: null;
3439
- };
3440
- };
3441
- 'getPendingTransactions': {
3442
- name: 'getPendingTransactions';
3443
- type: {
3444
- kind: 'OBJECT';
3445
- name: 'TransactionsPaginatedOutput';
3446
- ofType: null;
3447
- };
3448
- };
3449
- 'getProcessedTransactions': {
3450
- name: 'getProcessedTransactions';
3451
- type: {
3452
- kind: 'OBJECT';
3453
- name: 'TransactionsPaginatedOutput';
3454
- ofType: null;
3455
- };
3456
- };
3457
- 'getTransaction': {
3458
- name: 'getTransaction';
3459
- type: {
3460
- kind: 'OBJECT';
3461
- name: 'TransactionOutput';
3462
- ofType: null;
3463
- };
3464
- };
3465
- };
3466
- };
3467
- 'TransactionOutput': {
3468
- kind: 'OBJECT';
3469
- name: 'TransactionOutput';
3470
- fields: {
3471
- 'address': {
3472
- name: 'address';
3473
- type: {
3474
- kind: 'NON_NULL';
3475
- name: never;
3476
- ofType: {
3477
- kind: 'SCALAR';
3478
- name: 'String';
3479
- ofType: null;
3480
- };
3481
- };
3482
- };
3483
- 'createdAt': {
3484
- name: 'createdAt';
3485
- type: {
3486
- kind: 'SCALAR';
3487
- name: 'String';
3488
- ofType: null;
3489
- };
3490
- };
3491
- 'from': {
3492
- name: 'from';
3493
- type: {
3494
- kind: 'NON_NULL';
3495
- name: never;
3496
- ofType: {
3497
- kind: 'SCALAR';
3498
- name: 'String';
3499
- ofType: null;
3500
- };
3501
- };
3502
- };
3503
- 'functionName': {
3504
- name: 'functionName';
3505
- type: {
3506
- kind: 'NON_NULL';
3507
- name: never;
3508
- ofType: {
3509
- kind: 'SCALAR';
3510
- name: 'String';
3511
- ofType: null;
3512
- };
3513
- };
3514
- };
3515
- 'isContract': {
3516
- name: 'isContract';
3517
- type: {
3518
- kind: 'NON_NULL';
3519
- name: never;
3520
- ofType: {
3521
- kind: 'SCALAR';
3522
- name: 'Boolean';
3523
- ofType: null;
3524
- };
3525
- };
3526
- };
3527
- 'metadata': {
3528
- name: 'metadata';
3529
- type: {
3530
- kind: 'SCALAR';
3531
- name: 'JSON';
3532
- ofType: null;
3533
- };
3534
- };
3535
- 'receipt': {
3536
- name: 'receipt';
3537
- type: {
3538
- kind: 'OBJECT';
3539
- name: 'TransactionReceiptOutput';
3540
- ofType: null;
3541
- };
3542
- };
3543
- 'transactionHash': {
3544
- name: 'transactionHash';
3545
- type: {
3546
- kind: 'NON_NULL';
3547
- name: never;
3548
- ofType: {
3549
- kind: 'SCALAR';
3550
- name: 'String';
3551
- ofType: null;
3552
- };
3553
- };
3554
- };
3555
- 'updatedAt': {
3556
- name: 'updatedAt';
3557
- type: {
3558
- kind: 'SCALAR';
3559
- name: 'String';
3560
- ofType: null;
3561
- };
3562
- };
3563
- };
3564
- };
3565
- 'TransactionReceiptOutput': {
3566
- kind: 'OBJECT';
3567
- name: 'TransactionReceiptOutput';
3568
- fields: {
3569
- 'blobGasPrice': {
3570
- name: 'blobGasPrice';
3571
- type: {
3572
- kind: 'SCALAR';
3573
- name: 'String';
3574
- ofType: null;
3575
- };
3576
- };
3577
- 'blobGasUsed': {
3578
- name: 'blobGasUsed';
3579
- type: {
3580
- kind: 'SCALAR';
3581
- name: 'String';
3582
- ofType: null;
3583
- };
3584
- };
3585
- 'blockHash': {
3586
- name: 'blockHash';
3587
- type: {
3588
- kind: 'NON_NULL';
3589
- name: never;
3590
- ofType: {
3591
- kind: 'SCALAR';
3592
- name: 'String';
3593
- ofType: null;
3594
- };
3595
- };
3596
- };
3597
- 'blockNumber': {
3598
- name: 'blockNumber';
3599
- type: {
3600
- kind: 'NON_NULL';
3601
- name: never;
3602
- ofType: {
3603
- kind: 'SCALAR';
3604
- name: 'String';
3605
- ofType: null;
3606
- };
3607
- };
3608
- };
3609
- 'contractAddress': {
3610
- name: 'contractAddress';
3611
- type: {
3612
- kind: 'SCALAR';
3613
- name: 'String';
3614
- ofType: null;
3615
- };
3616
- };
3617
- 'cumulativeGasUsed': {
3618
- name: 'cumulativeGasUsed';
3619
- type: {
3620
- kind: 'NON_NULL';
3621
- name: never;
3622
- ofType: {
3623
- kind: 'SCALAR';
3624
- name: 'String';
3625
- ofType: null;
3626
- };
3627
- };
3628
- };
3629
- 'effectiveGasPrice': {
3630
- name: 'effectiveGasPrice';
3631
- type: {
3632
- kind: 'NON_NULL';
3633
- name: never;
3634
- ofType: {
3635
- kind: 'SCALAR';
3636
- name: 'String';
3637
- ofType: null;
3638
- };
3639
- };
3640
- };
3641
- 'events': {
3642
- name: 'events';
3643
- type: {
3644
- kind: 'NON_NULL';
3645
- name: never;
3646
- ofType: {
3647
- kind: 'SCALAR';
3648
- name: 'JSON';
3649
- ofType: null;
3650
- };
3651
- };
3652
- };
3653
- 'from': {
3654
- name: 'from';
3655
- type: {
3656
- kind: 'NON_NULL';
3657
- name: never;
3658
- ofType: {
3659
- kind: 'SCALAR';
3660
- name: 'String';
3661
- ofType: null;
3662
- };
3663
- };
3664
- };
3665
- 'gasUsed': {
3666
- name: 'gasUsed';
3667
- type: {
3668
- kind: 'NON_NULL';
3669
- name: never;
3670
- ofType: {
3671
- kind: 'SCALAR';
3672
- name: 'String';
3673
- ofType: null;
3674
- };
3675
- };
3676
- };
3677
- 'logs': {
3678
- name: 'logs';
3679
- type: {
3680
- kind: 'NON_NULL';
3681
- name: never;
3682
- ofType: {
3683
- kind: 'SCALAR';
3684
- name: 'JSON';
3685
- ofType: null;
3686
- };
3687
- };
3688
- };
3689
- 'logsBloom': {
3690
- name: 'logsBloom';
3691
- type: {
3692
- kind: 'NON_NULL';
3693
- name: never;
3694
- ofType: {
3695
- kind: 'SCALAR';
3696
- name: 'String';
3697
- ofType: null;
3698
- };
3699
- };
3700
- };
3701
- 'revertReason': {
3702
- name: 'revertReason';
3703
- type: {
3704
- kind: 'SCALAR';
3705
- name: 'String';
3706
- ofType: null;
3707
- };
3708
- };
3709
- 'revertReasonDecoded': {
3710
- name: 'revertReasonDecoded';
3711
- type: {
3712
- kind: 'SCALAR';
3713
- name: 'String';
3714
- ofType: null;
3715
- };
3716
- };
3717
- 'root': {
3718
- name: 'root';
3719
- type: {
3720
- kind: 'SCALAR';
3721
- name: 'String';
3722
- ofType: null;
3723
- };
3724
- };
3725
- 'status': {
3726
- name: 'status';
3727
- type: {
3728
- kind: 'NON_NULL';
3729
- name: never;
3730
- ofType: {
3731
- kind: 'ENUM';
3732
- name: 'TransactionReceiptStatus';
3733
- ofType: null;
3734
- };
3735
- };
3736
- };
3737
- 'to': {
3738
- name: 'to';
3739
- type: {
3740
- kind: 'SCALAR';
3741
- name: 'String';
3742
- ofType: null;
3743
- };
3744
- };
3745
- 'transactionHash': {
3746
- name: 'transactionHash';
3747
- type: {
3748
- kind: 'NON_NULL';
3749
- name: never;
3750
- ofType: {
3751
- kind: 'SCALAR';
3752
- name: 'String';
3753
- ofType: null;
3754
- };
3755
- };
3756
- };
3757
- 'transactionIndex': {
3758
- name: 'transactionIndex';
3759
- type: {
3760
- kind: 'NON_NULL';
3761
- name: never;
3762
- ofType: {
3763
- kind: 'SCALAR';
3764
- name: 'Int';
3765
- ofType: null;
3766
- };
3767
- };
3768
- };
3769
- 'type': {
3770
- name: 'type';
3771
- type: {
3772
- kind: 'NON_NULL';
3773
- name: never;
3774
- ofType: {
3775
- kind: 'SCALAR';
3776
- name: 'String';
3777
- ofType: null;
3778
- };
3779
- };
3780
- };
3781
- 'userOperationReceipts': {
3782
- name: 'userOperationReceipts';
3783
- type: {
3784
- kind: 'LIST';
3785
- name: never;
3786
- ofType: {
3787
- kind: 'NON_NULL';
3788
- name: never;
3789
- ofType: {
3790
- kind: 'OBJECT';
3791
- name: 'UserOperationReceipt';
3792
- ofType: null;
3793
- };
3794
- };
3795
- };
3796
- };
3797
- };
3798
- };
3799
- 'TransactionReceiptStatus': {
3800
- name: 'TransactionReceiptStatus';
3801
- enumValues: 'Reverted' | 'Success';
3802
- };
3803
- 'TransactionTimelineGranularity': {
3804
- name: 'TransactionTimelineGranularity';
3805
- enumValues: 'DAY' | 'HOUR' | 'MONTH' | 'YEAR';
3806
- };
3807
- 'TransactionTimelineOutput': {
3808
- kind: 'OBJECT';
3809
- name: 'TransactionTimelineOutput';
3810
- fields: {
3811
- 'count': {
3812
- name: 'count';
3813
- type: {
3814
- kind: 'SCALAR';
3815
- name: 'Int';
3816
- ofType: null;
3817
- };
3818
- };
3819
- 'end': {
3820
- name: 'end';
3821
- type: {
3822
- kind: 'SCALAR';
3823
- name: 'String';
3824
- ofType: null;
3825
- };
3826
- };
3827
- 'start': {
3828
- name: 'start';
3829
- type: {
3830
- kind: 'SCALAR';
3831
- name: 'String';
3832
- ofType: null;
3833
- };
3834
- };
3835
- };
3836
- };
3837
- 'TransactionsPaginatedOutput': {
3838
- kind: 'OBJECT';
3839
- name: 'TransactionsPaginatedOutput';
3840
- fields: {
3841
- 'count': {
3842
- name: 'count';
3843
- type: {
3844
- kind: 'NON_NULL';
3845
- name: never;
3846
- ofType: {
3847
- kind: 'SCALAR';
3848
- name: 'Int';
3849
- ofType: null;
3850
- };
3851
- };
3852
- };
3853
- 'records': {
3854
- name: 'records';
3855
- type: {
3856
- kind: 'NON_NULL';
3857
- name: never;
3858
- ofType: {
3859
- kind: 'LIST';
3860
- name: never;
3861
- ofType: {
3862
- kind: 'NON_NULL';
3863
- name: never;
3864
- ofType: {
3865
- kind: 'OBJECT';
3866
- name: 'TransactionOutput';
3867
- ofType: null;
3868
- };
3869
- };
3870
- };
3871
- };
3872
- };
3873
- };
3874
- };
3875
- 'UserOperationReceipt': {
3876
- kind: 'OBJECT';
3877
- name: 'UserOperationReceipt';
3878
- fields: {
3879
- 'actualGasCost': {
3880
- name: 'actualGasCost';
3881
- type: {
3882
- kind: 'SCALAR';
3883
- name: 'String';
3884
- ofType: null;
3885
- };
3886
- };
3887
- 'actualGasUsed': {
3888
- name: 'actualGasUsed';
3889
- type: {
3890
- kind: 'SCALAR';
3891
- name: 'String';
3892
- ofType: null;
3893
- };
3894
- };
3895
- 'entryPoint': {
3896
- name: 'entryPoint';
3897
- type: {
3898
- kind: 'SCALAR';
3899
- name: 'String';
3900
- ofType: null;
3901
- };
3902
- };
3903
- 'logs': {
3904
- name: 'logs';
3905
- type: {
3906
- kind: 'LIST';
3907
- name: never;
3908
- ofType: {
3909
- kind: 'NON_NULL';
3910
- name: never;
3911
- ofType: {
3912
- kind: 'SCALAR';
3913
- name: 'String';
3914
- ofType: null;
3915
- };
3916
- };
3917
- };
3918
- };
3919
- 'nonce': {
3920
- name: 'nonce';
3921
- type: {
3922
- kind: 'SCALAR';
3923
- name: 'String';
3924
- ofType: null;
3925
- };
3926
- };
3927
- 'sender': {
3928
- name: 'sender';
3929
- type: {
3930
- kind: 'SCALAR';
3931
- name: 'String';
3932
- ofType: null;
3933
- };
3934
- };
3935
- 'success': {
3936
- name: 'success';
3937
- type: {
3938
- kind: 'SCALAR';
3939
- name: 'Boolean';
3940
- ofType: null;
3941
- };
3942
- };
3943
- 'userOpHash': {
3944
- name: 'userOpHash';
3945
- type: {
3946
- kind: 'SCALAR';
3947
- name: 'String';
3948
- ofType: null;
3949
- };
3950
- };
3951
- };
3952
- };
3953
- 'VerifyWalletVerificationChallengeOutput': {
3954
- kind: 'OBJECT';
3955
- name: 'VerifyWalletVerificationChallengeOutput';
3956
- fields: {
3957
- 'verified': {
3958
- name: 'verified';
3959
- type: {
3960
- kind: 'SCALAR';
3961
- name: 'Boolean';
3962
- ofType: null;
3963
- };
3964
- };
3965
- };
3966
- };
3967
- 'WalletVerification': {
3968
- kind: 'OBJECT';
3969
- name: 'WalletVerification';
3970
- fields: {
3971
- 'id': {
3972
- name: 'id';
3973
- type: {
3974
- kind: 'SCALAR';
3975
- name: 'String';
3976
- ofType: null;
3977
- };
3978
- };
3979
- 'name': {
3980
- name: 'name';
3981
- type: {
3982
- kind: 'SCALAR';
3983
- name: 'String';
3984
- ofType: null;
3985
- };
3986
- };
3987
- 'verificationType': {
3988
- name: 'verificationType';
3989
- type: {
3990
- kind: 'ENUM';
3991
- name: 'WalletVerificationType';
3992
- ofType: null;
3993
- };
3994
- };
3995
- };
3996
- };
3997
- 'WalletVerificationChallenge': {
3998
- kind: 'OBJECT';
3999
- name: 'WalletVerificationChallenge';
4000
- fields: {
4001
- 'challenge': {
4002
- name: 'challenge';
4003
- type: {
4004
- kind: 'SCALAR';
4005
- name: 'JSON';
4006
- ofType: null;
4007
- };
4008
- };
4009
- 'id': {
4010
- name: 'id';
4011
- type: {
4012
- kind: 'SCALAR';
4013
- name: 'String';
4014
- ofType: null;
4015
- };
4016
- };
4017
- 'name': {
4018
- name: 'name';
4019
- type: {
4020
- kind: 'SCALAR';
4021
- name: 'String';
4022
- ofType: null;
4023
- };
4024
- };
4025
- 'verificationType': {
4026
- name: 'verificationType';
4027
- type: {
4028
- kind: 'ENUM';
4029
- name: 'WalletVerificationType';
4030
- ofType: null;
4031
- };
4032
- };
4033
- };
4034
- };
4035
- 'WalletVerificationType': {
4036
- name: 'WalletVerificationType';
4037
- enumValues: 'OTP' | 'PINCODE' | 'SECRET_CODES';
4038
- };
4039
- };
4040
-
4041
- /** An IntrospectionQuery representation of your schema.
4042
- *
4043
- * @remarks
4044
- * This is an introspection of your schema saved as a file by GraphQLSP.
4045
- * It will automatically be used by `gql.tada` to infer the types of your GraphQL documents.
4046
- * If you need to reuse this data or update your `scalars`, update `tadaOutputLocation` to
4047
- * instead save to a .ts instead of a .d.ts file.
4048
- */
4049
- type introspection = {
4050
- name: 'portal';
4051
- query: 'Query';
4052
- mutation: 'Mutation';
4053
- subscription: 'Subscription';
4054
- types: introspection_types;
4055
- };
4056
-
4057
- //#endregion
4058
- //#region src/portal/portal-client.d.ts
4059
- type PortalClient = ReturnType<typeof createPortalClient<{
4060
- introspection: introspection;
4061
- disableMasking: true;
4062
- scalars: {
4063
- JSON: unknown;
4064
- };
4065
- }>>;
4066
-
4067
- //#endregion
4068
- //#region src/graphql/operations.d.ts
4069
- declare const getDeploySchemaRegistoryMutation: (graphql: PortalClient["graphql"]) => gql_tada0.TadaDocumentNode<{
4070
- DeployContractEASSchemaRegistry: {
4071
- transactionHash: string | null;
4072
- } | null;
4073
- }, {
4074
- gasLimit: string;
4075
- constructorArguments: {
4076
- forwarder: string;
4077
- };
4078
- from: string;
4079
- }, void>;
4080
- declare const getDeployEASMutation: (graphql: PortalClient["graphql"]) => gql_tada0.TadaDocumentNode<{
4081
- DeployContractEAS: {
4082
- transactionHash: string | null;
4083
- } | null;
4084
- }, {
4085
- gasLimit: string;
4086
- constructorArguments: {
4087
- registry: string;
4088
- forwarder: string;
4089
- };
4090
- from: string;
4091
- }, void>;
4092
- declare const REGISTER_SCHEMA_MUTATION: string;
4093
- declare const ATTEST_MUTATION: string;
4094
- declare const MULTI_ATTEST_MUTATION: string;
4095
- declare const REVOKE_MUTATION: string;
4096
- declare const GET_SCHEMA_QUERY: string;
4097
- declare const GET_SCHEMAS_QUERY: string;
4098
- declare const GET_ATTESTATION_QUERY: string;
4099
- declare const IS_ATTESTATION_VALID_QUERY: string;
4100
- declare const GET_TIMESTAMP_QUERY: string;
4101
- declare const GET_ATTESTATIONS_QUERY: string;
4102
- /**
4103
- * All GraphQL operations organized by category
4104
- */
4105
- declare const GraphQLOperations: {
4106
- readonly mutations: {
4107
- readonly deploySchemaRegistry: (graphql: PortalClient["graphql"]) => gql_tada0.TadaDocumentNode<{
4108
- DeployContractEASSchemaRegistry: {
4109
- transactionHash: string | null;
4110
- } | null;
4111
- }, {
4112
- gasLimit: string;
4113
- constructorArguments: {
4114
- forwarder: string;
4115
- };
4116
- from: string;
4117
- }, void>;
4118
- readonly deployEAS: (graphql: PortalClient["graphql"]) => gql_tada0.TadaDocumentNode<{
4119
- DeployContractEAS: {
4120
- transactionHash: string | null;
4121
- } | null;
4122
- }, {
4123
- gasLimit: string;
4124
- constructorArguments: {
4125
- registry: string;
4126
- forwarder: string;
4127
- };
4128
- from: string;
4129
- }, void>;
4130
- readonly registerSchema: string;
4131
- readonly attest: string;
4132
- readonly multiAttest: string;
4133
- readonly revoke: string;
4134
- };
4135
- readonly queries: {
4136
- readonly getSchema: string;
4137
- readonly getSchemas: string;
4138
- readonly getAttestation: string;
4139
- readonly getAttestations: string;
4140
- readonly isAttestationValid: string;
4141
- readonly getTimestamp: string;
4142
- };
4143
- };
4144
- /**
4145
- * Type-safe access to GraphQL operations
4146
- */
4147
- type GraphQLMutations = typeof GraphQLOperations.mutations;
4148
- type GraphQLQueries = typeof GraphQLOperations.queries;
4149
66
 
4150
67
  //#endregion
4151
68
  //#region src/eas.d.ts
4152
69
  /**
4153
- * Main EAS client class for interacting with Ethereum Attestation Service via Portal
4154
- */
4155
- declare class EASClient {
4156
- private readonly options;
4157
- private readonly portalClient;
4158
- private readonly portalGraphql;
4159
- private deployedAddresses?;
4160
- constructor(options: EASClientOptions);
4161
- /**
4162
- * Deploy EAS contracts via Portal
4163
- */
4164
- deploy(deployerAddress: Address, forwarderAddress?: Address, gasLimit?: string): Promise<DeploymentResult>;
4165
- /**
4166
- * Register a new schema in the EAS Schema Registry
4167
- */
4168
- registerSchema(request: SchemaRequest, fromAddress: Address, gasLimit?: string): Promise<TransactionResult>;
4169
- /**
4170
- * Create an attestation
4171
- */
4172
- attest(request: AttestationRequest, fromAddress: Address, gasLimit?: string): Promise<TransactionResult>;
4173
- /**
4174
- * Create multiple attestations in a single transaction
4175
- */
4176
- multiAttest(requests: AttestationRequest[], fromAddress: Address, gasLimit?: string): Promise<TransactionResult>;
4177
- /**
4178
- * Revoke an attestation
4179
- */
4180
- revoke(schemaUID: Hex, attestationUID: Hex, fromAddress: Address, value?: bigint, gasLimit?: string): Promise<TransactionResult>;
4181
- /**
4182
- * Get a schema by UID
4183
- *
4184
- * TODO: Implement using The Graph subgraph for EAS data queries
4185
- */
4186
- getSchema(uid: Hex): Promise<SchemaData>;
4187
- /**
4188
- * Get all schemas with pagination
4189
- *
4190
- * TODO: Implement using The Graph subgraph for EAS data queries
4191
- */
4192
- getSchemas(options?: GetSchemasOptions): Promise<SchemaData[]>;
4193
- /**
4194
- * Get an attestation by UID
4195
- *
4196
- * TODO: Implement using The Graph subgraph for EAS data queries
4197
- */
4198
- getAttestation(uid: Hex): Promise<AttestationInfo>;
4199
- /**
4200
- * Get attestations with pagination and filtering
4201
- *
4202
- * TODO: Implement using The Graph subgraph for EAS data queries
4203
- */
4204
- getAttestations(options?: GetAttestationsOptions): Promise<AttestationInfo[]>;
4205
- /**
4206
- * Check if an attestation is valid
4207
- *
4208
- * TODO: Implement using The Graph subgraph for EAS data queries
4209
- */
4210
- isValidAttestation(uid: Hex): Promise<boolean>;
4211
- /**
4212
- * Get the current timestamp from the contract
4213
- *
4214
- * TODO: Fix Portal GraphQL query parameter encoding or use The Graph subgraph
4215
- */
4216
- getTimestamp(): Promise<bigint>;
4217
- /**
4218
- * Get client configuration
4219
- */
4220
- getOptions(): EASClientOptions;
4221
- /**
4222
- * Get the Portal client instance for advanced operations
4223
- */
4224
- getPortalClient(): ReturnType<typeof createPortalClient>["client"];
4225
- /**
4226
- * Get current contract addresses
4227
- */
4228
- getContractAddresses(): {
4229
- easAddress?: Address;
4230
- schemaRegistryAddress?: Address;
4231
- };
4232
- private getEASAddress;
4233
- private getSchemaRegistryAddress;
4234
- private buildSchemaString;
4235
- }
4236
- /**
4237
- * Create a new EAS client instance
4238
- */
4239
- declare function createEASClient(options: EASClientOptions): EASClient;
70
+ * Creates an EAS client for interacting with the Ethereum Attestation Service.
71
+ *
72
+ * @param options - Configuration options for the client
73
+ * @returns An object containing the EAS client instance
74
+ * @throws Will throw an error if the options fail validation
75
+ *
76
+ * @example
77
+ * ```ts
78
+ * import { createEASClient } from '@settlemint/sdk-eas';
79
+ *
80
+ * const client = createEASClient({
81
+ * schemaRegistryAddress: "0x1234567890123456789012345678901234567890",
82
+ * attestationAddress: "0x1234567890123456789012345678901234567890",
83
+ * accessToken: "your-access-token",
84
+ * chainId: "1",
85
+ * chainName: "Ethereum",
86
+ * rpcUrl: "http://localhost:8545"
87
+ * });
88
+ * ```
89
+ */
90
+ declare function createEASClient(options: ClientOptions): {
91
+ registerSchema: (options: RegisterSchemaOptions) => Promise<string>;
92
+ getSchema: (uid: string) => Promise<string>;
93
+ };
4240
94
 
4241
95
  //#endregion
4242
- export { AttestationData, AttestationInfo, AttestationRequest, DeploymentResult, EASClient, EASClientOptions, EASFieldType, EAS_FIELD_TYPES, GetAttestationsOptions, GetSchemasOptions, GraphQLOperations, RegisterSchemaOptions, SchemaData, SchemaField, SchemaRequest, TransactionResult, ZERO_ADDRESS, ZERO_BYTES32, buildSchemaString, createEASClient, validateSchemaFields };
96
+ export { ClientOptions, ClientOptionsSchema, EASFieldType, EAS_FIELD_TYPES, RegisterSchemaOptions, SchemaField, createEASClient };
4243
97
  //# sourceMappingURL=eas.d.ts.map