-
-
Notifications
You must be signed in to change notification settings - Fork 103
Expand file tree
/
Copy pathQuery.hs
More file actions
2054 lines (1927 loc) · 72.8 KB
/
Copy pathQuery.hs
File metadata and controls
2054 lines (1927 loc) · 72.8 KB
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
-- This Source Code Form is subject to the terms of the Mozilla Public
-- License, v. 2.0. If a copy of the MPL was not distributed with this
-- file, You can obtain one at http://mozilla.org/MPL/2.0/.
{-# LANGUAGE AllowAmbiguousTypes #-}
{-# LANGUAGE PatternSynonyms #-}
{-# LANGUAGE TypeApplications #-}
module Ogmios.Data.Json.Query
( -- * Types
Query (..)
, QueryInEra
, SomeQuery (..)
, QueryResult
-- ** Eras
, ShelleyBasedEra (..)
, SomeShelleyEra (..)
, fromEraIndex
-- ** Types in queries
, RewardAccounts
, Delegations
, Interpreter
, Sh.RewardProvenance
, Sh.RewardProvenancePool
, RewardProvenance'
, Sh.Api.RewardInfoPool
, Sh.Api.RewardParams
, Sh.Desirability
, Sh.PoolParams
-- * Encoders
, encodeBound
, encodeDelegationsAndRewards
, encodeDesirabilities
, encodeEpochNo
, encodeEraMismatch
, encodeInterpreter
, encodeMismatchEraInfo
, encodeNonMyopicMemberRewards
, encodeOneEraHash
, encodePoint
, encodePoolDistr
, encodePoolParameters
, encodeRewardInfoPool
, encodeRewardInfoPools
, encodeRewardProvenance
-- * Decoders
, decodeAddress
, decodeAssetId
, decodeAssetName
, decodeAssets
, decodeCoin
, decodeCredential
, decodeDatumHash
, decodeHash
, decodeOneEraHash
, decodePoint
, decodePolicyId
, decodePoolId
, decodeSerializedTx
, decodeTip
, decodeTxId
, decodeTxIn
, decodeTxOut
, decodeUtxo
, decodeValue
-- * Parsers
, parseGetBlockHeight
, parseGetChainTip
, parseGetCurrentPParams
, parseGetEpochNo
, parseGetEraStart
, parseGetFilteredDelegationsAndRewards
, parseGetGenesisConfig
, parseGetInterpreter
, parseGetLedgerTip
, parseGetNonMyopicMemberRewards
, parseGetPoolIds
, parseGetPoolParameters
, parseGetPoolsRanking
, parseGetProposedPParamsUpdates
, parseGetRewardInfoPools
, parseGetRewardProvenance
, parseGetStakeDistribution
, parseGetSystemStart
, parseGetUTxO
, parseGetUTxOByAddress
, parseGetUTxOByTxIn
) where
import Ogmios.Data.Json.Prelude
import Cardano.Api
( ShelleyBasedEra (..)
)
import Cardano.Binary
( Annotator
, DecoderError
, FromCBOR (..)
, decodeAnnotator
, decodeFull
, decodeFullDecoder
)
import Cardano.Crypto.Hash
( hashFromBytes
, hashFromTextAsHex
, pattern UnsafeHash
)
import Cardano.Crypto.Hash.Class
( Hash
, HashAlgorithm
)
import Cardano.Ledger.Babbage
()
import Cardano.Ledger.Crypto
( Crypto
, HASH
)
import Cardano.Ledger.Keys
( KeyRole (..)
)
import Cardano.Ledger.SafeHash
( unsafeMakeSafeHash
)
import Cardano.Network.Protocol.NodeToClient
( GenTx
, GenTxId
, SerializedTx
)
import Cardano.Slotting.Block
( BlockNo (..)
)
import Cardano.Slotting.Slot
( EpochNo (..)
, SlotNo (..)
, WithOrigin (..)
)
import Codec.Serialise
( deserialise
, deserialiseOrFail
, serialise
)
import Data.Aeson
( toJSON
)
import Data.ByteString.Base16
( encodeBase16
)
import Data.SOP.Strict
( NS (..)
)
import Formatting.Buildable
( build
)
import Ogmios.Data.EraTranslation
( MostRecentEra
, MultiEraTxOut (..)
, MultiEraUTxO (..)
, translateTxOut
)
import Ouroboros.Consensus.BlockchainTime
( SystemStart (..)
)
import Ouroboros.Consensus.Cardano.Block
( BlockQuery (..)
, CardanoBlock
, CardanoEras
, GenTx (..)
, TxId (..)
)
import Ouroboros.Consensus.HardFork.Combinator
( EraIndex (..)
, MismatchEraInfo
, OneEraHash (..)
)
import Ouroboros.Consensus.HardFork.Combinator.AcrossEras
( EraMismatch (..)
, mkEraMismatch
)
import Ouroboros.Consensus.HardFork.Combinator.Ledger.Query
( QueryAnytime (..)
)
import Ouroboros.Consensus.HardFork.History.EraParams
( EraParams (..)
, SafeZone (..)
)
import Ouroboros.Consensus.HardFork.History.Qry
( Interpreter
)
import Ouroboros.Consensus.HardFork.History.Summary
( Bound (..)
, EraEnd (..)
, EraSummary (..)
, Summary (..)
)
import Ouroboros.Consensus.Protocol.Praos
( Praos
, PraosCrypto
)
import Ouroboros.Consensus.Protocol.TPraos
( TPraos
)
import Ouroboros.Consensus.Shelley.Eras
( AllegraEra
, AlonzoEra
, BabbageEra
, MaryEra
, ShelleyEra
)
import Ouroboros.Consensus.Shelley.Ledger.Block
( ShelleyBlock (..)
, ShelleyHash (..)
)
import Ouroboros.Consensus.Shelley.Ledger.Config
( CompactGenesis
, getCompactGenesis
)
import Ouroboros.Consensus.Shelley.Ledger.Mempool
( TxId (..)
)
import Ouroboros.Consensus.Shelley.Ledger.Query
( BlockQuery (..)
, NonMyopicMemberRewards (..)
)
import Ouroboros.Consensus.Shelley.Protocol.Abstract
( ProtoCrypto
)
import Ouroboros.Consensus.Shelley.Protocol.TPraos
()
import Ouroboros.Network.Block
( Point (..)
, Tip (..)
, genesisPoint
, pattern BlockPoint
, pattern GenesisPoint
, wrapCBORinCBOR
)
import Ouroboros.Network.Point
( Block (..)
)
import qualified Codec.Binary.Bech32 as Bech32
import qualified Codec.CBOR.Encoding as Cbor
import qualified Codec.CBOR.Write as Cbor
import qualified Data.Aeson as Json
import qualified Data.Aeson.Key as Json
import qualified Data.Aeson.KeyMap as Json
import qualified Data.Aeson.Types as Json
import qualified Data.Map.Merge.Strict as Map
import qualified Data.Map.Strict as Map
import qualified Data.Text as T
import qualified Data.Text.Lazy as TL
import qualified Data.Text.Lazy.Builder as TL
import qualified Text.Read as T
import qualified Ouroboros.Consensus.HardFork.Combinator.Ledger.Query as LSQ
import qualified Ouroboros.Consensus.Ledger.Query as LSQ
import qualified Plutus.V1.Ledger.Api as Plutus
import qualified Cardano.Crypto.Hashing as CC
import qualified Cardano.Protocol.TPraos.API as TPraos
import qualified Cardano.Ledger.Era as Era
import qualified Cardano.Ledger.Address as Ledger
import qualified Cardano.Ledger.Alonzo.Data as Ledger.Alonzo
import qualified Cardano.Ledger.Alonzo.Language as Ledger.Alonzo
import qualified Cardano.Ledger.Alonzo.Scripts as Ledger.Alonzo
import qualified Cardano.Ledger.Alonzo.TxBody as Ledger.Alonzo
import qualified Cardano.Ledger.Babbage.TxBody as Ledger.Babbage
import qualified Cardano.Ledger.BaseTypes as Ledger
import qualified Cardano.Ledger.Coin as Ledger
import qualified Cardano.Ledger.Core as Ledger
import qualified Cardano.Ledger.Credential as Ledger
import qualified Cardano.Ledger.Hashes as Ledger
import qualified Cardano.Ledger.Keys as Ledger
import qualified Cardano.Ledger.Mary.Value as Ledger.Mary
import qualified Cardano.Ledger.PoolDistr as Ledger
import qualified Cardano.Ledger.SafeHash as Ledger
import qualified Cardano.Ledger.ShelleyMA.Timelocks as Ledger.Mary
import qualified Cardano.Ledger.TxIn as Ledger
import qualified Cardano.Ledger.Shelley.API.Wallet as Sh.Api
import qualified Cardano.Ledger.Shelley.PParams as Sh
import qualified Cardano.Ledger.Shelley.RewardProvenance as Sh
import qualified Cardano.Ledger.Shelley.TxBody as Sh
import qualified Cardano.Ledger.Shelley.UTxO as Sh
import qualified Codec.CBOR.Decoding as Cbor
import qualified Data.Sequence.Strict as StrictSeq
import qualified Ogmios.Data.Json.Allegra as Allegra
import qualified Ogmios.Data.Json.Alonzo as Alonzo
import qualified Ogmios.Data.Json.Babbage as Babbage
import qualified Ogmios.Data.Json.Mary as Mary
import qualified Ogmios.Data.Json.Shelley as Shelley
--
-- Types
--
data Query (f :: Type -> Type) block = Query
{ rawQuery :: Json.Value
, queryInEra :: QueryInEra f block
} deriving (Generic)
type QueryInEra f block =
SomeShelleyEra -> Maybe (SomeQuery f block)
data SomeQuery (f :: Type -> Type) block = forall result. SomeQuery
{ query :: LSQ.Query block result
, encodeResult :: SerializationMode -> result -> Json
, genResult :: Proxy result -> f result
}
instance Crypto crypto => FromJSON (Query Proxy (CardanoBlock crypto)) where
parseJSON = choice "query"
[ \raw -> Query raw <$> parseGetBlockHeight id raw
, \raw -> Query raw <$> parseGetChainTip id raw
, \raw -> Query raw <$> parseGetCurrentPParams (const id) raw
, \raw -> Query raw <$> parseGetEpochNo id raw
, \raw -> Query raw <$> parseGetEraStart id raw
, \raw -> Query raw <$> parseGetFilteredDelegationsAndRewards id raw
, \raw -> Query raw <$> parseGetGenesisConfig (const id) raw
, \raw -> Query raw <$> parseGetInterpreter id raw
, \raw -> Query raw <$> parseGetLedgerTip (const id) (const id) raw
, \raw -> Query raw <$> parseGetNonMyopicMemberRewards id raw
, \raw -> Query raw <$> parseGetPoolIds id raw
, \raw -> Query raw <$> parseGetPoolParameters id raw
, \raw -> Query raw <$> parseGetPoolsRanking id raw
, \raw -> Query raw <$> parseGetProposedPParamsUpdates (const id) raw
, \raw -> Query raw <$> parseGetRewardInfoPools id raw
, \raw -> Query raw <$> parseGetRewardProvenance id raw
, \raw -> Query raw <$> parseGetStakeDistribution id raw
, \raw -> Query raw <$> parseGetSystemStart id raw
, \raw -> Query raw <$> parseGetUTxO (const id) raw
, \raw -> Query raw <$> parseGetUTxOByAddress (const id) raw
, \raw -> Query raw <$> parseGetUTxOByTxIn (const id) raw
]
type QueryResult crypto result =
Either (MismatchEraInfo (CardanoEras crypto)) result
type GenResult crypto f t =
Proxy (QueryResult crypto t) -> f (QueryResult crypto t)
type Delegations crypto =
Map (Ledger.Credential 'Staking crypto) (Ledger.KeyHash 'StakePool crypto)
type RewardAccounts crypto =
Map (Ledger.Credential 'Staking crypto) Coin
type RewardProvenance' crypto =
( Sh.Api.RewardParams
, Map (Ledger.KeyHash 'StakePool crypto) (Sh.Api.RewardInfoPool)
)
--
-- SomeShelleyEra
--
data SomeShelleyEra =
forall era. SomeShelleyEra (ShelleyBasedEra era)
deriving instance Show SomeShelleyEra
instance ToJSON SomeShelleyEra where
toJSON = \case
SomeShelleyEra ShelleyBasedEraShelley -> toJSON @Text "Shelley"
SomeShelleyEra ShelleyBasedEraAllegra -> toJSON @Text "Allegra"
SomeShelleyEra ShelleyBasedEraMary -> toJSON @Text "Mary"
SomeShelleyEra ShelleyBasedEraAlonzo -> toJSON @Text "Alonzo"
SomeShelleyEra ShelleyBasedEraBabbage -> toJSON @Text "Babbage"
-- | Convert an 'EraIndex' to a Shelley-based era.
fromEraIndex
:: forall crypto. ()
=> EraIndex (CardanoEras crypto)
-> Maybe SomeShelleyEra
fromEraIndex = \case
EraIndex Z{} -> Nothing
EraIndex (S Z{}) -> Just (SomeShelleyEra ShelleyBasedEraShelley)
EraIndex (S (S Z{})) -> Just (SomeShelleyEra ShelleyBasedEraAllegra)
EraIndex (S (S (S Z{}))) -> Just (SomeShelleyEra ShelleyBasedEraMary)
EraIndex (S (S (S (S Z{})))) -> Just (SomeShelleyEra ShelleyBasedEraAlonzo)
EraIndex (S (S (S (S (S Z{}))))) -> Just (SomeShelleyEra ShelleyBasedEraBabbage)
--
-- Encoders
--
encodeBound
:: Bound
-> Json
encodeBound bound = encodeObject
[ ( "time", encodeRelativeTime (boundTime bound) )
, ( "slot", encodeSlotNo (boundSlot bound) )
, ( "epoch", encodeEpochNo (boundEpoch bound) )
]
encodeDelegationsAndRewards
:: Crypto crypto
=> SerializationMode
-> (Delegations crypto, RewardAccounts crypto)
-> Json
encodeDelegationsAndRewards mode (dlg, rwd) =
encodeMapWithMode mode Shelley.stringifyCredential id merge
where
merge = Map.merge whenDlgMissing whenRwdMissing whenBothPresent dlg rwd
whenDlgMissing = Map.mapMaybeMissing
(\_ v -> Just $ encodeObject
[ ( "delegate", Shelley.encodePoolId v )
]
)
whenRwdMissing = Map.mapMaybeMissing
(\_ v -> Just $ encodeObject
[ ( "rewards", encodeCoin v )
]
)
whenBothPresent = Map.zipWithAMatched
(\_ x y -> pure $ encodeObject
[ ( "delegate", Shelley.encodePoolId x )
, ( "rewards", encodeCoin y )
]
)
encodeDesirabilities
:: Crypto crypto
=> SerializationMode
-> Sh.RewardProvenance crypto
-> Json
encodeDesirabilities mode rp =
encodeMapWithMode mode Shelley.stringifyPoolId encodeDesirability (Sh.desirabilities rp)
where
encodeDesirability
:: Sh.Desirability
-> Json
encodeDesirability d =
encodeObject
[ ( "score", encodeDouble (Sh.desirabilityScore d) )
, ( "estimatedHitRate", encodeDouble (Sh.desirabilityScore d) )
]
encodeEraEnd
:: EraEnd
-> Json
encodeEraEnd = \case
EraEnd bound ->
encodeBound bound
EraUnbounded ->
encodeNull
encodeEraMismatch
:: EraMismatch
-> Json
encodeEraMismatch x = encodeObject
[ ( "eraMismatch", encodeObject
[ ( "ledgerEra"
, encodeText (ledgerEraName x)
)
, ( "queryEra"
, encodeText (otherEraName x)
)
]
)
]
encodeEraParams
:: EraParams
-> Json
encodeEraParams x = encodeObject
[ ( "epochLength", encodeEpochSize (eraEpochSize x) )
, ( "slotLength", encodeSlotLength (eraSlotLength x) )
, ( "safeZone", encodeSafeZone (eraSafeZone x) )
]
encodeEraSummary
:: EraSummary
-> Json
encodeEraSummary x = encodeObject
[ ( "start", encodeBound (eraStart x) )
, ( "end", encodeEraEnd (eraEnd x) )
, ( "parameters", encodeEraParams (eraParams x) )
]
encodeInterpreter
:: forall crypto eras. (eras ~ CardanoEras crypto)
=> Interpreter eras
-> Json
encodeInterpreter (deserialise @(Summary eras). serialise -> Summary eraSummaries) =
encodeFoldable encodeEraSummary (eraSummaries)
encodeMismatchEraInfo
:: MismatchEraInfo (CardanoEras crypto)
-> Json
encodeMismatchEraInfo =
encodeEraMismatch . mkEraMismatch
encodeNonMyopicMemberRewards
:: Crypto crypto
=> SerializationMode
-> NonMyopicMemberRewards crypto
-> Json
encodeNonMyopicMemberRewards mode (NonMyopicMemberRewards nonMyopicMemberRewards) =
encodeMapWithMode mode encodeKey encodeVal nonMyopicMemberRewards
where
encodeKey = either Shelley.stringifyCoin Shelley.stringifyCredential
encodeVal = encodeMapWithMode mode Shelley.stringifyPoolId encodeCoin
encodeOneEraHash
:: OneEraHash eras
-> Json
encodeOneEraHash =
encodeShortByteString encodeByteStringBase16 . getOneEraHash
encodePoint
:: Point (CardanoBlock crypto)
-> Json
encodePoint = \case
Point Origin -> encodeText "origin"
Point (At x) -> encodeObject
[ ( "slot"
, encodeSlotNo (blockPointSlot x)
)
, ( "hash"
, encodeOneEraHash (blockPointHash x)
)
]
encodePoolDistr
:: forall crypto. Crypto crypto
=> SerializationMode
-> Ledger.PoolDistr crypto
-> Json
encodePoolDistr mode
= encodeMapWithMode mode Shelley.stringifyPoolId encodeIndividualPoolStake
. Ledger.unPoolDistr
where
encodeIndividualPoolStake
:: Ledger.IndividualPoolStake crypto
-> Json
encodeIndividualPoolStake x = encodeObject
[ ( "stake"
, encodeRational (Ledger.individualPoolStake x)
)
, ( "vrf"
, Shelley.encodeHash (Ledger.individualPoolStakeVrf x)
)
]
encodePoolParameters
:: Crypto crypto
=> SerializationMode
-> Map (Ledger.KeyHash 'StakePool crypto) (Sh.PoolParams crypto)
-> Json
encodePoolParameters mode =
encodeMapWithMode mode Shelley.stringifyPoolId Shelley.encodePoolParams
encodeRewardInfoPool
:: Sh.Api.RewardInfoPool
-> Json
encodeRewardInfoPool info =
encodeObject
[ ( "stake"
, encodeCoin (Sh.Api.stake info)
)
, ( "ownerStake"
, encodeCoin (Sh.Api.ownerStake info)
)
, ( "approximatePerformance"
, encodeDouble (Sh.Api.performanceEstimate info)
)
, ( "poolParameters"
, encodeObject
[ ( "cost"
, encodeCoin (Sh.Api.cost info)
)
, ( "margin"
, encodeUnitInterval (Sh.Api.margin info)
)
, ( "pledge"
, encodeCoin (Sh.Api.ownerPledge info)
)
]
)
]
encodeRewardInfoPools
:: Crypto crypto
=> RewardProvenance' crypto
-> Json
encodeRewardInfoPools (rp, pools) =
encodeObject
[ ( "desiredNumberOfPools"
, encodeNatural (Sh.Api.nOpt rp)
)
, ( "poolInfluence"
, encodeNonNegativeInterval (Sh.Api.a0 rp)
)
, ( "totalRewards"
, encodeCoin (Sh.Api.rPot rp)
)
, ( "activeStake"
, encodeCoin (Sh.Api.totalStake rp)
)
, ( "pools"
, encodeMap Shelley.stringifyPoolId encodeRewardInfoPool pools
)
]
encodeRewardProvenance
:: forall crypto. Crypto crypto
=> SerializationMode
-> Sh.RewardProvenance crypto
-> Json
encodeRewardProvenance mode rp =
encodeObjectWithMode mode
[ ( "epochLength"
, encodeWord64 (Sh.spe rp)
)
, ( "decentralizationParameter"
, encodeRational (Sh.d rp)
)
, ( "maxLovelaceSupply"
, encodeCoin (Sh.maxLL rp)
)
, ( "totalMintedBlocks"
, encodeInteger (Sh.blocksCount rp)
)
, ( "totalExpectedBlocks"
, encodeInteger (Sh.expBlocks rp)
)
, ( "incentive"
, encodeCoin (Sh.deltaR1 rp)
)
, ( "rewardsGap"
, encodeCoin (Sh.deltaR2 rp)
)
, ( "availableRewards"
, encodeCoin (Sh.r rp)
)
, ( "totalRewards"
, encodeCoin (Sh.rPot rp)
)
, ( "treasuryTax"
, encodeCoin (Sh.deltaT1 rp)
)
, ( "activeStake"
, encodeCoin (Sh.activeStake rp)
)
]
[ ( "pools"
, encodeMap Shelley.stringifyPoolId encodeRewardProvenancePool (Sh.pools rp)
)
, ( "mintedBlocks"
, encodeMap Shelley.stringifyPoolId encodeNatural (Ledger.unBlocksMade $ Sh.blocks rp)
)
]
where
encodeRewardProvenancePool
:: Sh.RewardProvenancePool crypto
-> Json
encodeRewardProvenancePool rpp =
encodeObject
[ ( "totalMintedBlocks"
, encodeNatural (Sh.poolBlocksP rpp)
)
, ( "totalStakeShare"
, encodeRational (Sh.sigmaP rpp)
)
, ( "activeStakeShare"
, encodeRational (Sh.sigmaAP rpp)
)
, ( "ownerStake"
, encodeCoin (Sh.ownerStakeP rpp)
)
, ( "parameters"
, Shelley.encodePoolParams (Sh.poolParamsP rpp)
)
, ( "pledgeRatio"
, encodeRational (Sh.pledgeRatioP rpp)
)
, ( "maxRewards"
, encodeCoin (Sh.maxPP rpp)
)
, ( "apparentPerformance"
, encodeRational (Sh.appPerfP rpp)
)
, ( "totalRewards"
, encodeCoin (Sh.poolRP rpp)
)
, ( "leaderRewards"
, encodeCoin (Sh.lRewardP rpp)
)
]
encodeSafeZone
:: SafeZone
-> Json
encodeSafeZone = \case
StandardSafeZone k ->
encodeWord64 k
UnsafeIndefiniteSafeZone ->
encodeNull
--
-- Parsers (Queries)
--
parseGetBlockHeight
:: forall crypto f. ()
=> (Proxy (WithOrigin BlockNo) -> f (WithOrigin BlockNo))
-> Json.Value
-> Json.Parser (QueryInEra f (CardanoBlock crypto))
parseGetBlockHeight genResult =
Json.withText "SomeQuery" $ \text -> do
guard (text == "blockHeight")
pure $ const $ Just $ SomeQuery
{ query = LSQ.GetChainBlockNo
, genResult
, encodeResult = const (encodeWithOrigin encodeBlockNo)
}
parseGetChainTip
:: forall crypto f. ()
=> (Proxy (Point (CardanoBlock crypto)) -> f (Point (CardanoBlock crypto)))
-> Json.Value
-> Json.Parser (QueryInEra f (CardanoBlock crypto))
parseGetChainTip genResult =
Json.withText "SomeQuery" $ \text -> do
guard (text == "chainTip")
pure $ const $ Just $ SomeQuery
{ query = LSQ.GetChainPoint
, genResult
, encodeResult = const encodePoint
}
parseGetEraStart
:: forall crypto f. ()
=> (Proxy (Maybe Bound) -> f (Maybe Bound))
-> Json.Value
-> Json.Parser (QueryInEra f (CardanoBlock crypto))
parseGetEraStart genResult =
Json.withText "SomeQuery" $ \text -> do
guard (text == "eraStart") $>
( \query -> Just $ SomeQuery
{ query
, genResult
, encodeResult = const (encodeMaybe encodeBound)
}
)
.
( \case
SomeShelleyEra ShelleyBasedEraShelley ->
LSQ.BlockQuery $ QueryAnytimeShelley GetEraStart
SomeShelleyEra ShelleyBasedEraAllegra ->
LSQ.BlockQuery $ QueryAnytimeAllegra GetEraStart
SomeShelleyEra ShelleyBasedEraMary ->
LSQ.BlockQuery $ QueryAnytimeMary GetEraStart
SomeShelleyEra ShelleyBasedEraAlonzo ->
LSQ.BlockQuery $ QueryAnytimeAlonzo GetEraStart
SomeShelleyEra ShelleyBasedEraBabbage ->
LSQ.BlockQuery $ QueryAnytimeBabbage GetEraStart
)
parseGetLedgerTip
:: forall crypto f. (Crypto crypto)
=> (forall era. Typeable era => Proxy era -> GenResult crypto f (Point (ShelleyBlock (TPraos crypto) era)))
-> (forall era. Typeable era => Proxy era -> GenResult crypto f (Point (ShelleyBlock (Praos crypto) era)))
-> Json.Value
-> Json.Parser (QueryInEra f (CardanoBlock crypto))
parseGetLedgerTip genResultInEraTPraos genResultInEraPraos =
Json.withText "SomeQuery" $ \text -> do
guard (text == "ledgerTip") $> \case
SomeShelleyEra ShelleyBasedEraShelley ->
Just $ SomeQuery
{ query =
LSQ.BlockQuery $ QueryIfCurrentShelley GetLedgerTip
, encodeResult =
const (either encodeMismatchEraInfo (encodePoint . castPoint))
, genResult =
genResultInEraTPraos (Proxy @(ShelleyEra crypto))
}
SomeShelleyEra ShelleyBasedEraAllegra ->
Just $ SomeQuery
{ query =
LSQ.BlockQuery $ QueryIfCurrentAllegra GetLedgerTip
, encodeResult =
const (either encodeMismatchEraInfo (encodePoint . castPoint))
, genResult =
genResultInEraTPraos (Proxy @(AllegraEra crypto))
}
SomeShelleyEra ShelleyBasedEraMary ->
Just $ SomeQuery
{ query =
LSQ.BlockQuery $ QueryIfCurrentMary GetLedgerTip
, encodeResult =
const (either encodeMismatchEraInfo (encodePoint . castPoint))
, genResult =
genResultInEraTPraos (Proxy @(MaryEra crypto))
}
SomeShelleyEra ShelleyBasedEraAlonzo ->
Just $ SomeQuery
{ query =
LSQ.BlockQuery $ QueryIfCurrentAlonzo GetLedgerTip
, encodeResult =
const (either encodeMismatchEraInfo (encodePoint . castPoint))
, genResult =
genResultInEraTPraos (Proxy @(AlonzoEra crypto))
}
SomeShelleyEra ShelleyBasedEraBabbage ->
Just $ SomeQuery
{ query =
LSQ.BlockQuery $ QueryIfCurrentBabbage GetLedgerTip
, encodeResult =
const (either encodeMismatchEraInfo (encodePoint . castPoint @(Praos crypto)))
, genResult =
genResultInEraPraos (Proxy @(BabbageEra crypto))
}
parseGetEpochNo
:: forall crypto f. ()
=> GenResult crypto f EpochNo
-> Json.Value
-> Json.Parser (QueryInEra f (CardanoBlock crypto))
parseGetEpochNo genResult =
Json.withText "SomeQuery" $ \text -> do
guard (text == "currentEpoch") $>
( \query -> Just $ SomeQuery
{ query
, genResult
, encodeResult =
const (either encodeMismatchEraInfo encodeEpochNo)
}
)
.
( \case
SomeShelleyEra ShelleyBasedEraShelley ->
LSQ.BlockQuery $ QueryIfCurrentShelley GetEpochNo
SomeShelleyEra ShelleyBasedEraAllegra ->
LSQ.BlockQuery $ QueryIfCurrentAllegra GetEpochNo
SomeShelleyEra ShelleyBasedEraMary ->
LSQ.BlockQuery $ QueryIfCurrentMary GetEpochNo
SomeShelleyEra ShelleyBasedEraAlonzo ->
LSQ.BlockQuery $ QueryIfCurrentAlonzo GetEpochNo
SomeShelleyEra ShelleyBasedEraBabbage ->
LSQ.BlockQuery $ QueryIfCurrentBabbage GetEpochNo
)
parseGetNonMyopicMemberRewards
:: forall crypto f. (Crypto crypto)
=> GenResult crypto f (NonMyopicMemberRewards crypto)
-> Json.Value
-> Json.Parser (QueryInEra f (CardanoBlock crypto))
parseGetNonMyopicMemberRewards genResult =
Json.withObject "SomeQuery" $ \obj -> do
credentials <- decodeCredentials obj
pure $
( \query -> Just $ SomeQuery
{ query
, genResult
, encodeResult =
either encodeMismatchEraInfo . encodeNonMyopicMemberRewards
}
)
.
( \case
SomeShelleyEra ShelleyBasedEraShelley ->
LSQ.BlockQuery $ QueryIfCurrentShelley (GetNonMyopicMemberRewards credentials)
SomeShelleyEra ShelleyBasedEraAllegra ->
LSQ.BlockQuery $ QueryIfCurrentAllegra (GetNonMyopicMemberRewards credentials)
SomeShelleyEra ShelleyBasedEraMary ->
LSQ.BlockQuery $ QueryIfCurrentMary (GetNonMyopicMemberRewards credentials)
SomeShelleyEra ShelleyBasedEraAlonzo ->
LSQ.BlockQuery $ QueryIfCurrentAlonzo (GetNonMyopicMemberRewards credentials)
SomeShelleyEra ShelleyBasedEraBabbage ->
LSQ.BlockQuery $ QueryIfCurrentBabbage (GetNonMyopicMemberRewards credentials)
)
where
decodeCredentials
:: Json.Object
-> Json.Parser (Set (Either Ledger.Coin (Ledger.Credential 'Staking crypto)))
decodeCredentials obj = fmap fromList $
obj .: "nonMyopicMemberRewards" >>= traverse
(choice "credential"
[ fmap Left . decodeCoin
, fmap Right . decodeCredential
]
)
parseGetFilteredDelegationsAndRewards
:: forall crypto f. (Crypto crypto)
=> GenResult crypto f (Delegations crypto, RewardAccounts crypto)
-> Json.Value
-> Json.Parser (QueryInEra f (CardanoBlock crypto))
parseGetFilteredDelegationsAndRewards genResult =
Json.withObject "SomeQuery" $ \obj -> do
credentials <- decodeCredentials obj
pure $
( \query -> Just $ SomeQuery
{ query
, genResult
, encodeResult =
either encodeMismatchEraInfo . encodeDelegationsAndRewards
}
)
.
( \case
SomeShelleyEra ShelleyBasedEraShelley ->
LSQ.BlockQuery $ QueryIfCurrentShelley (GetFilteredDelegationsAndRewardAccounts credentials)
SomeShelleyEra ShelleyBasedEraAllegra ->
LSQ.BlockQuery $ QueryIfCurrentAllegra (GetFilteredDelegationsAndRewardAccounts credentials)
SomeShelleyEra ShelleyBasedEraMary ->
LSQ.BlockQuery $ QueryIfCurrentMary (GetFilteredDelegationsAndRewardAccounts credentials)
SomeShelleyEra ShelleyBasedEraAlonzo ->
LSQ.BlockQuery $ QueryIfCurrentAlonzo (GetFilteredDelegationsAndRewardAccounts credentials)
SomeShelleyEra ShelleyBasedEraBabbage ->
LSQ.BlockQuery $ QueryIfCurrentBabbage (GetFilteredDelegationsAndRewardAccounts credentials)
)
where
decodeCredentials
:: Json.Object
-> Json.Parser (Set (Ledger.Credential 'Staking crypto))
decodeCredentials obj = fmap fromList $
obj .: "delegationsAndRewards" >>= traverse decodeCredential
parseGetCurrentPParams
:: forall crypto f. (Typeable crypto)
=> (forall era. Typeable era => Proxy era -> GenResult crypto f (Ledger.PParams era))
-> Json.Value
-> Json.Parser (QueryInEra f (CardanoBlock crypto))
parseGetCurrentPParams genResultInEra =
Json.withText "SomeQuery" $ \text -> do
guard (text == "currentProtocolParameters") $> \case
SomeShelleyEra ShelleyBasedEraShelley ->
Just $ SomeQuery
{ query =
LSQ.BlockQuery $ QueryIfCurrentShelley GetCurrentPParams
, encodeResult =
const (either encodeMismatchEraInfo (Shelley.encodePParams' id))
, genResult =
genResultInEra (Proxy @(ShelleyEra crypto))
}
SomeShelleyEra ShelleyBasedEraAllegra ->
Just $ SomeQuery
{ query =
LSQ.BlockQuery $ QueryIfCurrentAllegra GetCurrentPParams
, encodeResult =
const (either encodeMismatchEraInfo (Allegra.encodePParams' id))
, genResult =
genResultInEra (Proxy @(AllegraEra crypto))
}
SomeShelleyEra ShelleyBasedEraMary ->
Just $ SomeQuery
{ query =
LSQ.BlockQuery $ QueryIfCurrentMary GetCurrentPParams
, encodeResult =
const (either encodeMismatchEraInfo (Mary.encodePParams' id))
, genResult =
genResultInEra (Proxy @(MaryEra crypto))
}
SomeShelleyEra ShelleyBasedEraAlonzo ->
Just $ SomeQuery
{ query =
LSQ.BlockQuery $ QueryIfCurrentAlonzo GetCurrentPParams
, encodeResult =
const (either encodeMismatchEraInfo (Alonzo.encodePParams' id))
, genResult =
genResultInEra (Proxy @(AlonzoEra crypto))
}
SomeShelleyEra ShelleyBasedEraBabbage ->
Just $ SomeQuery
{ query =
LSQ.BlockQuery $ QueryIfCurrentBabbage GetCurrentPParams
, encodeResult =
const (either encodeMismatchEraInfo (Babbage.encodePParams' id))
, genResult =
genResultInEra (Proxy @(BabbageEra crypto))
}
parseGetProposedPParamsUpdates
:: forall crypto f. (Crypto crypto)
=> (forall era. Typeable era => Proxy era -> GenResult crypto f (Sh.ProposedPPUpdates era))
-> Json.Value
-> Json.Parser (QueryInEra f (CardanoBlock crypto))
parseGetProposedPParamsUpdates genResultInEra =
Json.withText "SomeQuery" $ \text -> do
guard (text == "proposedProtocolParameters") $> \case
SomeShelleyEra ShelleyBasedEraShelley ->
Just $ SomeQuery
{ query =
LSQ.BlockQuery $ QueryIfCurrentShelley GetProposedPParamsUpdates
, encodeResult =