-
Notifications
You must be signed in to change notification settings - Fork 104
/
schema.graphql
1918 lines (1717 loc) · 38.2 KB
/
schema.graphql
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
schema {
mutation: Mutation
query: Query
}
scalar AssetFingerprint
scalar Hex
scalar BigInt
scalar DateTime
scalar Hash28Hex
scalar Hash32Hex
scalar IPv4
scalar IPv6
scalar JSON
scalar JSONObject
scalar Lovelace
scalar Percentage
scalar StakeAddress
scalar StakePoolID
scalar Timestamp
scalar VRFVerificationKey
type Mutation {
# Submit a signed transaction to the network
submitTransaction (transaction: String!): TransactionSubmitResponse!
}
type Query {
activeStake (
limit: Int
order_by: [ActiveStake_order_by!]
offset: Int
where: ActiveStake_bool_exp
): [ActiveStake]!
activeStake_aggregate (
limit: Int
order_by: [ActiveStake_order_by!]
offset: Int
where: ActiveStake_bool_exp
): ActiveStake_aggregate!
ada: Ada!
assets (
limit: Int
order_by: [Asset_order_by!]
offset: Int
where: Asset_bool_exp
): [Asset]!
assets_aggregate (
limit: Int
order_by: [Asset_order_by!]
offset: Int
where: Asset_bool_exp
): Asset_aggregate!
blocks (
limit: Int
order_by: [Block_order_by!]
offset: Int
where: Block_bool_exp
): [Block]!
blocks_aggregate (
limit: Int
order_by: [Block_order_by!]
offset: Int
where: Block_bool_exp
): Block_aggregate!
cardano: Cardano!
cardanoDbMeta: CardanoDbMeta!
collateralInputs (
limit: Int
order_by: [CollateralInput_order_by!]
offset: Int
where: CollateralInput_bool_exp
): [CollateralInput]!
collateralInputs_aggregate (
limit: Int
order_by: [CollateralInput_order_by!]
offset: Int
where: CollateralInput_bool_exp
): CollateralInput_aggregate!
collateralOutputs (
limit: Int
order_by: [CollateralOutput_order_by!]
offset: Int
where: CollateralOutput_bool_exp
): [CollateralOutput]!
collateralOutputs_aggregate (
limit: Int
order_by: [CollateralOutput_order_by!]
offset: Int
where: CollateralOutput_bool_exp
): CollateralOutput_aggregate!
delegations (
limit: Int
order_by: [Delegation_order_by!]
offset: Int
where: Delegation_bool_exp
): [Delegation]
delegations_aggregate (
limit: Int
order_by: [Delegation_order_by!]
offset: Int
where: Delegation_bool_exp
): Delegation_aggregate
epochs (
limit: Int
order_by: [Epoch_order_by!]
offset: Int
where: Epoch_bool_exp
): [Epoch]!
epochs_aggregate (
limit: Int
order_by: [Epoch_order_by!]
offset: Int
where: Epoch_bool_exp
): Epoch_aggregate!
genesis: Genesis!
paymentAddresses (
addresses: [String]!
): [PaymentAddress]
redeemers (
limit: Int
order_by: [Redeemer_order_by!]
offset: Int
where: Redeemer_bool_exp
): [Redeemer]!
redeemers_aggregate (
limit: Int
order_by: [Redeemer_order_by!]
offset: Int
where: Redeemer_bool_exp
): Redeemer_aggregate!
rewards (
limit: Int
order_by: [Reward_order_by!]
offset: Int
where: Reward_bool_exp
): [Reward]!
rewards_aggregate (
limit: Int
order_by: [Reward_order_by!]
offset: Int
where: Reward_bool_exp
): Reward_aggregate!
scripts (
limit: Int
order_by: [Script_order_by!]
offset: Int
where: Script_bool_exp
): [Script]!
scripts_aggregate (
limit: Int
order_by: [Script_order_by!]
offset: Int
where: Script_bool_exp
): Script_aggregate!
stakeDeregistrations (
limit: Int
order_by: [StakeDeregistration_order_by!]
offset: Int
where: StakeDeregistration_bool_exp
): [StakeDeregistration]
stakeDeregistrations_aggregate (
limit: Int
order_by: [StakeDeregistration_order_by!]
offset: Int
where: StakeDeregistration_bool_exp
): StakeDeregistration_aggregate
stakePools (
limit: Int
order_by: [StakePool_order_by!]
offset: Int
where: StakePool_bool_exp
): [StakePool]
stakePools_aggregate (
limit: Int
order_by: [StakePool_order_by!]
offset: Int
where: StakePool_bool_exp
): StakePool_aggregate
stakeRegistrations (
limit: Int
order_by: [StakeRegistration_order_by!]
offset: Int
where: StakeRegistration_bool_exp
): [StakeRegistration]
stakeRegistrations_aggregate (
limit: Int
order_by: [StakeRegistration_order_by!]
offset: Int
where: StakeRegistration_bool_exp
): StakeRegistration_aggregate
tokenMints (
distinct_on: [TokenMint_aggregate_distinct_on!]
limit: Int
order_by: [TokenMint_order_by!]
offset: Int
where: TokenMint_bool_exp
): [TokenMint]!
tokenMints_aggregate (
distinct_on: [TokenMint_aggregate_distinct_on!]
limit: Int
order_by: [TokenMint_order_by!]
offset: Int
where: TokenMint_bool_exp
): TokenMint_aggregate!
transactions (
limit: Int
order_by: [Transaction_order_by!]
offset: Int
where: Transaction_bool_exp
): [Transaction]!
transactions_aggregate (
limit: Int
order_by: [Transaction_order_by!]
offset: Int
where: Transaction_bool_exp
): Transaction_aggregate!
utxos (
distinct_on: [TransactionOutput_distinct_on!]
limit: Int
order_by: [TransactionOutput_order_by!]
offset: Int
where: TransactionOutput_bool_exp
): [TransactionOutput]!
utxos_aggregate (
distinct_on: [TransactionOutput_distinct_on!]
limit: Int
order_by: [TransactionOutput_order_by!]
offset: Int
where: TransactionOutput_bool_exp
): TransactionOutput_aggregate!
withdrawals (
limit: Int
order_by: [Withdrawal_order_by!]
offset: Int
where: Withdrawal_bool_exp
): [Withdrawal]!
withdrawals_aggregate (
limit: Int
order_by: [Withdrawal_order_by!]
offset: Int
where: Withdrawal_bool_exp
): Withdrawal_aggregate
}
type ActiveStake {
address: StakeAddress!
amount: Lovelace!
epoch: Epoch
epochNo: Int!
stakePoolHash: Hash28Hex!
stakePoolId: StakePoolID!
registeredWith: StakePool!
}
input ActiveStake_bool_exp {
_and: [ActiveStake_bool_exp]
_not: ActiveStake_bool_exp
_or: [ActiveStake_bool_exp]
address: StakeAddress_comparison_exp
amount: text_comparison_exp
epoch: Epoch_bool_exp
epochNo: Int_comparison_exp
stakePoolHash: Hash28Hex_comparison_exp
stakePoolId: StakePoolID_comparison_exp
registeredWith: StakePool_bool_exp
}
input ActiveStake_order_by {
address: order_by
amount: order_by
epoch: Epoch_order_by
epochNo: order_by
stakePoolHash: order_by
stakePoolId: order_by
registeredWith: StakePool_order_by
}
type ActiveStake_aggregate {
aggregate: ActiveStake_aggregate_fields
}
type ActiveStake_aggregate_fields {
count: String!
max: ActiveStake_max_fields!
min: ActiveStake_min_fields!
sum: ActiveStake_sum_fields!
}
type ActiveStake_max_fields {
amount: Lovelace
}
type ActiveStake_min_fields {
amount: Lovelace
}
type ActiveStake_sum_fields {
amount: Lovelace
}
type Ada {
supply: AssetSupply!
}
type AdaPots {
deposits_stake: Lovelace!
deposits_drep: Lovelace!
deposits_proposal: Lovelace!
fees: Lovelace!
reserves: Lovelace!
rewards: Lovelace!
slotNo: String!
treasury: Lovelace!
utxo: Lovelace!
}
type AlonzoGenesis {
lovelacePerUTxOWord: Lovelace!
executionPrices: ExecutionPrices!
maxTxExUnits: ExecutionUnits!
maxBlockExUnits: ExecutionUnits!
maxValueSize: Lovelace!
collateralPercentage: Int!
maxCollateralInputs: Int!
}
type ExecutionPrices {
prSteps: ExecutionPrice!
prMem: ExecutionPrice!
}
type ExecutionPrice {
numerator: Int!
denominator: Int!
}
type ExecutionUnits {
exUnitsMem: String!
exUnitsSteps: String!
}
type Asset {
assetId: Hex!
assetName: Hex
decimals: Int
description: String
fingerprint: AssetFingerprint
logo: String
metadataHash: String
tokenMints (
limit: Int
order_by: [TokenMint_order_by!]
offset: Int
where: TokenMint_bool_exp
): [TokenMint]!
tokenMints_aggregate (
limit: Int
order_by: [TokenMint_order_by!]
offset: Int
where: TokenMint_bool_exp
): TokenMint_aggregate!
name: String
policyId: Hash28Hex!
ticker: String
url: String
}
input Asset_bool_exp {
_and: [Asset_bool_exp]
_not: Asset_bool_exp
_or: [Asset_bool_exp]
ticker: text_comparison_exp
assetId: Hex_comparison_exp
assetName: Hex_comparison_exp
decimals: Int_comparison_exp
description: text_comparison_exp
fingerprint: AssetFingerprint_comparison_exp
logo: text_comparison_exp
name: text_comparison_exp
policyId: Hash28Hex_comparison_exp
tokenMints: TokenMint_bool_exp
url: text_comparison_exp
}
input Asset_order_by {
assetId: order_by
decimals: order_by
fingerprint: order_by
name: order_by
}
type Asset_aggregate {
aggregate:Asset_aggregate_fields
}
type Asset_aggregate_fields {
count: String!
}
type AssetBalance {
asset: Asset!
quantity: String!
}
type AssetSupply {
circulating: String!
max: String!
total: String
}
input AssetSupply_bool_exp {
_and: [AssetSupply_bool_exp]
_not: AssetSupply_bool_exp
_or: [AssetSupply_bool_exp]
circulating: text_comparison_exp
max: text_comparison_exp
total: text_comparison_exp
}
input AssetSupply_order_by {
circulating: order_by
max: order_by
total: order_by
}
type ByronBlockVersionData {
scriptVersion: Int!
slotDuration: Int!
maxBlockSize: Int!
maxHeaderSize: Int!
maxTxSize: Int!
maxProposalSize: Int!
mpcThd: String!
heavyDelThd: String!
updateVoteThd: String!
updateProposalThd: String!
updateImplicit: String!
softforkRule: ByronSoftForkRule!
txFeePolicy: ByronTxFeePolicy!
unlockStakeEpoch: String!
}
type ByronGenesis {
bootStakeholders: JSONObject!
heavyDelegation: JSONObject!
startTime: Timestamp!
nonAvvmBalances: JSONObject!
blockVersionData: ByronBlockVersionData!
protocolConsts: ByronProtocolConsts!
avvmDistr: JSONObject!
}
type ByronProtocolConsts {
k: Int!
protocolMagic: Int
}
type ByronSoftForkRule {
initThd: String!
minThd: String!
thdDecrement: String!
}
type ByronTxFeePolicy {
summand: String!
multiplier: String!
}
type Cardano {
tip: Block!
currentEpoch: Epoch!
}
type CardanoDbMeta {
initialized: Boolean!
syncPercentage: Percentage!
}
type CollateralInput {
address: String!
sourceTransaction: Transaction!
sourceTxHash: Hash32Hex!
sourceTxIndex: Int!
tokens: [Token]!
tokens_aggregate: Token_aggregate!
transaction: Transaction!
txHash: Hash32Hex!
value: Lovelace!
}
input CollateralInput_order_by {
address: order_by
sourceTxHash: order_by
transaction: Transaction_order_by
txHash: order_by
value: order_by
}
input CollateralInput_bool_exp {
_and: [CollateralInput_bool_exp]
_not: CollateralInput_bool_exp
_or: [CollateralInput_bool_exp]
address: text_comparison_exp
sourceTransaction: Transaction_bool_exp
tokens: Token_bool_exp
transaction: Transaction_bool_exp
value: text_comparison_exp
}
type CollateralInput_aggregate {
aggregate: TransactionInput_aggregate_fields
}
type CollateralInput_aggregate_fields {
count: String!
max: CollateralInput_max_fields!
min: CollateralInput_min_fields!
sum: CollateralInput_sum_fields!
}
type CollateralInput_max_fields {
tokens: Token_max_fields
value: Lovelace
}
type CollateralInput_min_fields {
tokens: Token_min_fields
value: Lovelace
}
type CollateralInput_sum_fields {
tokens: Token_sum_fields
value: Lovelace
}
type CollateralOutput {
address: String!
addressHasScript: Boolean!
datum: Datum
index: Int!
paymentCredential: Hash28Hex
script: Script
transaction: Transaction!
txHash: Hash32Hex!
value: Lovelace!
}
enum CollateralOutput_distinct_on {
address
}
input CollateralOutput_order_by {
address: order_by
addressHasScript: order_by
datum: Transaction_order_by
index: order_by
txHash: order_by
value: order_by
}
input CollateralOutput_bool_exp {
_and: [CollateralOutput_bool_exp]
_not: CollateralOutput_bool_exp
_or: [CollateralOutput_bool_exp]
address: text_comparison_exp
addressHasScript: Boolean_comparison_exp
datum: Datum_bool_exp
index: Int_comparison_exp
script: Script_bool_exp
transaction: Transaction_bool_exp
value: text_comparison_exp
}
type CollateralOutput_aggregate {
aggregate: CollateralOutput_aggregate_fields
}
type CollateralOutput_aggregate_fields {
count: String!
max: CollateralOutput_max_fields!
min: CollateralOutput_min_fields!
sum: CollateralOutput_sum_fields!
}
type CollateralOutput_max_fields {
value: Lovelace
}
type CollateralOutput_min_fields {
value: Lovelace
}
type CollateralOutput_sum_fields {
value: Lovelace
}
type Datum {
bytes: Hex!
hash: Hash32Hex!
firstIncludedIn: Transaction!
value: JSONObject!
}
input Datum_bool_exp {
firstIncludedIn: Transaction_bool_exp
hash: Hex_comparison_exp
}
type Delegation {
address: StakeAddress!
redeemer: Redeemer
stakePool: StakePool!
stakePoolHash: Hash28Hex!
stakePoolId: StakePoolID!
transaction: Transaction
}
input Delegation_order_by {
address: order_by
stakePool: StakePool_order_by
stakePoolHash: order_by
stakePoolId: order_by
transaction: Transaction_order_by
}
input Delegation_bool_exp {
_and: [Delegation_bool_exp]
_not: Delegation_bool_exp
_or: [Delegation_bool_exp]
address: StakeAddress_comparison_exp
stakePool: StakePool_bool_exp
stakePoolHash: Hash28Hex_comparison_exp
stakePoolId: StakePoolID_comparison_exp
transaction: Transaction_bool_exp
}
type Delegation_aggregate {
aggregate: Delegation_aggregate_fields
}
type Delegation_aggregate_fields {
count: String
}
type Genesis {
alonzo: AlonzoGenesis
byron: ByronGenesis
shelley: ShelleyGenesis
}
type PaymentAddress {
address: String!
summary(
atBlock: Int
): PaymentAddressSummary
}
type PaymentAddressSummary {
assetBalances: [AssetBalance]!
utxosCount: Int!
}
type Redeemer {
datum: Datum
fee: Lovelace
index: Int!
purpose: String! # Todo: Make scalar
scriptHash: Hash28Hex!
transaction: Transaction!
unitMem: String!
unitSteps: String!
}
type Redeemer_aggregate {
aggregate: Redeemer_aggregate_fields
}
type Redeemer_aggregate_fields {
count: String!
max: Redeemer_max_fields!
min: Redeemer_min_fields!
sum: Redeemer_sum_fields!
}
type Redeemer_max_fields {
fee: String
unitMem: String
unitSteps: String
}
type Redeemer_min_fields {
fee: String
unitMem: String
unitSteps: String
}
type Redeemer_sum_fields {
fee: String
unitMem: String
unitSteps: String
}
input Redeemer_bool_exp {
_and: [Redeemer_bool_exp]
_not: Redeemer_bool_exp
_or: [Redeemer_bool_exp]
datum: Datum_bool_exp
fee: text_comparison_exp
index: Int_comparison_exp
purpose: text_comparison_exp
scriptHash: text_comparison_exp
transaction: Transaction_bool_exp
unitMem: text_comparison_exp
unitSteps: text_comparison_exp
}
input Redeemer_order_by {
purpose: order_by
scriptHash: order_by
transaction: Transaction_order_by
unitMem: order_by
unitSteps: order_by
}
type Relay {
ipv4: IPv4
ipv6: IPv6
dnsName: String
dnsSrvName: String
port: Int
}
input Relay_bool_exp {
_and: [Relay_bool_exp]
_not: Relay_bool_exp
_or: [Relay_bool_exp]
ipv4: text_comparison_exp
ipv6: text_comparison_exp
dnsName: text_comparison_exp
dnsSrvName: text_comparison_exp
port: Int_comparison_exp
}
type Reward {
address: StakeAddress!
amount: Lovelace!
earnedIn: Epoch!
receivedIn: Epoch
stakePool: StakePool
type: String!
}
type Reward_aggregate {
aggregate: Reward_aggregate_fields
}
type Reward_aggregate_fields {
count: String!
max: Reward_max_fields!
min: Reward_min_fields!
sum: Reward_sum_fields!
}
type Reward_max_fields {
amount: Lovelace
}
type Reward_min_fields {
amount: Lovelace
}
type Reward_sum_fields {
amount: Lovelace
}
input Reward_bool_exp {
_and: [Reward_bool_exp]
_not: Reward_bool_exp
_or: [Reward_bool_exp]
address: StakeAddress_comparison_exp
amount: text_comparison_exp
earnedIn: Epoch_bool_exp
receivedIn: Epoch_bool_exp
stakePool: StakePool_bool_exp
type: text_comparison_exp
}
input Reward_order_by {
address: order_by
amount: order_by
earnedIn: Epoch_order_by
receivedIn: Epoch_order_by
stakePool: StakePool_order_by
type: order_by
}
type Script {
hash: Hash28Hex!
serialisedSize: Int
transaction: Transaction!
type: String! # Todo: Make scalar
}
type Script_aggregate {
aggregate: Script_aggregate_fields
}
type Script_aggregate_fields {
count: String!
max: Script_max_fields!
min: Script_min_fields!
sum: Script_sum_fields!
}
type Script_max_fields {
serialisedSize: Int
}
type Script_min_fields {
serialisedSize: Int
}
type Script_sum_fields {
serialisedSize: BigInt
}
input Script_bool_exp {
_and: [Script_bool_exp]
_not: Script_bool_exp
_or: [Script_bool_exp]
serialisedSize: Int_comparison_exp
transaction: Transaction_bool_exp
type: text_comparison_exp
}
input Script_order_by {
serialisedSize: order_by
transaction: Transaction_order_by
type: order_by
}
type ShelleyGenesis {
activeSlotsCoeff: Float!
epochLength: Int!
genDelegs: JSONObject
initialFunds: JSONObject!
maxKESEvolutions: Int!
maxLovelaceSupply: Lovelace!
networkId: String!
networkMagic: Int!
protocolParams: ShelleyProtocolParams!
securityParam: Int!
slotLength: Int!
slotsPerKESPeriod: Int!
staking: ShelleyGenesisStaking
systemStart: String!
updateQuorum: Int!
}
type ShelleyGenesisStaking {
pools: JSONObject!
stake: JSONObject!
}
type ProtocolParams {
a0: Float!
coinsPerUtxoByte: Lovelace
collateralPercent: Int
costModels: JSONObject
decentralisationParam: Float!
eMax: Int!
extraEntropy: JSONObject
keyDeposit: Lovelace!
maxBlockBodySize: Int!
maxBlockExMem: String
maxBlockExSteps: String
maxBlockHeaderSize: Int!
maxCollateralInputs: Int
maxTxExMem: String
maxTxExSteps: String
maxTxSize: Int!
maxValSize: String
minFeeA: Int!
minFeeB: Int!
minPoolCost: Lovelace!
minUTxOValue: Lovelace!
nOpt: Int!
poolDeposit: Lovelace!
priceMem: Float
priceStep: Float
protocolVersion: JSONObject!
rho: Float!
tau: Float!
}
type ShelleyProtocolParams {
a0: Float!
decentralisationParam: Float!
eMax: Int!
extraEntropy: JSONObject
keyDeposit: Lovelace!
maxBlockBodySize: Int!
maxBlockHeaderSize: Int!
maxTxSize: Int!
minFeeA: Int!
minFeeB: Int!
minPoolCost: Lovelace!
minUTxOValue: Lovelace!
nOpt: Int!
poolDeposit: Lovelace!
protocolVersion: JSONObject!
rho: Float!
tau: Float!
}
input StakeAddress_comparison_exp {
_eq: StakeAddress
_in: [StakeAddress]
_neq: StakeAddress
_nin: [StakeAddress]
}
type StakeDeregistration {
address: StakeAddress!
redeemer: Redeemer
transaction: Transaction!
}
type StakeDeregistration_aggregate {
aggregate: StakeDeregistration_aggregate_fields
}
type StakeDeregistration_aggregate_fields {
count: String
}
input StakeDeregistration_order_by {
address: order_by
transaction: Transaction_order_by
}
input StakeDeregistration_bool_exp {
_and: [StakeDeregistration_bool_exp]
_not: StakeDeregistration_bool_exp
_or: [StakeDeregistration_bool_exp]
address: StakeAddress_comparison_exp
transaction: Transaction_bool_exp
}
type SlotLeader {
description: String!
hash: Hash28Hex!
stakePool: StakePool
}
input SlotLeader_bool_exp {
_and: [SlotLeader_bool_exp]
_not: SlotLeader_bool_exp
_or: [SlotLeader_bool_exp]
description: text_comparison_exp
hash: Hash28Hex_comparison_exp
stakePool: StakePool_bool_exp
}
input SlotLeader_order_by {
hash: order_by
stakePool: StakePool_order_by
}
type StakePool {
activeStake (
limit: Int
order_by: [ActiveStake_order_by!]
offset: Int
where: ActiveStake_bool_exp
): [ActiveStake]!
activeStake_aggregate (
limit: Int
order_by: [ActiveStake_order_by!]
offset: Int
where: ActiveStake_bool_exp
): ActiveStake_aggregate!
blocks (
limit: Int
order_by: [Block_order_by!]
offset: Int
where: Block_bool_exp
): [Block!]!
blocks_aggregate (
limit: Int
order_by: [Block_order_by!]
offset: Int
where: Block_bool_exp
): Block_aggregate!
delegators (
limit: Int
order_by: [Delegation_order_by!]
offset: Int
where: Delegation_bool_exp