├── .git-blame-ignore-revs ├── .gitattributes ├── .github ├── ISSUE_TEMPLATE │ ├── bug_report.md │ └── feature_request.md ├── PULL_REQUEST_TEMPLATE.md ├── dependabot.yml └── workflows │ ├── cabal.project.default.local │ ├── cabal.project.no-thunks.local │ ├── checks.yml │ ├── ci.yml │ └── documentation.yml ├── .gitignore ├── .hlint.yaml ├── CHANGELOG.md ├── CODEOWNERS ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── LICENSE ├── NOTICE ├── README.md ├── SECURITY.md ├── asserts.cabal ├── cabal.project ├── default.nix ├── docs ├── agda-spec │ ├── .gitignore │ ├── Makefile │ ├── README.md │ └── src │ │ ├── .gitignore │ │ ├── Axiom │ │ ├── Set.agda │ │ └── Set │ │ │ ├── Factor.agda │ │ │ ├── List.agda │ │ │ ├── Map.agda │ │ │ ├── Map │ │ │ └── Dec.agda │ │ │ ├── Properties.agda │ │ │ ├── Rel.agda │ │ │ ├── Sum.agda │ │ │ ├── TotalMap.agda │ │ │ └── TotalMapOn.agda │ │ ├── Data │ │ ├── Integer │ │ │ └── Ext.agda │ │ ├── List │ │ │ ├── Ext.agda │ │ │ ├── Ext │ │ │ │ └── Properties.agda │ │ │ └── Relation │ │ │ │ ├── Binary │ │ │ │ └── Sublist │ │ │ │ │ └── Ext.agda │ │ │ │ └── Unary │ │ │ │ ├── MOf.agda │ │ │ │ └── Unique │ │ │ │ └── Propositional │ │ │ │ └── Properties │ │ │ │ └── WithK.agda │ │ ├── Maybe │ │ │ └── Properties │ │ │ │ └── Ext.agda │ │ ├── Nat │ │ │ └── Properties │ │ │ │ └── Ext.agda │ │ ├── Product │ │ │ ├── Ext.agda │ │ │ └── Properties │ │ │ │ └── Ext.agda │ │ ├── Rational │ │ │ └── Ext.agda │ │ └── Relation │ │ │ └── Nullary │ │ │ └── Decidable │ │ │ └── Ext.agda │ │ ├── Everything.agda │ │ ├── Foreign │ │ ├── Convertible.agda │ │ ├── Convertible │ │ │ ├── Deriving.agda │ │ │ └── DerivingTest.agda │ │ ├── HaskellTypes.agda │ │ └── HaskellTypes │ │ │ └── Deriving.agda │ │ ├── Interface │ │ ├── ComputationalRelation.agda │ │ ├── HasAdd.agda │ │ ├── HasAdd │ │ │ └── Instance.agda │ │ ├── HasEmptySet.agda │ │ ├── HasEmptySet │ │ │ └── Instances.agda │ │ ├── HasOrder.agda │ │ ├── HasOrder │ │ │ └── Instance.agda │ │ ├── HasSingleton.agda │ │ ├── HasSubtract.agda │ │ ├── HasSubtract │ │ │ └── Instance.agda │ │ ├── Hashable.agda │ │ ├── IsCommutativeMonoid.agda │ │ ├── IsSet.agda │ │ ├── STS.agda │ │ └── ToBool.agda │ │ ├── InterfaceLibrary │ │ ├── Common │ │ │ └── BaseTypes.agda │ │ └── Ledger.lagda │ │ ├── Ledger │ │ ├── Abstract.agda │ │ ├── BaseTypes.lagda │ │ ├── Crypto.lagda │ │ ├── Interface │ │ │ └── HasCoin.agda │ │ ├── PParams.lagda │ │ ├── Prelude.agda │ │ ├── Prelude │ │ │ └── Base.agda │ │ ├── Set.agda │ │ ├── Set │ │ │ ├── HashMap.agda │ │ │ └── Theory.agda │ │ └── Types │ │ │ └── Epoch.agda │ │ ├── Makefile │ │ ├── MyDebugOptions.agda │ │ ├── Prelude.agda │ │ ├── PreludeMeta.agda │ │ ├── Reflection │ │ └── Ext.agda │ │ ├── Spec │ │ ├── BaseTypes.lagda │ │ ├── BlockDefinitions.lagda │ │ ├── ChainHead.lagda │ │ ├── ChainHead │ │ │ └── Properties.agda │ │ ├── Foreign │ │ │ ├── ExternalFunctions.agda │ │ │ ├── HSConsensus.agda │ │ │ ├── HSConsensus │ │ │ │ ├── BaseTypes.agda │ │ │ │ ├── BlockDefinitions.agda │ │ │ │ ├── ChainHead.agda │ │ │ │ ├── Core.agda │ │ │ │ ├── ExternalStructures.agda │ │ │ │ ├── OperationalCertificate.agda │ │ │ │ ├── Protocol.agda │ │ │ │ ├── TickForecast.agda │ │ │ │ ├── TickNonce.agda │ │ │ │ └── UpdateNonce.agda │ │ │ ├── HSTypes.agda │ │ │ └── Util.agda │ │ ├── OperationalCertificate.lagda │ │ ├── OperationalCertificate │ │ │ └── Properties.agda │ │ ├── PDF.lagda │ │ ├── Protocol.lagda │ │ ├── Protocol │ │ │ └── Properties.agda │ │ ├── TickForecast.lagda │ │ ├── TickForecast │ │ │ └── Properties.agda │ │ ├── TickNonce.lagda │ │ ├── TickNonce │ │ │ └── Properties.agda │ │ ├── UpdateNonce.lagda │ │ ├── UpdateNonce │ │ │ └── Properties.agda │ │ └── hs-src │ │ │ ├── LICENSE │ │ │ ├── Lib.hs │ │ │ ├── NOTICE │ │ │ ├── cabal.project │ │ │ ├── cardano-consensus-executable-spec.cabal │ │ │ └── test │ │ │ ├── ChainHeadSpec.hs │ │ │ ├── OperationalCertificateSpec.hs │ │ │ ├── ProtocolSpec.hs │ │ │ ├── Spec.hs │ │ │ ├── TickForecastSpec.hs │ │ │ ├── TickNonceSpec.hs │ │ │ └── UpdateNonceSpec.hs │ │ ├── Tactic │ │ ├── DeriveComp.agda │ │ ├── GenError.agda │ │ ├── Inline.agda │ │ ├── MonoidSolver │ │ │ └── NonNormalising.agda │ │ ├── Premises.agda │ │ └── Substitute.agda │ │ ├── formal-consensus.agda-lib │ │ └── latex │ │ ├── IOHKCoverPage.sty │ │ ├── agda-latex-macros.sty │ │ ├── agda.sty │ │ ├── blockchain.tex │ │ ├── fonts │ │ ├── StrippedJuliaMono-Black.ttf │ │ ├── StrippedJuliaMono-BlackItalic.ttf │ │ ├── StrippedJuliaMono-Bold.ttf │ │ ├── StrippedJuliaMono-BoldItalic.ttf │ │ ├── StrippedJuliaMono-BoldLatin.ttf │ │ ├── StrippedJuliaMono-ExtraBold.ttf │ │ ├── StrippedJuliaMono-ExtraBoldItalic.ttf │ │ ├── StrippedJuliaMono-Light.ttf │ │ ├── StrippedJuliaMono-LightItalic.ttf │ │ ├── StrippedJuliaMono-Medium.ttf │ │ ├── StrippedJuliaMono-MediumItalic.ttf │ │ ├── StrippedJuliaMono-Regular.ttf │ │ ├── StrippedJuliaMono-RegularItalic.ttf │ │ ├── StrippedJuliaMono-RegularLatin.ttf │ │ ├── StrippedJuliaMono-SemiBold.ttf │ │ └── StrippedJuliaMono-SemiBoldItalic.ttf │ │ ├── frontmatter.tex │ │ ├── iohk-share-logo.jpg │ │ ├── iohk.sty │ │ ├── leader-value.tex │ │ ├── ledger-interface.tex │ │ ├── properties.tex │ │ ├── references.bib │ │ ├── rules.dot │ │ ├── rules.pdf │ │ └── sts-overview.tex ├── formal-spec │ ├── .gitignore │ ├── IOHKCoverPage.sty │ ├── Makefile │ ├── chain.tex │ ├── common-interface.tex │ ├── consensus-spec.bbl │ ├── consensus-spec.tex │ ├── crypto-details.tex │ ├── frontmatter.tex │ ├── habbrv.bst │ ├── iohk-share-logo.jpg │ ├── iohk.sty │ ├── leader-value.tex │ ├── properties.tex │ ├── rules.dot │ ├── rules.pdf │ └── sts-overview.tex ├── tech-reports │ ├── report │ │ ├── .gitignore │ │ ├── chapters │ │ │ ├── appendix │ │ │ │ ├── byron.tex │ │ │ │ └── shelley.tex │ │ │ ├── conclusions │ │ │ │ ├── conclusions.tex │ │ │ │ └── technical.tex │ │ │ ├── consensus │ │ │ │ ├── ledger.tex │ │ │ │ ├── protocol.tex │ │ │ │ └── serialisation.tex │ │ │ ├── future │ │ │ │ ├── ebbs.tex │ │ │ │ ├── genesis.tex │ │ │ │ ├── lowdensity.tex │ │ │ │ └── misc.tex │ │ │ ├── hfc │ │ │ │ ├── misc.tex │ │ │ │ ├── overview.tex │ │ │ │ └── time.tex │ │ │ ├── intro │ │ │ │ ├── intro.tex │ │ │ │ ├── nonfunctional.tex │ │ │ │ └── overview.tex │ │ │ ├── miniprotocols │ │ │ │ ├── chainsyncclient.tex │ │ │ │ └── servers.tex │ │ │ ├── storage │ │ │ │ ├── chaindb.tex │ │ │ │ ├── chainselection.tex │ │ │ │ ├── immutabledb.tex │ │ │ │ ├── ledgerdb.tex │ │ │ │ ├── mempool.tex │ │ │ │ ├── overview.tex │ │ │ │ └── volatiledb.tex │ │ │ └── testing │ │ │ │ ├── consensus.tex │ │ │ │ └── storage.tex │ │ ├── cleanbuild.sh │ │ ├── presentations │ │ │ ├── genesis-2.0.tex │ │ │ └── genesis.tex │ │ ├── references.bib │ │ ├── report.dict │ │ ├── report.tex │ │ ├── spellcheck.sh │ │ ├── unsoundswitch │ │ │ ├── LICENSE │ │ │ ├── NOTICE │ │ │ ├── UnsoundSwitch.hs │ │ │ ├── cabal.project │ │ │ └── unsoundswitch.cabal │ │ └── watch.sh │ ├── utxo-db-lsm │ │ ├── Makefile │ │ ├── utxo-db-lsm.bib │ │ └── utxo-db-lsm.tex │ └── utxo-db │ │ ├── Makefile │ │ ├── img │ │ └── hstore-anticaching-fig1.png │ │ ├── utxo-db-api.tex │ │ ├── utxo-db.bib │ │ └── utxo-db.tex └── website │ ├── README.md │ ├── babel.config.js │ ├── contents │ ├── about-ouroboros │ │ ├── References.md │ │ └── index.md │ └── for-developers │ │ ├── AbstractProtocol.md │ │ ├── AddingAnEra.md │ │ ├── Benchmarks.md │ │ ├── BlockBlockDiagram.md │ │ ├── BootstrapPeersIER.md │ │ ├── CardanoPraosBasics.md │ │ ├── ChainSync.md │ │ ├── CivicTime.md │ │ ├── ComponentDiagram.md │ │ ├── EraTransitionGovernance.md │ │ ├── Genesis.md │ │ ├── GitProcess.md │ │ ├── Glossary.md │ │ ├── HandlingBlocksFromTheFuture.md │ │ ├── HardWonWisdom.md │ │ ├── NodeTasks.md │ │ ├── PreflightGuide.md │ │ ├── PreflightGuide │ │ ├── plot-active-slots.png │ │ ├── plot-grinding.png │ │ ├── plot-pooltool-slot-battles.png │ │ ├── plot-single-slot-leaders.png │ │ └── plot.py │ │ ├── ProfilingTipsAndTricks.md │ │ ├── QueryVersioning.md │ │ ├── ReleaseProcess.md │ │ ├── SanityChecks.md │ │ ├── StyleGuide.md │ │ ├── TechnicalReports.md │ │ ├── Ticking.md │ │ ├── VersioningSchemeDecision.md │ │ ├── index.md │ │ └── utxo-hd │ │ ├── Overview.md │ │ ├── future-ledger-hd.md │ │ ├── migrating.mdx │ │ └── utxo-hd-in-depth.md │ ├── docusaurus.config.js │ ├── package.json │ ├── sidebars.js │ ├── src │ ├── components │ │ └── HomepageFeatures │ │ │ ├── index.js │ │ │ └── styles.module.css │ ├── css │ │ └── custom.css │ └── pages │ │ ├── index.js │ │ ├── index.module.css │ │ └── markdown-page.md │ ├── static │ ├── .nojekyll │ └── img │ │ ├── cardano_icon.ico │ │ ├── favicon.ico │ │ ├── logo.svg │ │ └── ouroboros-image.webp │ └── yarn.lock ├── flake.lock ├── flake.nix ├── fourmolu.yaml ├── hie.yaml ├── nix ├── agda.nix ├── ci.nix ├── formatting-linting.nix ├── haskell.nix ├── pdfs.nix ├── shell.nix └── tools.nix ├── ouroboros-consensus-cardano ├── CHANGELOG.md ├── LICENSE ├── NOTICE ├── README.md ├── app │ ├── DBAnalyser │ │ └── Parsers.hs │ ├── DBSynthesizer │ │ └── Parsers.hs │ ├── DBTruncater │ │ └── Parsers.hs │ ├── GenHeader │ │ └── Parsers.hs │ ├── db-analyser.hs │ ├── db-immutaliser.hs │ ├── db-synthesizer.hs │ ├── db-truncater.hs │ ├── gen-header.hs │ ├── immdb-server.hs │ └── snapshot-converter.hs ├── changelog.d │ ├── 20250528_163220_javier.sagredo_blockprotocol.md │ └── scriv.ini ├── golden │ ├── byron │ │ ├── ByronNodeToNodeVersion2 │ │ │ ├── Block_EBB │ │ │ ├── Block_regular │ │ │ ├── GenTx │ │ │ ├── GenTxId │ │ │ ├── Header_EBB │ │ │ ├── Header_regular │ │ │ ├── SerialisedBlock_EBB │ │ │ ├── SerialisedBlock_regular │ │ │ ├── SerialisedHeader_EBB │ │ │ └── SerialisedHeader_regular │ │ ├── QueryVersion2 │ │ │ └── ByronNodeToClientVersion1 │ │ │ │ ├── ApplyTxErr │ │ │ │ ├── Block_EBB │ │ │ │ ├── Block_regular │ │ │ │ ├── GenTx │ │ │ │ ├── GenTxId │ │ │ │ ├── LedgerConfig │ │ │ │ ├── Query │ │ │ │ ├── Result │ │ │ │ ├── SerialisedBlock_EBB │ │ │ │ ├── SerialisedBlock_regular │ │ │ │ └── SlotNo │ │ ├── QueryVersion3 │ │ │ └── ByronNodeToClientVersion1 │ │ │ │ ├── ApplyTxErr │ │ │ │ ├── Block_EBB │ │ │ │ ├── Block_regular │ │ │ │ ├── GenTx │ │ │ │ ├── GenTxId │ │ │ │ ├── LedgerConfig │ │ │ │ ├── Query │ │ │ │ ├── Result │ │ │ │ ├── SerialisedBlock_EBB │ │ │ │ ├── SerialisedBlock_regular │ │ │ │ └── SlotNo │ │ └── disk │ │ │ ├── AnnTip │ │ │ ├── Block_EBB │ │ │ ├── Block_regular │ │ │ ├── ChainDepState │ │ │ ├── ExtLedgerState │ │ │ ├── HeaderHash │ │ │ ├── LedgerState │ │ │ └── LedgerTables │ ├── cardano │ │ ├── CardanoNodeToNodeVersion2 │ │ │ ├── Block_Allegra │ │ │ ├── Block_Alonzo │ │ │ ├── Block_Babbage │ │ │ ├── Block_Byron_EBB │ │ │ ├── Block_Byron_regular │ │ │ ├── Block_Conway │ │ │ ├── Block_Mary │ │ │ ├── Block_Shelley │ │ │ ├── GenTxId_Allegra │ │ │ ├── GenTxId_Alonzo │ │ │ ├── GenTxId_Babbage │ │ │ ├── GenTxId_Byron │ │ │ ├── GenTxId_Conway │ │ │ ├── GenTxId_Mary │ │ │ ├── GenTxId_Shelley │ │ │ ├── GenTx_Allegra │ │ │ ├── GenTx_Alonzo │ │ │ ├── GenTx_Babbage │ │ │ ├── GenTx_Byron │ │ │ ├── GenTx_Conway │ │ │ ├── GenTx_Mary │ │ │ ├── GenTx_Shelley │ │ │ ├── Header_Allegra │ │ │ ├── Header_Alonzo │ │ │ ├── Header_Babbage │ │ │ ├── Header_Byron_EBB │ │ │ ├── Header_Byron_regular │ │ │ ├── Header_Conway │ │ │ ├── Header_Mary │ │ │ ├── Header_Shelley │ │ │ ├── SerialisedBlock_Allegra │ │ │ ├── SerialisedBlock_Alonzo │ │ │ ├── SerialisedBlock_Babbage │ │ │ ├── SerialisedBlock_Byron_EBB │ │ │ ├── SerialisedBlock_Byron_regular │ │ │ ├── SerialisedBlock_Conway │ │ │ ├── SerialisedBlock_Mary │ │ │ ├── SerialisedBlock_Shelley │ │ │ ├── SerialisedHeader_Allegra │ │ │ ├── SerialisedHeader_Alonzo │ │ │ ├── SerialisedHeader_Babbage │ │ │ ├── SerialisedHeader_Byron_EBB │ │ │ ├── SerialisedHeader_Byron_regular │ │ │ ├── SerialisedHeader_Conway │ │ │ ├── SerialisedHeader_Mary │ │ │ └── SerialisedHeader_Shelley │ │ ├── QueryVersion2 │ │ │ ├── CardanoNodeToClientVersion12 │ │ │ │ ├── ApplyTxErr_Allegra │ │ │ │ ├── ApplyTxErr_Alonzo │ │ │ │ ├── ApplyTxErr_Babbage │ │ │ │ ├── ApplyTxErr_Byron │ │ │ │ ├── ApplyTxErr_Conway │ │ │ │ ├── ApplyTxErr_Mary │ │ │ │ ├── ApplyTxErr_Shelley │ │ │ │ ├── ApplyTxErr_WrongEraByron │ │ │ │ ├── ApplyTxErr_WrongEraShelley │ │ │ │ ├── Block_Allegra │ │ │ │ ├── Block_Alonzo │ │ │ │ ├── Block_Babbage │ │ │ │ ├── Block_Byron_EBB │ │ │ │ ├── Block_Byron_regular │ │ │ │ ├── Block_Conway │ │ │ │ ├── Block_Mary │ │ │ │ ├── Block_Shelley │ │ │ │ ├── GenTxId_Allegra │ │ │ │ ├── GenTxId_Alonzo │ │ │ │ ├── GenTxId_Babbage │ │ │ │ ├── GenTxId_Byron │ │ │ │ ├── GenTxId_Conway │ │ │ │ ├── GenTxId_Mary │ │ │ │ ├── GenTxId_Shelley │ │ │ │ ├── GenTx_Allegra │ │ │ │ ├── GenTx_Alonzo │ │ │ │ ├── GenTx_Babbage │ │ │ │ ├── GenTx_Byron │ │ │ │ ├── GenTx_Conway │ │ │ │ ├── GenTx_Mary │ │ │ │ ├── GenTx_Shelley │ │ │ │ ├── LedgerConfig │ │ │ │ ├── Query_Allegra_GetCurrentPParams │ │ │ │ ├── Query_Allegra_GetEpochNo │ │ │ │ ├── Query_Allegra_GetGenesisConfig │ │ │ │ ├── Query_Allegra_GetLedgerTip │ │ │ │ ├── Query_Allegra_GetNonMyopicMemberRewards │ │ │ │ ├── Query_Allegra_GetStakeDistribution │ │ │ │ ├── Query_Alonzo_GetCurrentPParams │ │ │ │ ├── Query_Alonzo_GetEpochNo │ │ │ │ ├── Query_Alonzo_GetGenesisConfig │ │ │ │ ├── Query_Alonzo_GetLedgerTip │ │ │ │ ├── Query_Alonzo_GetNonMyopicMemberRewards │ │ │ │ ├── Query_Alonzo_GetStakeDistribution │ │ │ │ ├── Query_AnytimeByron │ │ │ │ ├── Query_AnytimeShelley │ │ │ │ ├── Query_Babbage_GetCurrentPParams │ │ │ │ ├── Query_Babbage_GetEpochNo │ │ │ │ ├── Query_Babbage_GetGenesisConfig │ │ │ │ ├── Query_Babbage_GetLedgerTip │ │ │ │ ├── Query_Babbage_GetNonMyopicMemberRewards │ │ │ │ ├── Query_Babbage_GetStakeDistribution │ │ │ │ ├── Query_Byron │ │ │ │ ├── Query_Conway_GetCurrentPParams │ │ │ │ ├── Query_Conway_GetEpochNo │ │ │ │ ├── Query_Conway_GetGenesisConfig │ │ │ │ ├── Query_Conway_GetLedgerTip │ │ │ │ ├── Query_Conway_GetNonMyopicMemberRewards │ │ │ │ ├── Query_Conway_GetStakeDistribution │ │ │ │ ├── Query_HardFork │ │ │ │ ├── Query_Mary_GetCurrentPParams │ │ │ │ ├── Query_Mary_GetEpochNo │ │ │ │ ├── Query_Mary_GetGenesisConfig │ │ │ │ ├── Query_Mary_GetLedgerTip │ │ │ │ ├── Query_Mary_GetNonMyopicMemberRewards │ │ │ │ ├── Query_Mary_GetStakeDistribution │ │ │ │ ├── Query_Shelley_GetCurrentPParams │ │ │ │ ├── Query_Shelley_GetEpochNo │ │ │ │ ├── Query_Shelley_GetGenesisConfig │ │ │ │ ├── Query_Shelley_GetLedgerTip │ │ │ │ ├── Query_Shelley_GetNonMyopicMemberRewards │ │ │ │ ├── Query_Shelley_GetStakeDistribution │ │ │ │ ├── Result_Allegra_EmptyPParams │ │ │ │ ├── Result_Allegra_EpochNo │ │ │ │ ├── Result_Allegra_GenesisConfig │ │ │ │ ├── Result_Allegra_LedgerTip │ │ │ │ ├── Result_Allegra_NonMyopicMemberRewards │ │ │ │ ├── Result_Allegra_StakeDistribution │ │ │ │ ├── Result_Alonzo_EmptyPParams │ │ │ │ ├── Result_Alonzo_EpochNo │ │ │ │ ├── Result_Alonzo_GenesisConfig │ │ │ │ ├── Result_Alonzo_LedgerTip │ │ │ │ ├── Result_Alonzo_NonMyopicMemberRewards │ │ │ │ ├── Result_Alonzo_StakeDistribution │ │ │ │ ├── Result_AnytimeByron │ │ │ │ ├── Result_AnytimeShelley │ │ │ │ ├── Result_Babbage_EmptyPParams │ │ │ │ ├── Result_Babbage_EpochNo │ │ │ │ ├── Result_Babbage_GenesisConfig │ │ │ │ ├── Result_Babbage_LedgerTip │ │ │ │ ├── Result_Babbage_NonMyopicMemberRewards │ │ │ │ ├── Result_Babbage_StakeDistribution │ │ │ │ ├── Result_Byron │ │ │ │ ├── Result_Conway_EmptyPParams │ │ │ │ ├── Result_Conway_EpochNo │ │ │ │ ├── Result_Conway_GenesisConfig │ │ │ │ ├── Result_Conway_LedgerTip │ │ │ │ ├── Result_Conway_NonMyopicMemberRewards │ │ │ │ ├── Result_Conway_StakeDistribution │ │ │ │ ├── Result_EraMismatchByron │ │ │ │ ├── Result_EraMismatchShelley │ │ │ │ ├── Result_HardFork │ │ │ │ ├── Result_Mary_EmptyPParams │ │ │ │ ├── Result_Mary_EpochNo │ │ │ │ ├── Result_Mary_GenesisConfig │ │ │ │ ├── Result_Mary_LedgerTip │ │ │ │ ├── Result_Mary_NonMyopicMemberRewards │ │ │ │ ├── Result_Mary_StakeDistribution │ │ │ │ ├── Result_Shelley_EmptyPParams │ │ │ │ ├── Result_Shelley_EpochNo │ │ │ │ ├── Result_Shelley_GenesisConfig │ │ │ │ ├── Result_Shelley_LedgerTip │ │ │ │ ├── Result_Shelley_NonMyopicMemberRewards │ │ │ │ ├── Result_Shelley_StakeDistribution │ │ │ │ ├── SerialisedBlock_Allegra │ │ │ │ ├── SerialisedBlock_Alonzo │ │ │ │ ├── SerialisedBlock_Babbage │ │ │ │ ├── SerialisedBlock_Byron_EBB │ │ │ │ ├── SerialisedBlock_Byron_regular │ │ │ │ ├── SerialisedBlock_Conway │ │ │ │ ├── SerialisedBlock_Mary │ │ │ │ ├── SerialisedBlock_Shelley │ │ │ │ ├── SlotNo_Allegra │ │ │ │ ├── SlotNo_Alonzo │ │ │ │ ├── SlotNo_Babbage │ │ │ │ ├── SlotNo_Byron │ │ │ │ ├── SlotNo_Conway │ │ │ │ ├── SlotNo_Mary │ │ │ │ └── SlotNo_Shelley │ │ │ ├── CardanoNodeToClientVersion13 │ │ │ │ ├── ApplyTxErr_Allegra │ │ │ │ ├── ApplyTxErr_Alonzo │ │ │ │ ├── ApplyTxErr_Babbage │ │ │ │ ├── ApplyTxErr_Byron │ │ │ │ ├── ApplyTxErr_Conway │ │ │ │ ├── ApplyTxErr_Mary │ │ │ │ ├── ApplyTxErr_Shelley │ │ │ │ ├── ApplyTxErr_WrongEraByron │ │ │ │ ├── ApplyTxErr_WrongEraShelley │ │ │ │ ├── Block_Allegra │ │ │ │ ├── Block_Alonzo │ │ │ │ ├── Block_Babbage │ │ │ │ ├── Block_Byron_EBB │ │ │ │ ├── Block_Byron_regular │ │ │ │ ├── Block_Conway │ │ │ │ ├── Block_Mary │ │ │ │ ├── Block_Shelley │ │ │ │ ├── GenTxId_Allegra │ │ │ │ ├── GenTxId_Alonzo │ │ │ │ ├── GenTxId_Babbage │ │ │ │ ├── GenTxId_Byron │ │ │ │ ├── GenTxId_Conway │ │ │ │ ├── GenTxId_Mary │ │ │ │ ├── GenTxId_Shelley │ │ │ │ ├── GenTx_Allegra │ │ │ │ ├── GenTx_Alonzo │ │ │ │ ├── GenTx_Babbage │ │ │ │ ├── GenTx_Byron │ │ │ │ ├── GenTx_Conway │ │ │ │ ├── GenTx_Mary │ │ │ │ ├── GenTx_Shelley │ │ │ │ ├── LedgerConfig │ │ │ │ ├── Query_Allegra_GetCurrentPParams │ │ │ │ ├── Query_Allegra_GetEpochNo │ │ │ │ ├── Query_Allegra_GetGenesisConfig │ │ │ │ ├── Query_Allegra_GetLedgerTip │ │ │ │ ├── Query_Allegra_GetNonMyopicMemberRewards │ │ │ │ ├── Query_Allegra_GetStakeDistribution │ │ │ │ ├── Query_Alonzo_GetCurrentPParams │ │ │ │ ├── Query_Alonzo_GetEpochNo │ │ │ │ ├── Query_Alonzo_GetGenesisConfig │ │ │ │ ├── Query_Alonzo_GetLedgerTip │ │ │ │ ├── Query_Alonzo_GetNonMyopicMemberRewards │ │ │ │ ├── Query_Alonzo_GetStakeDistribution │ │ │ │ ├── Query_AnytimeByron │ │ │ │ ├── Query_AnytimeShelley │ │ │ │ ├── Query_Babbage_GetCurrentPParams │ │ │ │ ├── Query_Babbage_GetEpochNo │ │ │ │ ├── Query_Babbage_GetGenesisConfig │ │ │ │ ├── Query_Babbage_GetLedgerTip │ │ │ │ ├── Query_Babbage_GetNonMyopicMemberRewards │ │ │ │ ├── Query_Babbage_GetStakeDistribution │ │ │ │ ├── Query_Byron │ │ │ │ ├── Query_Conway_GetCurrentPParams │ │ │ │ ├── Query_Conway_GetEpochNo │ │ │ │ ├── Query_Conway_GetGenesisConfig │ │ │ │ ├── Query_Conway_GetLedgerTip │ │ │ │ ├── Query_Conway_GetNonMyopicMemberRewards │ │ │ │ ├── Query_Conway_GetStakeDistribution │ │ │ │ ├── Query_HardFork │ │ │ │ ├── Query_Mary_GetCurrentPParams │ │ │ │ ├── Query_Mary_GetEpochNo │ │ │ │ ├── Query_Mary_GetGenesisConfig │ │ │ │ ├── Query_Mary_GetLedgerTip │ │ │ │ ├── Query_Mary_GetNonMyopicMemberRewards │ │ │ │ ├── Query_Mary_GetStakeDistribution │ │ │ │ ├── Query_Shelley_GetCurrentPParams │ │ │ │ ├── Query_Shelley_GetEpochNo │ │ │ │ ├── Query_Shelley_GetGenesisConfig │ │ │ │ ├── Query_Shelley_GetLedgerTip │ │ │ │ ├── Query_Shelley_GetNonMyopicMemberRewards │ │ │ │ ├── Query_Shelley_GetStakeDistribution │ │ │ │ ├── Result_Allegra_EmptyPParams │ │ │ │ ├── Result_Allegra_EpochNo │ │ │ │ ├── Result_Allegra_GenesisConfig │ │ │ │ ├── Result_Allegra_LedgerTip │ │ │ │ ├── Result_Allegra_NonMyopicMemberRewards │ │ │ │ ├── Result_Allegra_StakeDistribution │ │ │ │ ├── Result_Alonzo_EmptyPParams │ │ │ │ ├── Result_Alonzo_EpochNo │ │ │ │ ├── Result_Alonzo_GenesisConfig │ │ │ │ ├── Result_Alonzo_LedgerTip │ │ │ │ ├── Result_Alonzo_NonMyopicMemberRewards │ │ │ │ ├── Result_Alonzo_StakeDistribution │ │ │ │ ├── Result_AnytimeByron │ │ │ │ ├── Result_AnytimeShelley │ │ │ │ ├── Result_Babbage_EmptyPParams │ │ │ │ ├── Result_Babbage_EpochNo │ │ │ │ ├── Result_Babbage_GenesisConfig │ │ │ │ ├── Result_Babbage_LedgerTip │ │ │ │ ├── Result_Babbage_NonMyopicMemberRewards │ │ │ │ ├── Result_Babbage_StakeDistribution │ │ │ │ ├── Result_Byron │ │ │ │ ├── Result_Conway_EmptyPParams │ │ │ │ ├── Result_Conway_EpochNo │ │ │ │ ├── Result_Conway_GenesisConfig │ │ │ │ ├── Result_Conway_LedgerTip │ │ │ │ ├── Result_Conway_NonMyopicMemberRewards │ │ │ │ ├── Result_Conway_StakeDistribution │ │ │ │ ├── Result_EraMismatchByron │ │ │ │ ├── Result_EraMismatchShelley │ │ │ │ ├── Result_HardFork │ │ │ │ ├── Result_Mary_EmptyPParams │ │ │ │ ├── Result_Mary_EpochNo │ │ │ │ ├── Result_Mary_GenesisConfig │ │ │ │ ├── Result_Mary_LedgerTip │ │ │ │ ├── Result_Mary_NonMyopicMemberRewards │ │ │ │ ├── Result_Mary_StakeDistribution │ │ │ │ ├── Result_Shelley_EmptyPParams │ │ │ │ ├── Result_Shelley_EpochNo │ │ │ │ ├── Result_Shelley_GenesisConfig │ │ │ │ ├── Result_Shelley_LedgerTip │ │ │ │ ├── Result_Shelley_NonMyopicMemberRewards │ │ │ │ ├── Result_Shelley_StakeDistribution │ │ │ │ ├── SerialisedBlock_Allegra │ │ │ │ ├── SerialisedBlock_Alonzo │ │ │ │ ├── SerialisedBlock_Babbage │ │ │ │ ├── SerialisedBlock_Byron_EBB │ │ │ │ ├── SerialisedBlock_Byron_regular │ │ │ │ ├── SerialisedBlock_Conway │ │ │ │ ├── SerialisedBlock_Mary │ │ │ │ ├── SerialisedBlock_Shelley │ │ │ │ ├── SlotNo_Allegra │ │ │ │ ├── SlotNo_Alonzo │ │ │ │ ├── SlotNo_Babbage │ │ │ │ ├── SlotNo_Byron │ │ │ │ ├── SlotNo_Conway │ │ │ │ ├── SlotNo_Mary │ │ │ │ └── SlotNo_Shelley │ │ │ ├── CardanoNodeToClientVersion14 │ │ │ │ ├── ApplyTxErr_Allegra │ │ │ │ ├── ApplyTxErr_Alonzo │ │ │ │ ├── ApplyTxErr_Babbage │ │ │ │ ├── ApplyTxErr_Byron │ │ │ │ ├── ApplyTxErr_Conway │ │ │ │ ├── ApplyTxErr_Mary │ │ │ │ ├── ApplyTxErr_Shelley │ │ │ │ ├── ApplyTxErr_WrongEraByron │ │ │ │ ├── ApplyTxErr_WrongEraShelley │ │ │ │ ├── Block_Allegra │ │ │ │ ├── Block_Alonzo │ │ │ │ ├── Block_Babbage │ │ │ │ ├── Block_Byron_EBB │ │ │ │ ├── Block_Byron_regular │ │ │ │ ├── Block_Conway │ │ │ │ ├── Block_Mary │ │ │ │ ├── Block_Shelley │ │ │ │ ├── GenTxId_Allegra │ │ │ │ ├── GenTxId_Alonzo │ │ │ │ ├── GenTxId_Babbage │ │ │ │ ├── GenTxId_Byron │ │ │ │ ├── GenTxId_Conway │ │ │ │ ├── GenTxId_Mary │ │ │ │ ├── GenTxId_Shelley │ │ │ │ ├── GenTx_Allegra │ │ │ │ ├── GenTx_Alonzo │ │ │ │ ├── GenTx_Babbage │ │ │ │ ├── GenTx_Byron │ │ │ │ ├── GenTx_Conway │ │ │ │ ├── GenTx_Mary │ │ │ │ ├── GenTx_Shelley │ │ │ │ ├── LedgerConfig │ │ │ │ ├── Query_Allegra_GetCurrentPParams │ │ │ │ ├── Query_Allegra_GetEpochNo │ │ │ │ ├── Query_Allegra_GetGenesisConfig │ │ │ │ ├── Query_Allegra_GetLedgerTip │ │ │ │ ├── Query_Allegra_GetNonMyopicMemberRewards │ │ │ │ ├── Query_Allegra_GetStakeDistribution │ │ │ │ ├── Query_Alonzo_GetCurrentPParams │ │ │ │ ├── Query_Alonzo_GetEpochNo │ │ │ │ ├── Query_Alonzo_GetGenesisConfig │ │ │ │ ├── Query_Alonzo_GetLedgerTip │ │ │ │ ├── Query_Alonzo_GetNonMyopicMemberRewards │ │ │ │ ├── Query_Alonzo_GetStakeDistribution │ │ │ │ ├── Query_AnytimeByron │ │ │ │ ├── Query_AnytimeShelley │ │ │ │ ├── Query_Babbage_GetCurrentPParams │ │ │ │ ├── Query_Babbage_GetEpochNo │ │ │ │ ├── Query_Babbage_GetGenesisConfig │ │ │ │ ├── Query_Babbage_GetLedgerTip │ │ │ │ ├── Query_Babbage_GetNonMyopicMemberRewards │ │ │ │ ├── Query_Babbage_GetStakeDistribution │ │ │ │ ├── Query_Byron │ │ │ │ ├── Query_Conway_GetCurrentPParams │ │ │ │ ├── Query_Conway_GetEpochNo │ │ │ │ ├── Query_Conway_GetGenesisConfig │ │ │ │ ├── Query_Conway_GetLedgerTip │ │ │ │ ├── Query_Conway_GetNonMyopicMemberRewards │ │ │ │ ├── Query_Conway_GetStakeDistribution │ │ │ │ ├── Query_HardFork │ │ │ │ ├── Query_Mary_GetCurrentPParams │ │ │ │ ├── Query_Mary_GetEpochNo │ │ │ │ ├── Query_Mary_GetGenesisConfig │ │ │ │ ├── Query_Mary_GetLedgerTip │ │ │ │ ├── Query_Mary_GetNonMyopicMemberRewards │ │ │ │ ├── Query_Mary_GetStakeDistribution │ │ │ │ ├── Query_Shelley_GetCurrentPParams │ │ │ │ ├── Query_Shelley_GetEpochNo │ │ │ │ ├── Query_Shelley_GetGenesisConfig │ │ │ │ ├── Query_Shelley_GetLedgerTip │ │ │ │ ├── Query_Shelley_GetNonMyopicMemberRewards │ │ │ │ ├── Query_Shelley_GetStakeDistribution │ │ │ │ ├── Result_Allegra_EmptyPParams │ │ │ │ ├── Result_Allegra_EpochNo │ │ │ │ ├── Result_Allegra_GenesisConfig │ │ │ │ ├── Result_Allegra_LedgerTip │ │ │ │ ├── Result_Allegra_NonMyopicMemberRewards │ │ │ │ ├── Result_Allegra_StakeDistribution │ │ │ │ ├── Result_Alonzo_EmptyPParams │ │ │ │ ├── Result_Alonzo_EpochNo │ │ │ │ ├── Result_Alonzo_GenesisConfig │ │ │ │ ├── Result_Alonzo_LedgerTip │ │ │ │ ├── Result_Alonzo_NonMyopicMemberRewards │ │ │ │ ├── Result_Alonzo_StakeDistribution │ │ │ │ ├── Result_AnytimeByron │ │ │ │ ├── Result_AnytimeShelley │ │ │ │ ├── Result_Babbage_EmptyPParams │ │ │ │ ├── Result_Babbage_EpochNo │ │ │ │ ├── Result_Babbage_GenesisConfig │ │ │ │ ├── Result_Babbage_LedgerTip │ │ │ │ ├── Result_Babbage_NonMyopicMemberRewards │ │ │ │ ├── Result_Babbage_StakeDistribution │ │ │ │ ├── Result_Byron │ │ │ │ ├── Result_Conway_EmptyPParams │ │ │ │ ├── Result_Conway_EpochNo │ │ │ │ ├── Result_Conway_GenesisConfig │ │ │ │ ├── Result_Conway_LedgerTip │ │ │ │ ├── Result_Conway_NonMyopicMemberRewards │ │ │ │ ├── Result_Conway_StakeDistribution │ │ │ │ ├── Result_EraMismatchByron │ │ │ │ ├── Result_EraMismatchShelley │ │ │ │ ├── Result_HardFork │ │ │ │ ├── Result_Mary_EmptyPParams │ │ │ │ ├── Result_Mary_EpochNo │ │ │ │ ├── Result_Mary_GenesisConfig │ │ │ │ ├── Result_Mary_LedgerTip │ │ │ │ ├── Result_Mary_NonMyopicMemberRewards │ │ │ │ ├── Result_Mary_StakeDistribution │ │ │ │ ├── Result_Shelley_EmptyPParams │ │ │ │ ├── Result_Shelley_EpochNo │ │ │ │ ├── Result_Shelley_GenesisConfig │ │ │ │ ├── Result_Shelley_LedgerTip │ │ │ │ ├── Result_Shelley_NonMyopicMemberRewards │ │ │ │ ├── Result_Shelley_StakeDistribution │ │ │ │ ├── SerialisedBlock_Allegra │ │ │ │ ├── SerialisedBlock_Alonzo │ │ │ │ ├── SerialisedBlock_Babbage │ │ │ │ ├── SerialisedBlock_Byron_EBB │ │ │ │ ├── SerialisedBlock_Byron_regular │ │ │ │ ├── SerialisedBlock_Conway │ │ │ │ ├── SerialisedBlock_Mary │ │ │ │ ├── SerialisedBlock_Shelley │ │ │ │ ├── SlotNo_Allegra │ │ │ │ ├── SlotNo_Alonzo │ │ │ │ ├── SlotNo_Babbage │ │ │ │ ├── SlotNo_Byron │ │ │ │ ├── SlotNo_Conway │ │ │ │ ├── SlotNo_Mary │ │ │ │ └── SlotNo_Shelley │ │ │ └── CardanoNodeToClientVersion15 │ │ │ │ ├── ApplyTxErr_Allegra │ │ │ │ ├── ApplyTxErr_Alonzo │ │ │ │ ├── ApplyTxErr_Babbage │ │ │ │ ├── ApplyTxErr_Byron │ │ │ │ ├── ApplyTxErr_Conway │ │ │ │ ├── ApplyTxErr_Mary │ │ │ │ ├── ApplyTxErr_Shelley │ │ │ │ ├── ApplyTxErr_WrongEraByron │ │ │ │ ├── ApplyTxErr_WrongEraShelley │ │ │ │ ├── Block_Allegra │ │ │ │ ├── Block_Alonzo │ │ │ │ ├── Block_Babbage │ │ │ │ ├── Block_Byron_EBB │ │ │ │ ├── Block_Byron_regular │ │ │ │ ├── Block_Conway │ │ │ │ ├── Block_Mary │ │ │ │ ├── Block_Shelley │ │ │ │ ├── GenTxId_Allegra │ │ │ │ ├── GenTxId_Alonzo │ │ │ │ ├── GenTxId_Babbage │ │ │ │ ├── GenTxId_Byron │ │ │ │ ├── GenTxId_Conway │ │ │ │ ├── GenTxId_Mary │ │ │ │ ├── GenTxId_Shelley │ │ │ │ ├── GenTx_Allegra │ │ │ │ ├── GenTx_Alonzo │ │ │ │ ├── GenTx_Babbage │ │ │ │ ├── GenTx_Byron │ │ │ │ ├── GenTx_Conway │ │ │ │ ├── GenTx_Mary │ │ │ │ ├── GenTx_Shelley │ │ │ │ ├── LedgerConfig │ │ │ │ ├── Query_Allegra_GetBigLedgerPeerSnapshot │ │ │ │ ├── Query_Allegra_GetCurrentPParams │ │ │ │ ├── Query_Allegra_GetEpochNo │ │ │ │ ├── Query_Allegra_GetGenesisConfig │ │ │ │ ├── Query_Allegra_GetLedgerTip │ │ │ │ ├── Query_Allegra_GetNonMyopicMemberRewards │ │ │ │ ├── Query_Allegra_GetStakeDistribution │ │ │ │ ├── Query_Alonzo_GetBigLedgerPeerSnapshot │ │ │ │ ├── Query_Alonzo_GetCurrentPParams │ │ │ │ ├── Query_Alonzo_GetEpochNo │ │ │ │ ├── Query_Alonzo_GetGenesisConfig │ │ │ │ ├── Query_Alonzo_GetLedgerTip │ │ │ │ ├── Query_Alonzo_GetNonMyopicMemberRewards │ │ │ │ ├── Query_Alonzo_GetStakeDistribution │ │ │ │ ├── Query_AnytimeByron │ │ │ │ ├── Query_AnytimeShelley │ │ │ │ ├── Query_Babbage_GetCurrentPParams │ │ │ │ ├── Query_Babbage_GetEpochNo │ │ │ │ ├── Query_Babbage_GetGenesisConfig │ │ │ │ ├── Query_Babbage_GetLedgerTip │ │ │ │ ├── Query_Babbage_GetNonMyopicMemberRewards │ │ │ │ ├── Query_Babbage_GetStakeDistribution │ │ │ │ ├── Query_Byron │ │ │ │ ├── Query_Conway_GetCurrentPParams │ │ │ │ ├── Query_Conway_GetEpochNo │ │ │ │ ├── Query_Conway_GetGenesisConfig │ │ │ │ ├── Query_Conway_GetLedgerTip │ │ │ │ ├── Query_Conway_GetNonMyopicMemberRewards │ │ │ │ ├── Query_Conway_GetStakeDistribution │ │ │ │ ├── Query_HardFork │ │ │ │ ├── Query_Mary_GetBigLedgerPeerSnapshot │ │ │ │ ├── Query_Mary_GetCurrentPParams │ │ │ │ ├── Query_Mary_GetEpochNo │ │ │ │ ├── Query_Mary_GetGenesisConfig │ │ │ │ ├── Query_Mary_GetLedgerTip │ │ │ │ ├── Query_Mary_GetNonMyopicMemberRewards │ │ │ │ ├── Query_Mary_GetStakeDistribution │ │ │ │ ├── Query_Shelley_GetBigLedgerPeerSnapshot │ │ │ │ ├── Query_Shelley_GetCurrentPParams │ │ │ │ ├── Query_Shelley_GetEpochNo │ │ │ │ ├── Query_Shelley_GetGenesisConfig │ │ │ │ ├── Query_Shelley_GetLedgerTip │ │ │ │ ├── Query_Shelley_GetNonMyopicMemberRewards │ │ │ │ ├── Query_Shelley_GetStakeDistribution │ │ │ │ ├── Result_Allegra_EmptyPParams │ │ │ │ ├── Result_Allegra_EpochNo │ │ │ │ ├── Result_Allegra_GenesisConfig │ │ │ │ ├── Result_Allegra_GetBigLedgerPeerSnapshot │ │ │ │ ├── Result_Allegra_LedgerTip │ │ │ │ ├── Result_Allegra_NonMyopicMemberRewards │ │ │ │ ├── Result_Allegra_StakeDistribution │ │ │ │ ├── Result_Alonzo_EmptyPParams │ │ │ │ ├── Result_Alonzo_EpochNo │ │ │ │ ├── Result_Alonzo_GenesisConfig │ │ │ │ ├── Result_Alonzo_GetBigLedgerPeerSnapshot │ │ │ │ ├── Result_Alonzo_LedgerTip │ │ │ │ ├── Result_Alonzo_NonMyopicMemberRewards │ │ │ │ ├── Result_Alonzo_StakeDistribution │ │ │ │ ├── Result_AnytimeByron │ │ │ │ ├── Result_AnytimeShelley │ │ │ │ ├── Result_Babbage_EmptyPParams │ │ │ │ ├── Result_Babbage_EpochNo │ │ │ │ ├── Result_Babbage_GenesisConfig │ │ │ │ ├── Result_Babbage_LedgerTip │ │ │ │ ├── Result_Babbage_NonMyopicMemberRewards │ │ │ │ ├── Result_Babbage_StakeDistribution │ │ │ │ ├── Result_Byron │ │ │ │ ├── Result_Conway_EmptyPParams │ │ │ │ ├── Result_Conway_EpochNo │ │ │ │ ├── Result_Conway_GenesisConfig │ │ │ │ ├── Result_Conway_LedgerTip │ │ │ │ ├── Result_Conway_NonMyopicMemberRewards │ │ │ │ ├── Result_Conway_StakeDistribution │ │ │ │ ├── Result_EraMismatchByron │ │ │ │ ├── Result_EraMismatchShelley │ │ │ │ ├── Result_HardFork │ │ │ │ ├── Result_Mary_EmptyPParams │ │ │ │ ├── Result_Mary_EpochNo │ │ │ │ ├── Result_Mary_GenesisConfig │ │ │ │ ├── Result_Mary_GetBigLedgerPeerSnapshot │ │ │ │ ├── Result_Mary_LedgerTip │ │ │ │ ├── Result_Mary_NonMyopicMemberRewards │ │ │ │ ├── Result_Mary_StakeDistribution │ │ │ │ ├── Result_Shelley_EmptyPParams │ │ │ │ ├── Result_Shelley_EpochNo │ │ │ │ ├── Result_Shelley_GenesisConfig │ │ │ │ ├── Result_Shelley_GetBigLedgerPeerSnapshot │ │ │ │ ├── Result_Shelley_LedgerTip │ │ │ │ ├── Result_Shelley_NonMyopicMemberRewards │ │ │ │ ├── Result_Shelley_StakeDistribution │ │ │ │ ├── SerialisedBlock_Allegra │ │ │ │ ├── SerialisedBlock_Alonzo │ │ │ │ ├── SerialisedBlock_Babbage │ │ │ │ ├── SerialisedBlock_Byron_EBB │ │ │ │ ├── SerialisedBlock_Byron_regular │ │ │ │ ├── SerialisedBlock_Conway │ │ │ │ ├── SerialisedBlock_Mary │ │ │ │ ├── SerialisedBlock_Shelley │ │ │ │ ├── SlotNo_Allegra │ │ │ │ ├── SlotNo_Alonzo │ │ │ │ ├── SlotNo_Babbage │ │ │ │ ├── SlotNo_Byron │ │ │ │ ├── SlotNo_Conway │ │ │ │ ├── SlotNo_Mary │ │ │ │ └── SlotNo_Shelley │ │ ├── QueryVersion3 │ │ │ └── CardanoNodeToClientVersion16 │ │ │ │ ├── ApplyTxErr_Allegra │ │ │ │ ├── ApplyTxErr_Alonzo │ │ │ │ ├── ApplyTxErr_Babbage │ │ │ │ ├── ApplyTxErr_Byron │ │ │ │ ├── ApplyTxErr_Conway │ │ │ │ ├── ApplyTxErr_Mary │ │ │ │ ├── ApplyTxErr_Shelley │ │ │ │ ├── ApplyTxErr_WrongEraByron │ │ │ │ ├── ApplyTxErr_WrongEraShelley │ │ │ │ ├── Block_Allegra │ │ │ │ ├── Block_Alonzo │ │ │ │ ├── Block_Babbage │ │ │ │ ├── Block_Byron_EBB │ │ │ │ ├── Block_Byron_regular │ │ │ │ ├── Block_Conway │ │ │ │ ├── Block_Mary │ │ │ │ ├── Block_Shelley │ │ │ │ ├── GenTxId_Allegra │ │ │ │ ├── GenTxId_Alonzo │ │ │ │ ├── GenTxId_Babbage │ │ │ │ ├── GenTxId_Byron │ │ │ │ ├── GenTxId_Conway │ │ │ │ ├── GenTxId_Mary │ │ │ │ ├── GenTxId_Shelley │ │ │ │ ├── GenTx_Allegra │ │ │ │ ├── GenTx_Alonzo │ │ │ │ ├── GenTx_Babbage │ │ │ │ ├── GenTx_Byron │ │ │ │ ├── GenTx_Conway │ │ │ │ ├── GenTx_Mary │ │ │ │ ├── GenTx_Shelley │ │ │ │ ├── LedgerConfig │ │ │ │ ├── Query_Allegra_GetBigLedgerPeerSnapshot │ │ │ │ ├── Query_Allegra_GetCurrentPParams │ │ │ │ ├── Query_Allegra_GetEpochNo │ │ │ │ ├── Query_Allegra_GetGenesisConfig │ │ │ │ ├── Query_Allegra_GetLedgerTip │ │ │ │ ├── Query_Allegra_GetNonMyopicMemberRewards │ │ │ │ ├── Query_Allegra_GetStakeDistribution │ │ │ │ ├── Query_Alonzo_GetBigLedgerPeerSnapshot │ │ │ │ ├── Query_Alonzo_GetCurrentPParams │ │ │ │ ├── Query_Alonzo_GetEpochNo │ │ │ │ ├── Query_Alonzo_GetGenesisConfig │ │ │ │ ├── Query_Alonzo_GetLedgerTip │ │ │ │ ├── Query_Alonzo_GetNonMyopicMemberRewards │ │ │ │ ├── Query_Alonzo_GetStakeDistribution │ │ │ │ ├── Query_AnytimeByron │ │ │ │ ├── Query_AnytimeShelley │ │ │ │ ├── Query_Babbage_GetCurrentPParams │ │ │ │ ├── Query_Babbage_GetEpochNo │ │ │ │ ├── Query_Babbage_GetGenesisConfig │ │ │ │ ├── Query_Babbage_GetLedgerTip │ │ │ │ ├── Query_Babbage_GetNonMyopicMemberRewards │ │ │ │ ├── Query_Babbage_GetStakeDistribution │ │ │ │ ├── Query_Byron │ │ │ │ ├── Query_Conway_GetCurrentPParams │ │ │ │ ├── Query_Conway_GetEpochNo │ │ │ │ ├── Query_Conway_GetGenesisConfig │ │ │ │ ├── Query_Conway_GetLedgerTip │ │ │ │ ├── Query_Conway_GetNonMyopicMemberRewards │ │ │ │ ├── Query_Conway_GetStakeDistribution │ │ │ │ ├── Query_HardFork │ │ │ │ ├── Query_Mary_GetBigLedgerPeerSnapshot │ │ │ │ ├── Query_Mary_GetCurrentPParams │ │ │ │ ├── Query_Mary_GetEpochNo │ │ │ │ ├── Query_Mary_GetGenesisConfig │ │ │ │ ├── Query_Mary_GetLedgerTip │ │ │ │ ├── Query_Mary_GetNonMyopicMemberRewards │ │ │ │ ├── Query_Mary_GetStakeDistribution │ │ │ │ ├── Query_Shelley_GetBigLedgerPeerSnapshot │ │ │ │ ├── Query_Shelley_GetCurrentPParams │ │ │ │ ├── Query_Shelley_GetEpochNo │ │ │ │ ├── Query_Shelley_GetGenesisConfig │ │ │ │ ├── Query_Shelley_GetLedgerTip │ │ │ │ ├── Query_Shelley_GetNonMyopicMemberRewards │ │ │ │ ├── Query_Shelley_GetStakeDistribution │ │ │ │ ├── Result_Allegra_EmptyPParams │ │ │ │ ├── Result_Allegra_EpochNo │ │ │ │ ├── Result_Allegra_GenesisConfig │ │ │ │ ├── Result_Allegra_GetBigLedgerPeerSnapshot │ │ │ │ ├── Result_Allegra_LedgerTip │ │ │ │ ├── Result_Allegra_NonMyopicMemberRewards │ │ │ │ ├── Result_Allegra_StakeDistribution │ │ │ │ ├── Result_Alonzo_EmptyPParams │ │ │ │ ├── Result_Alonzo_EpochNo │ │ │ │ ├── Result_Alonzo_GenesisConfig │ │ │ │ ├── Result_Alonzo_GetBigLedgerPeerSnapshot │ │ │ │ ├── Result_Alonzo_LedgerTip │ │ │ │ ├── Result_Alonzo_NonMyopicMemberRewards │ │ │ │ ├── Result_Alonzo_StakeDistribution │ │ │ │ ├── Result_AnytimeByron │ │ │ │ ├── Result_AnytimeShelley │ │ │ │ ├── Result_Babbage_EmptyPParams │ │ │ │ ├── Result_Babbage_EpochNo │ │ │ │ ├── Result_Babbage_GenesisConfig │ │ │ │ ├── Result_Babbage_LedgerTip │ │ │ │ ├── Result_Babbage_NonMyopicMemberRewards │ │ │ │ ├── Result_Babbage_StakeDistribution │ │ │ │ ├── Result_Byron │ │ │ │ ├── Result_Conway_EmptyPParams │ │ │ │ ├── Result_Conway_EpochNo │ │ │ │ ├── Result_Conway_GenesisConfig │ │ │ │ ├── Result_Conway_LedgerTip │ │ │ │ ├── Result_Conway_NonMyopicMemberRewards │ │ │ │ ├── Result_Conway_StakeDistribution │ │ │ │ ├── Result_EraMismatchByron │ │ │ │ ├── Result_EraMismatchShelley │ │ │ │ ├── Result_HardFork │ │ │ │ ├── Result_Mary_EmptyPParams │ │ │ │ ├── Result_Mary_EpochNo │ │ │ │ ├── Result_Mary_GenesisConfig │ │ │ │ ├── Result_Mary_GetBigLedgerPeerSnapshot │ │ │ │ ├── Result_Mary_LedgerTip │ │ │ │ ├── Result_Mary_NonMyopicMemberRewards │ │ │ │ ├── Result_Mary_StakeDistribution │ │ │ │ ├── Result_Shelley_EmptyPParams │ │ │ │ ├── Result_Shelley_EpochNo │ │ │ │ ├── Result_Shelley_GenesisConfig │ │ │ │ ├── Result_Shelley_GetBigLedgerPeerSnapshot │ │ │ │ ├── Result_Shelley_LedgerTip │ │ │ │ ├── Result_Shelley_NonMyopicMemberRewards │ │ │ │ ├── Result_Shelley_StakeDistribution │ │ │ │ ├── SerialisedBlock_Allegra │ │ │ │ ├── SerialisedBlock_Alonzo │ │ │ │ ├── SerialisedBlock_Babbage │ │ │ │ ├── SerialisedBlock_Byron_EBB │ │ │ │ ├── SerialisedBlock_Byron_regular │ │ │ │ ├── SerialisedBlock_Conway │ │ │ │ ├── SerialisedBlock_Mary │ │ │ │ ├── SerialisedBlock_Shelley │ │ │ │ ├── SlotNo_Allegra │ │ │ │ ├── SlotNo_Alonzo │ │ │ │ ├── SlotNo_Babbage │ │ │ │ ├── SlotNo_Byron │ │ │ │ ├── SlotNo_Conway │ │ │ │ ├── SlotNo_Mary │ │ │ │ └── SlotNo_Shelley │ │ └── disk │ │ │ ├── AnnTip_Allegra │ │ │ ├── AnnTip_Alonzo │ │ │ ├── AnnTip_Babbage │ │ │ ├── AnnTip_Byron │ │ │ ├── AnnTip_Conway │ │ │ ├── AnnTip_Mary │ │ │ ├── AnnTip_Shelley │ │ │ ├── Block_Allegra │ │ │ ├── Block_Alonzo │ │ │ ├── Block_Babbage │ │ │ ├── Block_Byron_EBB │ │ │ ├── Block_Byron_regular │ │ │ ├── Block_Conway │ │ │ ├── Block_Mary │ │ │ ├── Block_Shelley │ │ │ ├── ChainDepState_Allegra │ │ │ ├── ChainDepState_Alonzo │ │ │ ├── ChainDepState_Babbage │ │ │ ├── ChainDepState_Byron │ │ │ ├── ChainDepState_Conway │ │ │ ├── ChainDepState_Mary │ │ │ ├── ChainDepState_Shelley │ │ │ ├── ExtLedgerState_Allegra │ │ │ ├── ExtLedgerState_Alonzo │ │ │ ├── ExtLedgerState_Babbage │ │ │ ├── ExtLedgerState_Byron │ │ │ ├── ExtLedgerState_Conway │ │ │ ├── ExtLedgerState_Mary │ │ │ ├── ExtLedgerState_Shelley │ │ │ ├── HeaderHash_Allegra │ │ │ ├── HeaderHash_Alonzo │ │ │ ├── HeaderHash_Babbage │ │ │ ├── HeaderHash_Byron │ │ │ ├── HeaderHash_Conway │ │ │ ├── HeaderHash_Mary │ │ │ ├── HeaderHash_Shelley │ │ │ ├── LedgerState_Allegra │ │ │ ├── LedgerState_Alonzo │ │ │ ├── LedgerState_Babbage │ │ │ ├── LedgerState_Byron │ │ │ ├── LedgerState_Conway │ │ │ ├── LedgerState_Mary │ │ │ ├── LedgerState_Shelley │ │ │ ├── LedgerTables_Allegra │ │ │ ├── LedgerTables_Alonzo │ │ │ ├── LedgerTables_Babbage │ │ │ ├── LedgerTables_Byron │ │ │ ├── LedgerTables_Conway │ │ │ ├── LedgerTables_Mary │ │ │ └── LedgerTables_Shelley │ └── shelley │ │ ├── QueryVersion2 │ │ ├── ShelleyNodeToClientVersion10 │ │ │ ├── ApplyTxErr │ │ │ ├── Block │ │ │ ├── GenTx │ │ │ ├── GenTxId │ │ │ ├── LedgerConfig │ │ │ ├── Query_GetCurrentPParams │ │ │ ├── Query_GetEpochNo │ │ │ ├── Query_GetGenesisConfig │ │ │ ├── Query_GetLedgerTip │ │ │ ├── Query_GetNonMyopicMemberRewards │ │ │ ├── Query_GetStakeDistribution │ │ │ ├── Result_EmptyPParams │ │ │ ├── Result_EpochNo │ │ │ ├── Result_GenesisConfig │ │ │ ├── Result_LedgerTip │ │ │ ├── Result_NonMyopicMemberRewards │ │ │ ├── Result_StakeDistribution │ │ │ ├── SerialisedBlock │ │ │ └── SlotNo │ │ ├── ShelleyNodeToClientVersion11 │ │ │ ├── ApplyTxErr │ │ │ ├── Block │ │ │ ├── GenTx │ │ │ ├── GenTxId │ │ │ ├── LedgerConfig │ │ │ ├── Query_GetBigLedgerPeerSnapshot │ │ │ ├── Query_GetCurrentPParams │ │ │ ├── Query_GetEpochNo │ │ │ ├── Query_GetGenesisConfig │ │ │ ├── Query_GetLedgerTip │ │ │ ├── Query_GetNonMyopicMemberRewards │ │ │ ├── Query_GetStakeDistribution │ │ │ ├── Result_EmptyPParams │ │ │ ├── Result_EpochNo │ │ │ ├── Result_GenesisConfig │ │ │ ├── Result_GetBigLedgerPeerSnapshot │ │ │ ├── Result_LedgerTip │ │ │ ├── Result_NonMyopicMemberRewards │ │ │ ├── Result_StakeDistribution │ │ │ ├── SerialisedBlock │ │ │ └── SlotNo │ │ ├── ShelleyNodeToClientVersion8 │ │ │ ├── ApplyTxErr │ │ │ ├── Block │ │ │ ├── GenTx │ │ │ ├── GenTxId │ │ │ ├── LedgerConfig │ │ │ ├── Query_GetCurrentPParams │ │ │ ├── Query_GetEpochNo │ │ │ ├── Query_GetGenesisConfig │ │ │ ├── Query_GetLedgerTip │ │ │ ├── Query_GetNonMyopicMemberRewards │ │ │ ├── Query_GetStakeDistribution │ │ │ ├── Result_EmptyPParams │ │ │ ├── Result_EpochNo │ │ │ ├── Result_GenesisConfig │ │ │ ├── Result_LedgerTip │ │ │ ├── Result_NonMyopicMemberRewards │ │ │ ├── Result_StakeDistribution │ │ │ ├── SerialisedBlock │ │ │ └── SlotNo │ │ └── ShelleyNodeToClientVersion9 │ │ │ ├── ApplyTxErr │ │ │ ├── Block │ │ │ ├── GenTx │ │ │ ├── GenTxId │ │ │ ├── LedgerConfig │ │ │ ├── Query_GetCurrentPParams │ │ │ ├── Query_GetEpochNo │ │ │ ├── Query_GetGenesisConfig │ │ │ ├── Query_GetLedgerTip │ │ │ ├── Query_GetNonMyopicMemberRewards │ │ │ ├── Query_GetStakeDistribution │ │ │ ├── Result_EmptyPParams │ │ │ ├── Result_EpochNo │ │ │ ├── Result_GenesisConfig │ │ │ ├── Result_LedgerTip │ │ │ ├── Result_NonMyopicMemberRewards │ │ │ ├── Result_StakeDistribution │ │ │ ├── SerialisedBlock │ │ │ └── SlotNo │ │ ├── QueryVersion3 │ │ └── ShelleyNodeToClientVersion12 │ │ │ ├── ApplyTxErr │ │ │ ├── Block │ │ │ ├── GenTx │ │ │ ├── GenTxId │ │ │ ├── LedgerConfig │ │ │ ├── Query_GetBigLedgerPeerSnapshot │ │ │ ├── Query_GetCurrentPParams │ │ │ ├── Query_GetEpochNo │ │ │ ├── Query_GetGenesisConfig │ │ │ ├── Query_GetLedgerTip │ │ │ ├── Query_GetNonMyopicMemberRewards │ │ │ ├── Query_GetStakeDistribution │ │ │ ├── Result_EmptyPParams │ │ │ ├── Result_EpochNo │ │ │ ├── Result_GenesisConfig │ │ │ ├── Result_GetBigLedgerPeerSnapshot │ │ │ ├── Result_LedgerTip │ │ │ ├── Result_NonMyopicMemberRewards │ │ │ ├── Result_StakeDistribution │ │ │ ├── SerialisedBlock │ │ │ └── SlotNo │ │ ├── ShelleyNodeToNodeVersion1 │ │ ├── Block │ │ ├── GenTx │ │ ├── GenTxId │ │ ├── Header │ │ ├── SerialisedBlock │ │ └── SerialisedHeader │ │ └── disk │ │ ├── AnnTip │ │ ├── Block │ │ ├── ChainDepState │ │ ├── ExtLedgerState │ │ ├── HeaderHash │ │ ├── LedgerState │ │ └── LedgerTables ├── ouroboros-consensus-cardano.cabal ├── scripts │ ├── plot-ledger-ops-cost.gp │ └── plot_utxo_growth.py ├── src │ ├── byron │ │ └── Ouroboros │ │ │ └── Consensus │ │ │ └── Byron │ │ │ ├── ByronHFC.hs │ │ │ ├── Crypto │ │ │ └── DSIGN.hs │ │ │ ├── EBBs.hs │ │ │ ├── Ledger.hs │ │ │ ├── Ledger │ │ │ ├── Block.hs │ │ │ ├── Config.hs │ │ │ ├── Conversions.hs │ │ │ ├── Forge.hs │ │ │ ├── HeaderValidation.hs │ │ │ ├── Inspect.hs │ │ │ ├── Integrity.hs │ │ │ ├── Ledger.hs │ │ │ ├── Mempool.hs │ │ │ ├── NetworkProtocolVersion.hs │ │ │ ├── Orphans.hs │ │ │ ├── PBFT.hs │ │ │ └── Serialisation.hs │ │ │ ├── Node.hs │ │ │ ├── Node │ │ │ └── Serialisation.hs │ │ │ └── Protocol.hs │ ├── ouroboros-consensus-cardano │ │ └── Ouroboros │ │ │ └── Consensus │ │ │ ├── Cardano.hs │ │ │ └── Cardano │ │ │ ├── Block.hs │ │ │ ├── CanHardFork.hs │ │ │ ├── Condense.hs │ │ │ ├── Ledger.hs │ │ │ ├── Node.hs │ │ │ └── QueryHF.hs │ ├── shelley │ │ └── Ouroboros │ │ │ └── Consensus │ │ │ └── Shelley │ │ │ ├── Crypto.hs │ │ │ ├── Eras.hs │ │ │ ├── HFEras.hs │ │ │ ├── Ledger.hs │ │ │ ├── Ledger │ │ │ ├── Block.hs │ │ │ ├── Config.hs │ │ │ ├── Forge.hs │ │ │ ├── Inspect.hs │ │ │ ├── Integrity.hs │ │ │ ├── Ledger.hs │ │ │ ├── Mempool.hs │ │ │ ├── NetworkProtocolVersion.hs │ │ │ ├── PeerSelection.hs │ │ │ ├── Protocol.hs │ │ │ ├── Query.hs │ │ │ ├── Query │ │ │ │ └── Types.hs │ │ │ └── SupportsProtocol.hs │ │ │ ├── Node.hs │ │ │ ├── Node │ │ │ ├── Common.hs │ │ │ ├── DiffusionPipelining.hs │ │ │ ├── Praos.hs │ │ │ ├── Serialisation.hs │ │ │ └── TPraos.hs │ │ │ ├── Protocol │ │ │ ├── Abstract.hs │ │ │ ├── Praos.hs │ │ │ └── TPraos.hs │ │ │ └── ShelleyHFC.hs │ ├── unstable-byron-testlib │ │ ├── Ouroboros │ │ │ └── Consensus │ │ │ │ └── ByronDual │ │ │ │ ├── Ledger.hs │ │ │ │ ├── Node.hs │ │ │ │ └── Node │ │ │ │ └── Serialisation.hs │ │ └── Test │ │ │ ├── Consensus │ │ │ └── Byron │ │ │ │ ├── Examples.hs │ │ │ │ └── Generators.hs │ │ │ └── ThreadNet │ │ │ ├── Infra │ │ │ ├── Byron.hs │ │ │ └── Byron │ │ │ │ ├── Genesis.hs │ │ │ │ ├── ProtocolInfo.hs │ │ │ │ └── TrackUpdates.hs │ │ │ └── TxGen │ │ │ └── Byron.hs │ ├── unstable-byronspec │ │ └── Ouroboros │ │ │ └── Consensus │ │ │ └── ByronSpec │ │ │ ├── Ledger.hs │ │ │ └── Ledger │ │ │ ├── Accessors.hs │ │ │ ├── Block.hs │ │ │ ├── Conversions.hs │ │ │ ├── Forge.hs │ │ │ ├── GenTx.hs │ │ │ ├── Genesis.hs │ │ │ ├── Ledger.hs │ │ │ ├── Mempool.hs │ │ │ ├── Orphans.hs │ │ │ └── Rules.hs │ ├── unstable-cardano-testlib │ │ └── Test │ │ │ ├── Consensus │ │ │ └── Cardano │ │ │ │ ├── Examples.hs │ │ │ │ ├── Generators.hs │ │ │ │ ├── MockCrypto.hs │ │ │ │ └── ProtocolInfo.hs │ │ │ └── ThreadNet │ │ │ ├── Infra │ │ │ ├── ShelleyBasedHardFork.hs │ │ │ └── TwoEras.hs │ │ │ └── TxGen │ │ │ ├── Allegra.hs │ │ │ ├── Alonzo.hs │ │ │ ├── Babbage.hs │ │ │ ├── Cardano.hs │ │ │ └── Mary.hs │ ├── unstable-cardano-tools │ │ └── Cardano │ │ │ ├── Api │ │ │ ├── Any.hs │ │ │ ├── Key.hs │ │ │ ├── KeysByron.hs │ │ │ ├── KeysPraos.hs │ │ │ ├── KeysShelley.hs │ │ │ ├── OperationalCertificate.hs │ │ │ ├── Protocol │ │ │ │ └── Types.hs │ │ │ ├── SerialiseTextEnvelope.hs │ │ │ └── SerialiseUsing.hs │ │ │ ├── Node │ │ │ ├── Protocol.hs │ │ │ ├── Protocol │ │ │ │ ├── Alonzo.hs │ │ │ │ ├── Byron.hs │ │ │ │ ├── Cardano.hs │ │ │ │ ├── Conway.hs │ │ │ │ ├── Shelley.hs │ │ │ │ └── Types.hs │ │ │ └── Types.hs │ │ │ └── Tools │ │ │ ├── DBAnalyser │ │ │ ├── Analysis.hs │ │ │ ├── Analysis │ │ │ │ └── BenchmarkLedgerOps │ │ │ │ │ ├── FileWriting.hs │ │ │ │ │ ├── Metadata.hs │ │ │ │ │ └── SlotDataPoint.hs │ │ │ ├── Block │ │ │ │ ├── Byron.hs │ │ │ │ ├── Cardano.hs │ │ │ │ └── Shelley.hs │ │ │ ├── CSV.hs │ │ │ ├── HasAnalysis.hs │ │ │ ├── Run.hs │ │ │ └── Types.hs │ │ │ ├── DBImmutaliser │ │ │ └── Run.hs │ │ │ ├── DBSynthesizer │ │ │ ├── Forging.hs │ │ │ ├── Orphans.hs │ │ │ ├── Run.hs │ │ │ └── Types.hs │ │ │ ├── DBTruncater │ │ │ ├── Run.hs │ │ │ └── Types.hs │ │ │ ├── GitRev.hs │ │ │ ├── Headers.hs │ │ │ └── ImmDBServer │ │ │ ├── Diffusion.hs │ │ │ └── MiniProtocols.hs │ └── unstable-shelley-testlib │ │ └── Test │ │ ├── Consensus │ │ └── Shelley │ │ │ ├── Examples.hs │ │ │ ├── Generators.hs │ │ │ └── MockCrypto.hs │ │ └── ThreadNet │ │ ├── Infra │ │ └── Shelley.hs │ │ └── TxGen │ │ └── Shelley.hs └── test │ ├── byron-test │ ├── Main.hs │ └── Test │ │ ├── Consensus │ │ └── Byron │ │ │ ├── Golden.hs │ │ │ ├── LedgerTables.hs │ │ │ └── Serialisation.hs │ │ └── ThreadNet │ │ ├── Byron.hs │ │ └── DualByron.hs │ ├── cardano-test │ ├── Main.hs │ └── Test │ │ ├── Consensus │ │ └── Cardano │ │ │ ├── DiffusionPipelining.hs │ │ │ ├── Golden.hs │ │ │ ├── MiniProtocol │ │ │ └── LocalTxSubmission │ │ │ │ ├── ByteStringTxParser.hs │ │ │ │ └── Server.hs │ │ │ ├── Serialisation.hs │ │ │ ├── Show.hs │ │ │ ├── SupportedNetworkProtocolVersion.hs │ │ │ ├── SupportsSanityCheck.hs │ │ │ └── Translation.hs │ │ └── ThreadNet │ │ ├── AllegraMary.hs │ │ ├── Cardano.hs │ │ ├── MaryAlonzo.hs │ │ └── ShelleyAllegra.hs │ ├── shelley-test │ ├── Main.hs │ └── Test │ │ ├── Consensus │ │ └── Shelley │ │ │ ├── Coherence.hs │ │ │ ├── Golden.hs │ │ │ ├── LedgerTables.hs │ │ │ ├── Serialisation.hs │ │ │ └── SupportedNetworkProtocolVersion.hs │ │ └── ThreadNet │ │ └── Shelley.hs │ └── tools-test │ ├── Main.hs │ ├── Test │ └── Cardano │ │ └── Tools │ │ └── Headers.hs │ └── disk │ └── config │ ├── alonzo-genesis.json │ ├── bulk-creds-k2.json │ ├── byron-genesis.json │ ├── config.json │ ├── conway-genesis.json │ └── shelley-genesis.json ├── ouroboros-consensus-diffusion ├── CHANGELOG.md ├── LICENSE ├── NOTICE ├── README.md ├── changelog.d │ ├── 20250512_165249_alexander.esgen_genesis_caughtup_final_chainsel.md │ └── scriv.ini ├── ouroboros-consensus-diffusion.cabal ├── src │ ├── ouroboros-consensus-diffusion │ │ └── Ouroboros │ │ │ └── Consensus │ │ │ ├── Network │ │ │ ├── NodeToClient.hs │ │ │ └── NodeToNode.hs │ │ │ ├── Node.hs │ │ │ ├── Node │ │ │ ├── DbLock.hs │ │ │ ├── DbMarker.hs │ │ │ ├── ErrorPolicy.hs │ │ │ ├── Exit.hs │ │ │ ├── ExitPolicy.hs │ │ │ ├── GSM.hs │ │ │ ├── Genesis.hs │ │ │ ├── Recovery.hs │ │ │ ├── RethrowPolicy.hs │ │ │ └── Tracers.hs │ │ │ └── NodeKernel.hs │ ├── unstable-diffusion-testlib │ │ └── Test │ │ │ └── ThreadNet │ │ │ ├── General.hs │ │ │ ├── Network.hs │ │ │ ├── Ref │ │ │ └── PBFT.hs │ │ │ ├── Rekeying.hs │ │ │ ├── TxGen.hs │ │ │ ├── Util.hs │ │ │ └── Util │ │ │ ├── Expectations.hs │ │ │ ├── HasCreator.hs │ │ │ ├── NodeJoinPlan.hs │ │ │ ├── NodeRestarts.hs │ │ │ ├── NodeToNodeVersion.hs │ │ │ ├── NodeTopology.hs │ │ │ └── Seed.hs │ └── unstable-mock-testlib │ │ └── Test │ │ ├── Consensus │ │ └── Ledger │ │ │ └── Mock │ │ │ └── Generators.hs │ │ └── ThreadNet │ │ ├── TxGen │ │ └── Mock.hs │ │ └── Util │ │ ├── HasCreator │ │ └── Mock.hs │ │ └── SimpleBlock.hs └── test │ ├── consensus-test │ ├── Main.hs │ └── Test │ │ ├── Consensus │ │ ├── BlockTree.hs │ │ ├── GSM.hs │ │ ├── GSM │ │ │ └── Model.hs │ │ ├── Genesis │ │ │ ├── Setup.hs │ │ │ ├── Setup │ │ │ │ ├── Classifiers.hs │ │ │ │ └── GenChains.hs │ │ │ ├── Tests.hs │ │ │ └── Tests │ │ │ │ ├── CSJ.hs │ │ │ │ ├── DensityDisconnect.hs │ │ │ │ ├── LoE.hs │ │ │ │ ├── LoE │ │ │ │ └── CaughtUp.hs │ │ │ │ ├── LoP.hs │ │ │ │ ├── LongRangeAttack.hs │ │ │ │ └── Uniform.hs │ │ ├── HardFork │ │ │ ├── Combinator.hs │ │ │ └── Combinator │ │ │ │ ├── A.hs │ │ │ │ └── B.hs │ │ ├── IOSimQSM │ │ │ └── Test │ │ │ │ └── StateMachine │ │ │ │ └── Sequential.hs │ │ ├── Network │ │ │ └── AnchoredFragment │ │ │ │ └── Extras.hs │ │ ├── Node.hs │ │ ├── PeerSimulator │ │ │ ├── BlockFetch.hs │ │ │ ├── CSJInvariants.hs │ │ │ ├── ChainSync.hs │ │ │ ├── Config.hs │ │ │ ├── Handlers.hs │ │ │ ├── NodeLifecycle.hs │ │ │ ├── Resources.hs │ │ │ ├── Run.hs │ │ │ ├── ScheduledBlockFetchServer.hs │ │ │ ├── ScheduledChainSyncServer.hs │ │ │ ├── ScheduledServer.hs │ │ │ ├── StateDiagram.hs │ │ │ ├── StateView.hs │ │ │ ├── Tests.hs │ │ │ ├── Tests │ │ │ │ ├── LinkedThreads.hs │ │ │ │ ├── Rollback.hs │ │ │ │ └── Timeouts.hs │ │ │ └── Trace.hs │ │ ├── PointSchedule.hs │ │ └── PointSchedule │ │ │ ├── NodeState.hs │ │ │ ├── Peers.hs │ │ │ ├── Shrinking.hs │ │ │ ├── Shrinking │ │ │ └── Tests.hs │ │ │ ├── SinglePeer.hs │ │ │ ├── SinglePeer │ │ │ └── Indices.hs │ │ │ └── Tests.hs │ │ └── Util │ │ ├── PartialAccessors.hs │ │ └── TersePrinting.hs │ ├── infra-test │ ├── Main.hs │ └── Test │ │ └── ThreadNet │ │ └── Util │ │ └── Tests.hs │ └── mock-test │ ├── Main.hs │ └── Test │ ├── Consensus │ └── Ledger │ │ ├── Mock.hs │ │ └── Mock │ │ └── LedgerTables.hs │ └── ThreadNet │ ├── BFT.hs │ ├── LeaderSchedule.hs │ ├── PBFT.hs │ └── Praos.hs ├── ouroboros-consensus-protocol ├── CHANGELOG.md ├── LICENSE ├── NOTICE ├── README.md ├── changelog.d │ ├── 20250528_162423_javier.sagredo_withoriginth.md │ └── scriv.ini ├── ouroboros-consensus-protocol.cabal ├── src │ ├── ouroboros-consensus-protocol │ │ └── Ouroboros │ │ │ └── Consensus │ │ │ └── Protocol │ │ │ ├── Ledger │ │ │ ├── HotKey.hs │ │ │ └── Util.hs │ │ │ ├── Praos.hs │ │ │ ├── Praos │ │ │ ├── Common.hs │ │ │ ├── Header.hs │ │ │ ├── VRF.hs │ │ │ └── Views.hs │ │ │ └── TPraos.hs │ └── unstable-protocol-testlib │ │ └── Test │ │ ├── Consensus │ │ └── Protocol │ │ │ └── Serialisation │ │ │ └── Generators.hs │ │ └── Ouroboros │ │ └── Consensus │ │ └── Protocol │ │ └── Praos │ │ └── Header.hs └── test │ └── protocol-test │ ├── Main.hs │ └── Test │ └── Consensus │ └── Protocol │ └── Praos │ └── SelectView.hs ├── ouroboros-consensus ├── CHANGELOG.md ├── LICENSE ├── NOTICE ├── README.md ├── bench │ ├── ChainSync-client-bench │ │ ├── Bench │ │ │ └── Consensus │ │ │ │ └── ChainSyncClient │ │ │ │ └── Driver.hs │ │ └── Main.hs │ └── mempool-bench │ │ ├── Bench │ │ └── Consensus │ │ │ ├── Mempool.hs │ │ │ └── Mempool │ │ │ └── TestBlock.hs │ │ └── Main.hs ├── changelog.d │ ├── 20250512_164809_alexander.esgen_genesis_caughtup_final_chainsel.md │ ├── 20250512_165110_alexander.esgen_genesis_caughtup_final_chainsel.md │ ├── 20250519_193751_alexander.esgen_v2_ledgerseq_close.md │ ├── 20250528_135650_alexander.esgen_v2_ledgerseq_close.md │ ├── 20250528_160421_javier.sagredo.md │ ├── 20250602_100145_alexander.esgen_small_opts.md │ └── scriv.ini ├── docs │ └── haddocks │ │ └── bogus.svg ├── ouroboros-consensus.cabal ├── src │ ├── ouroboros-consensus │ │ └── Ouroboros │ │ │ └── Consensus │ │ │ ├── Block.hs │ │ │ ├── Block │ │ │ ├── Abstract.hs │ │ │ ├── EBB.hs │ │ │ ├── Forging.hs │ │ │ ├── NestedContent.hs │ │ │ ├── RealPoint.hs │ │ │ ├── SupportsDiffusionPipelining.hs │ │ │ ├── SupportsMetrics.hs │ │ │ ├── SupportsProtocol.hs │ │ │ └── SupportsSanityCheck.hs │ │ │ ├── BlockchainTime.hs │ │ │ ├── BlockchainTime │ │ │ ├── API.hs │ │ │ └── WallClock │ │ │ │ ├── Default.hs │ │ │ │ ├── HardFork.hs │ │ │ │ ├── Simple.hs │ │ │ │ ├── Types.hs │ │ │ │ └── Util.hs │ │ │ ├── Config.hs │ │ │ ├── Config │ │ │ ├── SecurityParam.hs │ │ │ └── SupportsNode.hs │ │ │ ├── Forecast.hs │ │ │ ├── Fragment │ │ │ ├── Diff.hs │ │ │ ├── Validated.hs │ │ │ └── ValidatedDiff.hs │ │ │ ├── Genesis │ │ │ └── Governor.hs │ │ │ ├── HardFork │ │ │ ├── Abstract.hs │ │ │ ├── Combinator.hs │ │ │ ├── Combinator │ │ │ │ ├── Abstract.hs │ │ │ │ ├── Abstract │ │ │ │ │ ├── CanHardFork.hs │ │ │ │ │ ├── NoHardForks.hs │ │ │ │ │ └── SingleEraBlock.hs │ │ │ │ ├── AcrossEras.hs │ │ │ │ ├── Basics.hs │ │ │ │ ├── Block.hs │ │ │ │ ├── Condense.hs │ │ │ │ ├── Degenerate.hs │ │ │ │ ├── Embed │ │ │ │ │ ├── Binary.hs │ │ │ │ │ ├── Nary.hs │ │ │ │ │ └── Unary.hs │ │ │ │ ├── Forging.hs │ │ │ │ ├── Info.hs │ │ │ │ ├── InjectTxs.hs │ │ │ │ ├── Ledger.hs │ │ │ │ ├── Ledger │ │ │ │ │ ├── CommonProtocolParams.hs │ │ │ │ │ ├── PeerSelection.hs │ │ │ │ │ └── Query.hs │ │ │ │ ├── Lifting.hs │ │ │ │ ├── Mempool.hs │ │ │ │ ├── NetworkVersion.hs │ │ │ │ ├── Node.hs │ │ │ │ ├── Node │ │ │ │ │ ├── DiffusionPipelining.hs │ │ │ │ │ ├── InitStorage.hs │ │ │ │ │ ├── Metrics.hs │ │ │ │ │ └── SanityCheck.hs │ │ │ │ ├── PartialConfig.hs │ │ │ │ ├── Protocol.hs │ │ │ │ ├── Protocol │ │ │ │ │ ├── ChainSel.hs │ │ │ │ │ └── LedgerView.hs │ │ │ │ ├── Serialisation.hs │ │ │ │ ├── Serialisation │ │ │ │ │ ├── Common.hs │ │ │ │ │ ├── SerialiseDisk.hs │ │ │ │ │ ├── SerialiseNodeToClient.hs │ │ │ │ │ └── SerialiseNodeToNode.hs │ │ │ │ ├── State.hs │ │ │ │ ├── State │ │ │ │ │ ├── Infra.hs │ │ │ │ │ ├── Instances.hs │ │ │ │ │ ├── Lift.hs │ │ │ │ │ └── Types.hs │ │ │ │ └── Translation.hs │ │ │ ├── History.hs │ │ │ ├── History │ │ │ │ ├── Caching.hs │ │ │ │ ├── EpochInfo.hs │ │ │ │ ├── EraParams.hs │ │ │ │ ├── Qry.hs │ │ │ │ ├── Summary.hs │ │ │ │ └── Util.hs │ │ │ └── Simple.hs │ │ │ ├── HeaderStateHistory.hs │ │ │ ├── HeaderValidation.hs │ │ │ ├── Ledger │ │ │ ├── Abstract.hs │ │ │ ├── Basics.hs │ │ │ ├── CommonProtocolParams.hs │ │ │ ├── Dual.hs │ │ │ ├── Extended.hs │ │ │ ├── Inspect.hs │ │ │ ├── Query.hs │ │ │ ├── Query │ │ │ │ └── Version.hs │ │ │ ├── SupportsMempool.hs │ │ │ ├── SupportsPeerSelection.hs │ │ │ ├── SupportsProtocol.hs │ │ │ ├── Tables.hs │ │ │ └── Tables │ │ │ │ ├── Basics.hs │ │ │ │ ├── Combinators.hs │ │ │ │ ├── Diff.hs │ │ │ │ ├── MapKind.hs │ │ │ │ └── Utils.hs │ │ │ ├── Mempool.hs │ │ │ ├── Mempool │ │ │ ├── API.hs │ │ │ ├── Capacity.hs │ │ │ ├── Impl │ │ │ │ └── Common.hs │ │ │ ├── Init.hs │ │ │ ├── Query.hs │ │ │ ├── TxSeq.hs │ │ │ └── Update.hs │ │ │ ├── MiniProtocol │ │ │ ├── BlockFetch │ │ │ │ ├── ClientInterface.hs │ │ │ │ └── Server.hs │ │ │ ├── ChainSync │ │ │ │ ├── Client.hs │ │ │ │ ├── Client │ │ │ │ │ ├── HistoricityCheck.hs │ │ │ │ │ ├── InFutureCheck.hs │ │ │ │ │ ├── Jumping.hs │ │ │ │ │ └── State.hs │ │ │ │ └── Server.hs │ │ │ ├── LocalStateQuery │ │ │ │ └── Server.hs │ │ │ ├── LocalTxMonitor │ │ │ │ └── Server.hs │ │ │ └── LocalTxSubmission │ │ │ │ └── Server.hs │ │ │ ├── Node │ │ │ ├── GsmState.hs │ │ │ ├── InitStorage.hs │ │ │ ├── NetworkProtocolVersion.hs │ │ │ ├── ProtocolInfo.hs │ │ │ ├── Run.hs │ │ │ └── Serialisation.hs │ │ │ ├── NodeId.hs │ │ │ ├── Protocol │ │ │ ├── Abstract.hs │ │ │ ├── BFT.hs │ │ │ ├── LeaderSchedule.hs │ │ │ ├── MockChainSel.hs │ │ │ ├── ModChainSel.hs │ │ │ ├── PBFT.hs │ │ │ ├── PBFT │ │ │ │ ├── Crypto.hs │ │ │ │ └── State.hs │ │ │ └── Signed.hs │ │ │ ├── Storage │ │ │ ├── ChainDB.hs │ │ │ ├── ChainDB │ │ │ │ ├── API.hs │ │ │ │ ├── API │ │ │ │ │ └── Types │ │ │ │ │ │ └── InvalidBlockPunishment.hs │ │ │ │ ├── Impl.hs │ │ │ │ ├── Impl │ │ │ │ │ ├── Args.hs │ │ │ │ │ ├── Background.hs │ │ │ │ │ ├── BlockCache.hs │ │ │ │ │ ├── ChainSel.hs │ │ │ │ │ ├── Follower.hs │ │ │ │ │ ├── Iterator.hs │ │ │ │ │ ├── Paths.hs │ │ │ │ │ ├── Query.hs │ │ │ │ │ └── Types.hs │ │ │ │ └── Init.hs │ │ │ ├── Common.hs │ │ │ ├── ImmutableDB.hs │ │ │ ├── ImmutableDB │ │ │ │ ├── API.hs │ │ │ │ ├── Chunks.hs │ │ │ │ ├── Chunks │ │ │ │ │ ├── Internal.hs │ │ │ │ │ └── Layout.hs │ │ │ │ ├── Impl.hs │ │ │ │ ├── Impl │ │ │ │ │ ├── Index.hs │ │ │ │ │ ├── Index │ │ │ │ │ │ ├── Cache.hs │ │ │ │ │ │ ├── Primary.hs │ │ │ │ │ │ └── Secondary.hs │ │ │ │ │ ├── Iterator.hs │ │ │ │ │ ├── Parser.hs │ │ │ │ │ ├── State.hs │ │ │ │ │ ├── Types.hs │ │ │ │ │ ├── Util.hs │ │ │ │ │ └── Validation.hs │ │ │ │ └── Stream.hs │ │ │ ├── LedgerDB.hs │ │ │ ├── LedgerDB │ │ │ │ ├── API.hs │ │ │ │ ├── Args.hs │ │ │ │ ├── Forker.hs │ │ │ │ ├── Snapshots.hs │ │ │ │ ├── TraceEvent.hs │ │ │ │ ├── V1.hs │ │ │ │ ├── V1 │ │ │ │ │ ├── Args.hs │ │ │ │ │ ├── BackingStore.hs │ │ │ │ │ ├── BackingStore │ │ │ │ │ │ ├── API.hs │ │ │ │ │ │ └── Impl │ │ │ │ │ │ │ ├── InMemory.hs │ │ │ │ │ │ │ ├── LMDB.hs │ │ │ │ │ │ │ └── LMDB │ │ │ │ │ │ │ ├── Bridge.hs │ │ │ │ │ │ │ └── Status.hs │ │ │ │ │ ├── DbChangelog.hs │ │ │ │ │ ├── DiffSeq.hs │ │ │ │ │ ├── Forker.hs │ │ │ │ │ ├── Lock.hs │ │ │ │ │ └── Snapshots.hs │ │ │ │ ├── V2.hs │ │ │ │ └── V2 │ │ │ │ │ ├── Args.hs │ │ │ │ │ ├── Forker.hs │ │ │ │ │ ├── InMemory.hs │ │ │ │ │ └── LedgerSeq.hs │ │ │ ├── Serialisation.hs │ │ │ ├── VolatileDB.hs │ │ │ └── VolatileDB │ │ │ │ ├── API.hs │ │ │ │ ├── Impl.hs │ │ │ │ └── Impl │ │ │ │ ├── FileInfo.hs │ │ │ │ ├── Index.hs │ │ │ │ ├── Parser.hs │ │ │ │ ├── State.hs │ │ │ │ ├── Types.hs │ │ │ │ └── Util.hs │ │ │ ├── Ticked.hs │ │ │ ├── TypeFamilyWrappers.hs │ │ │ ├── Util.hs │ │ │ └── Util │ │ │ ├── AnchoredFragment.hs │ │ │ ├── Args.hs │ │ │ ├── Assert.hs │ │ │ ├── CBOR.hs │ │ │ ├── CRC.hs │ │ │ ├── CallStack.hs │ │ │ ├── Condense.hs │ │ │ ├── DepPair.hs │ │ │ ├── EarlyExit.hs │ │ │ ├── Enclose.hs │ │ │ ├── FileLock.hs │ │ │ ├── HList.hs │ │ │ ├── IOLike.hs │ │ │ ├── IndexedMemPack.hs │ │ │ ├── LeakyBucket.hs │ │ │ ├── MonadSTM │ │ │ ├── NormalForm.hs │ │ │ └── StrictSVar.hs │ │ │ ├── NormalForm │ │ │ ├── StrictMVar.hs │ │ │ └── StrictTVar.hs │ │ │ ├── Orphans.hs │ │ │ ├── RedundantConstraints.hs │ │ │ ├── STM.hs │ │ │ ├── Time.hs │ │ │ └── Versioned.hs │ ├── unstable-consensus-testlib │ │ └── Test │ │ │ ├── LedgerTables.hs │ │ │ ├── Ouroboros │ │ │ └── Consensus │ │ │ │ ├── ChainGenerator │ │ │ │ ├── Adversarial.hs │ │ │ │ ├── BitVector.hs │ │ │ │ ├── Counting.hs │ │ │ │ ├── Honest.hs │ │ │ │ ├── Params.hs │ │ │ │ ├── README.md │ │ │ │ ├── RaceIterator.hs │ │ │ │ ├── Slot.hs │ │ │ │ └── Some.hs │ │ │ │ ├── DiffusionPipelining.hs │ │ │ │ └── Protocol.hs │ │ │ ├── QuickCheck │ │ │ └── Extras.hs │ │ │ └── Util │ │ │ ├── BoolProps.hs │ │ │ ├── ChainDB.hs │ │ │ ├── ChainUpdates.hs │ │ │ ├── ChunkInfo.hs │ │ │ ├── Corruption.hs │ │ │ ├── FileLock.hs │ │ │ ├── HardFork │ │ │ ├── Future.hs │ │ │ └── OracularClock.hs │ │ │ ├── Header.hs │ │ │ ├── InvertedMap.hs │ │ │ ├── LedgerStateOnlyTables.hs │ │ │ ├── LogicalClock.hs │ │ │ ├── MockChain.hs │ │ │ ├── Orphans │ │ │ ├── Arbitrary.hs │ │ │ ├── IOLike.hs │ │ │ ├── NoThunks.hs │ │ │ ├── Serialise.hs │ │ │ ├── SignableRepresentation.hs │ │ │ └── ToExpr.hs │ │ │ ├── Paths.hs │ │ │ ├── QSM.hs │ │ │ ├── QuickCheck.hs │ │ │ ├── Range.hs │ │ │ ├── RefEnv.hs │ │ │ ├── SOP.hs │ │ │ ├── SanityCheck.hs │ │ │ ├── Schedule.hs │ │ │ ├── Serialisation │ │ │ ├── Examples.hs │ │ │ ├── Golden.hs │ │ │ ├── Roundtrip.hs │ │ │ └── SomeResult.hs │ │ │ ├── Shrink.hs │ │ │ ├── Slots.hs │ │ │ ├── Split.hs │ │ │ ├── Stream.hs │ │ │ ├── SupportedNetworkProtocolVersion.hs │ │ │ ├── TestBlock.hs │ │ │ ├── TestEnv.hs │ │ │ ├── Time.hs │ │ │ ├── ToExpr.hs │ │ │ ├── Tracer.hs │ │ │ └── WithEq.hs │ ├── unstable-mempool-test-utils │ │ └── Test │ │ │ └── Consensus │ │ │ └── Mempool │ │ │ └── Mocked.hs │ ├── unstable-mock-block │ │ └── Ouroboros │ │ │ └── Consensus │ │ │ └── Mock │ │ │ ├── Ledger.hs │ │ │ ├── Ledger │ │ │ ├── Address.hs │ │ │ ├── Block.hs │ │ │ ├── Block │ │ │ │ ├── BFT.hs │ │ │ │ ├── PBFT.hs │ │ │ │ ├── Praos.hs │ │ │ │ └── PraosRule.hs │ │ │ ├── Forge.hs │ │ │ ├── Stake.hs │ │ │ ├── State.hs │ │ │ └── UTxO.hs │ │ │ ├── Node.hs │ │ │ ├── Node │ │ │ ├── Abstract.hs │ │ │ ├── BFT.hs │ │ │ ├── PBFT.hs │ │ │ ├── Praos.hs │ │ │ ├── PraosRule.hs │ │ │ └── Serialisation.hs │ │ │ └── Protocol │ │ │ ├── LeaderSchedule.hs │ │ │ └── Praos.hs │ └── unstable-tutorials │ │ └── Ouroboros │ │ └── Consensus │ │ └── Tutorial │ │ ├── Simple.lhs │ │ └── WithEpoch.lhs └── test │ ├── consensus-test │ ├── Main.hs │ └── Test │ │ └── Consensus │ │ ├── BlockchainTime │ │ └── Simple.hs │ │ ├── HardFork │ │ ├── Forecast.hs │ │ ├── History.hs │ │ ├── Infra.hs │ │ └── Summary.hs │ │ ├── HeaderValidation.hs │ │ ├── Ledger │ │ └── Tables │ │ │ ├── Diff.hs │ │ │ └── DiffSeq.hs │ │ ├── Mempool.hs │ │ ├── Mempool │ │ ├── Fairness.hs │ │ ├── Fairness │ │ │ └── TestBlock.hs │ │ ├── StateMachine.hs │ │ └── Util.hs │ │ ├── MiniProtocol │ │ ├── BlockFetch │ │ │ └── Client.hs │ │ ├── ChainSync │ │ │ ├── CSJ.hs │ │ │ └── Client.hs │ │ └── LocalStateQuery │ │ │ └── Server.hs │ │ └── Util │ │ ├── MonadSTM │ │ └── NormalForm.hs │ │ └── Versioned.hs │ ├── doctest.hs │ ├── infra-test │ ├── Main.hs │ ├── Ouroboros │ │ └── Consensus │ │ │ └── Util │ │ │ └── Tests.hs │ └── Test │ │ ├── Ouroboros │ │ └── Consensus │ │ │ ├── ChainGenerator │ │ │ ├── Tests.hs │ │ │ └── Tests │ │ │ │ ├── Adversarial.hs │ │ │ │ ├── BitVector.hs │ │ │ │ ├── Counting.hs │ │ │ │ └── Honest.hs │ │ │ └── Util │ │ │ └── LeakyBucket │ │ │ └── Tests.hs │ │ └── Util │ │ ├── ChainUpdates │ │ └── Tests.hs │ │ ├── Schedule │ │ └── Tests.hs │ │ └── Split │ │ └── Tests.hs │ └── storage-test │ ├── Main.hs │ └── Test │ └── Ouroboros │ ├── Storage.hs │ └── Storage │ ├── ChainDB.hs │ ├── ChainDB │ ├── FollowerPromptness.hs │ ├── GcSchedule.hs │ ├── Iterator.hs │ ├── Model.hs │ ├── Model │ │ └── Test.hs │ ├── Paths.hs │ ├── StateMachine.hs │ ├── StateMachine │ │ └── Utils │ │ │ └── RunOnRepl.hs │ └── Unit.hs │ ├── ImmutableDB.hs │ ├── ImmutableDB │ ├── Mock.hs │ ├── Model.hs │ ├── Primary.hs │ └── StateMachine.hs │ ├── LedgerDB.hs │ ├── LedgerDB │ ├── OnDisk.hs │ ├── Serialisation.hs │ ├── SnapshotPolicy.hs │ ├── Snapshots.hs │ ├── StateMachine.hs │ ├── StateMachine │ │ └── TestBlock.hs │ └── V1 │ │ ├── BackingStore.hs │ │ ├── BackingStore │ │ ├── Lockstep.hs │ │ └── Mock.hs │ │ ├── DbChangelog.hs │ │ └── LMDB.hs │ ├── Orphans.hs │ ├── TestBlock.hs │ ├── VolatileDB.hs │ └── VolatileDB │ ├── Mock.hs │ ├── Model.hs │ └── StateMachine.hs ├── scripts ├── ci │ ├── check-cabal-files.sh │ ├── check-changelogs.sh │ ├── regen-project-asserts.sh │ ├── run-cabal-gild.sh │ ├── run-dos2unix.sh │ ├── run-fourmolu.sh │ └── run-nixpkgs-fmt.sh ├── docs │ ├── Consensus.svg │ ├── c4-component.puml │ ├── haddocks.sh │ ├── modules-consensus.svg │ ├── packages-consensus.svg │ └── prologue.haddock ├── release │ ├── cabal-plan-diff.sh │ ├── create-release.hs │ ├── create-release.sh │ ├── dump-version-info.sh │ ├── release-to-chap.sh │ ├── strip-md-comments.py │ └── tag-release.sh └── slicing-node-logs │ ├── README.md │ ├── binning.awk │ ├── cumsum1.awk │ ├── prelude.jq │ └── slice.sh ├── shell.nix ├── sop-extras ├── CHANGELOG.md ├── LICENSE ├── NOTICE ├── changelog.d │ └── scriv.ini ├── sop-extras.cabal └── src │ └── Data │ └── SOP │ ├── Counting.hs │ ├── Functors.hs │ ├── InPairs.hs │ ├── Index.hs │ ├── Lenses.hs │ ├── Match.hs │ ├── NonEmpty.hs │ ├── OptNP.hs │ ├── Tails.hs │ └── Telescope.hs └── strict-sop-core ├── CHANGELOG.md ├── LICENSE ├── NOTICE ├── changelog.d └── scriv.ini ├── src └── Data │ └── SOP │ ├── Strict.hs │ └── Strict │ ├── NP.hs │ └── NS.hs └── strict-sop-core.cabal /.gitattributes: -------------------------------------------------------------------------------- 1 | # GitHub Linguist annotations. 2 | # https://github.com/github-linguist/linguist/blob/master/docs/overrides.md 3 | 4 | ouroboros-consensus-cardano/golden/**/* linguist-generated=true 5 | -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- 1 | # Set update schedule for GitHub Actions 2 | 3 | version: 2 4 | updates: 5 | 6 | - package-ecosystem: "github-actions" 7 | directory: "/" 8 | schedule: 9 | # Check for updates to GitHub Actions every weekday 10 | interval: "daily" 11 | -------------------------------------------------------------------------------- /.github/workflows/cabal.project.default.local: -------------------------------------------------------------------------------- 1 | package cardano-crypto-praos 2 | flags: -external-libsodium-vrf 3 | 4 | program-options 5 | ghc-options: -Werror 6 | -------------------------------------------------------------------------------- /.github/workflows/cabal.project.no-thunks.local: -------------------------------------------------------------------------------- 1 | import: .github/workflows/cabal.project.default.local 2 | 3 | package strict-checked-vars 4 | flags: +checktvarinvariants +checkmvarinvariants 5 | -------------------------------------------------------------------------------- /CODEOWNERS: -------------------------------------------------------------------------------- 1 | # Ouroboros-Consensus 2 | 3 | # These owners will be the default owners for everything in the repository. 4 | * @nfrisby @jasagredo @amesgen @fraser-iohk @dnadales @geo2a 5 | -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- 1 | See https://github.com/input-output-hk/cardano-engineering-handbook/blob/main/CODE-OF-CONDUCT.md 2 | -------------------------------------------------------------------------------- /docs/agda-spec/.gitignore: -------------------------------------------------------------------------------- 1 | *.agdai 2 | .DS_Store 3 | **/dist-newstyle/ 4 | .editorconfig 5 | result* 6 | 7 | *.pdf 8 | src/latex/ 9 | 10 | dist/ 11 | 12 | *.time 13 | -------------------------------------------------------------------------------- /docs/agda-spec/Makefile: -------------------------------------------------------------------------------- 1 | %: 2 | $(MAKE) -C src/ $@ 3 | -------------------------------------------------------------------------------- /docs/agda-spec/src/.gitignore: -------------------------------------------------------------------------------- 1 | *.lof 2 | !consensus-spec.bbl 3 | !rules.pdf 4 | -------------------------------------------------------------------------------- /docs/agda-spec/src/Data/Product/Ext.agda: -------------------------------------------------------------------------------- 1 | {-# OPTIONS --safe #-} 2 | 3 | module Data.Product.Ext where 4 | 5 | open import Data.Product.Base 6 | 7 | ×-dup : ∀ {ℓ} {A : Set ℓ} → A → A × A 8 | ×-dup x = x , x 9 | -------------------------------------------------------------------------------- /docs/agda-spec/src/Everything.agda: -------------------------------------------------------------------------------- 1 | module Everything where 2 | 3 | import Spec.PDF 4 | import Spec.Foreign.HSConsensus 5 | -------------------------------------------------------------------------------- /docs/agda-spec/src/Interface/HasAdd.agda: -------------------------------------------------------------------------------- 1 | {-# OPTIONS --safe --cubical-compatible #-} 2 | module Interface.HasAdd where 3 | 4 | record HasAdd (A : Set) : Set where 5 | infixl 6 _+_ 6 | field _+_ : A → A → A 7 | 8 | open HasAdd ⦃ ... ⦄ public 9 | -------------------------------------------------------------------------------- /docs/agda-spec/src/Interface/HasEmptySet.agda: -------------------------------------------------------------------------------- 1 | {-# OPTIONS --safe #-} 2 | 3 | module Interface.HasEmptySet where 4 | 5 | open import Prelude using (Type) 6 | 7 | record HasEmptySet (A : Type) : Type where 8 | field 9 | ∅ : A 10 | 11 | open HasEmptySet ⦃...⦄ public 12 | -------------------------------------------------------------------------------- /docs/agda-spec/src/Ledger/Interface/HasCoin.agda: -------------------------------------------------------------------------------- 1 | {-# OPTIONS --safe #-} 2 | 3 | module Ledger.Interface.HasCoin where 4 | 5 | open import Prelude 6 | open import Ledger.Prelude.Base 7 | 8 | record HasCoin {a} (A : Type a) : Type a where 9 | field getCoin : A → Coin 10 | 11 | open HasCoin ⦃...⦄ public 12 | -------------------------------------------------------------------------------- /docs/agda-spec/src/Ledger/Prelude/Base.agda: -------------------------------------------------------------------------------- 1 | {-# OPTIONS --safe #-} 2 | 3 | module Ledger.Prelude.Base where 4 | 5 | open import Data.Nat 6 | 7 | Coin = ℕ 8 | -------------------------------------------------------------------------------- /docs/agda-spec/src/Ledger/Set.agda: -------------------------------------------------------------------------------- 1 | {-# OPTIONS --safe #-} 2 | 3 | module Ledger.Set where 4 | 5 | open import Ledger.Set.Theory public 6 | open import Ledger.Set.HashMap public 7 | -------------------------------------------------------------------------------- /docs/agda-spec/src/Spec/Foreign/Util.agda: -------------------------------------------------------------------------------- 1 | module Spec.Foreign.Util where 2 | 3 | open import Ledger.Prelude 4 | 5 | postulate 6 | error : {A : Set} → String → A 7 | {-# FOREIGN GHC import Data.Text #-} 8 | {-# COMPILE GHC error = \ _ s -> error (unpack s) #-} 9 | -------------------------------------------------------------------------------- /docs/agda-spec/src/Spec/hs-src/cabal.project: -------------------------------------------------------------------------------- 1 | -- TODO: Remove this file when code is properly integrated to the existing setup 2 | packages: . 3 | -------------------------------------------------------------------------------- /docs/agda-spec/src/Spec/hs-src/test/Spec.hs: -------------------------------------------------------------------------------- 1 | {-# OPTIONS_GHC -F -pgmF hspec-discover #-} 2 | -------------------------------------------------------------------------------- /docs/agda-spec/src/formal-consensus.agda-lib: -------------------------------------------------------------------------------- 1 | name: formal-consensus 2 | depend: 3 | standard-library 4 | standard-library-classes 5 | standard-library-meta 6 | include: . 7 | -------------------------------------------------------------------------------- /docs/agda-spec/src/latex/fonts/StrippedJuliaMono-Black.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntersectMBO/ouroboros-consensus/946896723dbdf61b1f7e9de472cc19ecfb14cda1/docs/agda-spec/src/latex/fonts/StrippedJuliaMono-Black.ttf -------------------------------------------------------------------------------- /docs/agda-spec/src/latex/fonts/StrippedJuliaMono-BlackItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntersectMBO/ouroboros-consensus/946896723dbdf61b1f7e9de472cc19ecfb14cda1/docs/agda-spec/src/latex/fonts/StrippedJuliaMono-BlackItalic.ttf -------------------------------------------------------------------------------- /docs/agda-spec/src/latex/fonts/StrippedJuliaMono-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntersectMBO/ouroboros-consensus/946896723dbdf61b1f7e9de472cc19ecfb14cda1/docs/agda-spec/src/latex/fonts/StrippedJuliaMono-Bold.ttf -------------------------------------------------------------------------------- /docs/agda-spec/src/latex/fonts/StrippedJuliaMono-BoldItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntersectMBO/ouroboros-consensus/946896723dbdf61b1f7e9de472cc19ecfb14cda1/docs/agda-spec/src/latex/fonts/StrippedJuliaMono-BoldItalic.ttf -------------------------------------------------------------------------------- /docs/agda-spec/src/latex/fonts/StrippedJuliaMono-BoldLatin.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntersectMBO/ouroboros-consensus/946896723dbdf61b1f7e9de472cc19ecfb14cda1/docs/agda-spec/src/latex/fonts/StrippedJuliaMono-BoldLatin.ttf -------------------------------------------------------------------------------- /docs/agda-spec/src/latex/fonts/StrippedJuliaMono-ExtraBold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntersectMBO/ouroboros-consensus/946896723dbdf61b1f7e9de472cc19ecfb14cda1/docs/agda-spec/src/latex/fonts/StrippedJuliaMono-ExtraBold.ttf -------------------------------------------------------------------------------- /docs/agda-spec/src/latex/fonts/StrippedJuliaMono-ExtraBoldItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntersectMBO/ouroboros-consensus/946896723dbdf61b1f7e9de472cc19ecfb14cda1/docs/agda-spec/src/latex/fonts/StrippedJuliaMono-ExtraBoldItalic.ttf -------------------------------------------------------------------------------- /docs/agda-spec/src/latex/fonts/StrippedJuliaMono-Light.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntersectMBO/ouroboros-consensus/946896723dbdf61b1f7e9de472cc19ecfb14cda1/docs/agda-spec/src/latex/fonts/StrippedJuliaMono-Light.ttf -------------------------------------------------------------------------------- /docs/agda-spec/src/latex/fonts/StrippedJuliaMono-LightItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntersectMBO/ouroboros-consensus/946896723dbdf61b1f7e9de472cc19ecfb14cda1/docs/agda-spec/src/latex/fonts/StrippedJuliaMono-LightItalic.ttf -------------------------------------------------------------------------------- /docs/agda-spec/src/latex/fonts/StrippedJuliaMono-Medium.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntersectMBO/ouroboros-consensus/946896723dbdf61b1f7e9de472cc19ecfb14cda1/docs/agda-spec/src/latex/fonts/StrippedJuliaMono-Medium.ttf -------------------------------------------------------------------------------- /docs/agda-spec/src/latex/fonts/StrippedJuliaMono-MediumItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntersectMBO/ouroboros-consensus/946896723dbdf61b1f7e9de472cc19ecfb14cda1/docs/agda-spec/src/latex/fonts/StrippedJuliaMono-MediumItalic.ttf -------------------------------------------------------------------------------- /docs/agda-spec/src/latex/fonts/StrippedJuliaMono-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntersectMBO/ouroboros-consensus/946896723dbdf61b1f7e9de472cc19ecfb14cda1/docs/agda-spec/src/latex/fonts/StrippedJuliaMono-Regular.ttf -------------------------------------------------------------------------------- /docs/agda-spec/src/latex/fonts/StrippedJuliaMono-RegularItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntersectMBO/ouroboros-consensus/946896723dbdf61b1f7e9de472cc19ecfb14cda1/docs/agda-spec/src/latex/fonts/StrippedJuliaMono-RegularItalic.ttf -------------------------------------------------------------------------------- /docs/agda-spec/src/latex/fonts/StrippedJuliaMono-RegularLatin.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntersectMBO/ouroboros-consensus/946896723dbdf61b1f7e9de472cc19ecfb14cda1/docs/agda-spec/src/latex/fonts/StrippedJuliaMono-RegularLatin.ttf -------------------------------------------------------------------------------- /docs/agda-spec/src/latex/fonts/StrippedJuliaMono-SemiBold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntersectMBO/ouroboros-consensus/946896723dbdf61b1f7e9de472cc19ecfb14cda1/docs/agda-spec/src/latex/fonts/StrippedJuliaMono-SemiBold.ttf -------------------------------------------------------------------------------- /docs/agda-spec/src/latex/fonts/StrippedJuliaMono-SemiBoldItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntersectMBO/ouroboros-consensus/946896723dbdf61b1f7e9de472cc19ecfb14cda1/docs/agda-spec/src/latex/fonts/StrippedJuliaMono-SemiBoldItalic.ttf -------------------------------------------------------------------------------- /docs/agda-spec/src/latex/iohk-share-logo.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntersectMBO/ouroboros-consensus/946896723dbdf61b1f7e9de472cc19ecfb14cda1/docs/agda-spec/src/latex/iohk-share-logo.jpg -------------------------------------------------------------------------------- /docs/agda-spec/src/latex/ledger-interface.tex: -------------------------------------------------------------------------------- 1 | \section{Ledger Interface} 2 | \label{sec:ledger-interface} 3 | 4 | This section describes the interface exposed by the Ledger Layer which is 5 | used by the Consensus Layer. 6 | 7 | \input{InterfaceLibrary/Ledger} 8 | -------------------------------------------------------------------------------- /docs/agda-spec/src/latex/rules.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntersectMBO/ouroboros-consensus/946896723dbdf61b1f7e9de472cc19ecfb14cda1/docs/agda-spec/src/latex/rules.pdf -------------------------------------------------------------------------------- /docs/formal-spec/.gitignore: -------------------------------------------------------------------------------- 1 | *.lof 2 | !consensus-spec.bbl 3 | !rules.pdf 4 | 5 | -------------------------------------------------------------------------------- /docs/formal-spec/iohk-share-logo.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntersectMBO/ouroboros-consensus/946896723dbdf61b1f7e9de472cc19ecfb14cda1/docs/formal-spec/iohk-share-logo.jpg -------------------------------------------------------------------------------- /docs/formal-spec/rules.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntersectMBO/ouroboros-consensus/946896723dbdf61b1f7e9de472cc19ecfb14cda1/docs/formal-spec/rules.pdf -------------------------------------------------------------------------------- /docs/tech-reports/report/.gitignore: -------------------------------------------------------------------------------- 1 | *.aux 2 | *.log 3 | *.out 4 | *.pdf 5 | *.toc 6 | *.bbl 7 | *.blg 8 | *.nav 9 | *.snm 10 | -------------------------------------------------------------------------------- /docs/tech-reports/report/chapters/conclusions/conclusions.tex: -------------------------------------------------------------------------------- 1 | \chapter{Conclusions} 2 | -------------------------------------------------------------------------------- /docs/tech-reports/report/chapters/testing/consensus.tex: -------------------------------------------------------------------------------- 1 | \chapter{Reaching consensus} 2 | \label{testing:consensus} 3 | 4 | \section{Dire-but-not-to-dire} 5 | \label{testing:dire} 6 | 7 | We should mention the PBFT threshold here \cref{bft-paper}. 8 | -------------------------------------------------------------------------------- /docs/tech-reports/report/chapters/testing/storage.tex: -------------------------------------------------------------------------------- 1 | \chapter{The storage layer} 2 | \label{testing:storage} 3 | -------------------------------------------------------------------------------- /docs/tech-reports/report/spellcheck.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | for i in `find . -name '*.tex'` 4 | do 5 | aspell --dont-backup -l en_GB -p ./report.dict -c $i 6 | done 7 | -------------------------------------------------------------------------------- /docs/tech-reports/report/unsoundswitch/cabal.project: -------------------------------------------------------------------------------- 1 | packages: unsoundswitch.cabal 2 | -------------------------------------------------------------------------------- /docs/tech-reports/utxo-db-lsm/Makefile: -------------------------------------------------------------------------------- 1 | 2 | all: utxo-db-lsm.pdf 3 | 4 | %.pdf: %.tex 5 | latexmk -bibtex -pdf $< 6 | 7 | clean: 8 | latexmk -CA 9 | -------------------------------------------------------------------------------- /docs/tech-reports/utxo-db/Makefile: -------------------------------------------------------------------------------- 1 | 2 | all: utxo-db.pdf utxo-db-api.pdf 3 | 4 | %.pdf: %.tex 5 | latexmk -bibtex -pdf $< 6 | 7 | clean: 8 | latexmk -CA 9 | 10 | # utxo-db-api.pdf: hstore-anticaching-fig1.pdf 11 | -------------------------------------------------------------------------------- /docs/tech-reports/utxo-db/img/hstore-anticaching-fig1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntersectMBO/ouroboros-consensus/946896723dbdf61b1f7e9de472cc19ecfb14cda1/docs/tech-reports/utxo-db/img/hstore-anticaching-fig1.png -------------------------------------------------------------------------------- /docs/website/babel.config.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | presets: [require.resolve('@docusaurus/core/lib/babel/preset')], 3 | }; 4 | -------------------------------------------------------------------------------- /docs/website/contents/for-developers/PreflightGuide/plot-active-slots.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntersectMBO/ouroboros-consensus/946896723dbdf61b1f7e9de472cc19ecfb14cda1/docs/website/contents/for-developers/PreflightGuide/plot-active-slots.png -------------------------------------------------------------------------------- /docs/website/contents/for-developers/PreflightGuide/plot-grinding.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntersectMBO/ouroboros-consensus/946896723dbdf61b1f7e9de472cc19ecfb14cda1/docs/website/contents/for-developers/PreflightGuide/plot-grinding.png -------------------------------------------------------------------------------- /docs/website/contents/for-developers/PreflightGuide/plot-pooltool-slot-battles.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntersectMBO/ouroboros-consensus/946896723dbdf61b1f7e9de472cc19ecfb14cda1/docs/website/contents/for-developers/PreflightGuide/plot-pooltool-slot-battles.png -------------------------------------------------------------------------------- /docs/website/contents/for-developers/PreflightGuide/plot-single-slot-leaders.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntersectMBO/ouroboros-consensus/946896723dbdf61b1f7e9de472cc19ecfb14cda1/docs/website/contents/for-developers/PreflightGuide/plot-single-slot-leaders.png -------------------------------------------------------------------------------- /docs/website/src/components/HomepageFeatures/styles.module.css: -------------------------------------------------------------------------------- 1 | .features { 2 | display: flex; 3 | align-items: center; 4 | padding: 2rem 0; 5 | width: 100%; 6 | } 7 | 8 | .featureSvg { 9 | height: 200px; 10 | } 11 | -------------------------------------------------------------------------------- /docs/website/src/pages/markdown-page.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: Markdown page example 3 | --- 4 | 5 | # Markdown page example 6 | 7 | You don't need React to write simple standalone pages. 8 | -------------------------------------------------------------------------------- /docs/website/static/.nojekyll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntersectMBO/ouroboros-consensus/946896723dbdf61b1f7e9de472cc19ecfb14cda1/docs/website/static/.nojekyll -------------------------------------------------------------------------------- /docs/website/static/img/cardano_icon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntersectMBO/ouroboros-consensus/946896723dbdf61b1f7e9de472cc19ecfb14cda1/docs/website/static/img/cardano_icon.ico -------------------------------------------------------------------------------- /docs/website/static/img/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntersectMBO/ouroboros-consensus/946896723dbdf61b1f7e9de472cc19ecfb14cda1/docs/website/static/img/favicon.ico -------------------------------------------------------------------------------- /docs/website/static/img/ouroboros-image.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntersectMBO/ouroboros-consensus/946896723dbdf61b1f7e9de472cc19ecfb14cda1/docs/website/static/img/ouroboros-image.webp -------------------------------------------------------------------------------- /fourmolu.yaml: -------------------------------------------------------------------------------- 1 | indentation: 2 2 | column-limit: 100 3 | import-export-style: leading 4 | haddock-style: single-line 5 | single-constraint-parens: never 6 | single-deriving-parens: never 7 | import-grouping: single 8 | -------------------------------------------------------------------------------- /hie.yaml: -------------------------------------------------------------------------------- 1 | cradle: 2 | cabal: 3 | -------------------------------------------------------------------------------- /ouroboros-consensus-cardano/golden/byron/ByronNodeToNodeVersion2/Block_EBB: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntersectMBO/ouroboros-consensus/946896723dbdf61b1f7e9de472cc19ecfb14cda1/ouroboros-consensus-cardano/golden/byron/ByronNodeToNodeVersion2/Block_EBB -------------------------------------------------------------------------------- /ouroboros-consensus-cardano/golden/byron/ByronNodeToNodeVersion2/Block_regular: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntersectMBO/ouroboros-consensus/946896723dbdf61b1f7e9de472cc19ecfb14cda1/ouroboros-consensus-cardano/golden/byron/ByronNodeToNodeVersion2/Block_regular -------------------------------------------------------------------------------- /ouroboros-consensus-cardano/golden/byron/ByronNodeToNodeVersion2/GenTx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntersectMBO/ouroboros-consensus/946896723dbdf61b1f7e9de472cc19ecfb14cda1/ouroboros-consensus-cardano/golden/byron/ByronNodeToNodeVersion2/GenTx -------------------------------------------------------------------------------- /ouroboros-consensus-cardano/golden/byron/ByronNodeToNodeVersion2/GenTxId: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntersectMBO/ouroboros-consensus/946896723dbdf61b1f7e9de472cc19ecfb14cda1/ouroboros-consensus-cardano/golden/byron/ByronNodeToNodeVersion2/GenTxId -------------------------------------------------------------------------------- /ouroboros-consensus-cardano/golden/byron/ByronNodeToNodeVersion2/Header_EBB: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntersectMBO/ouroboros-consensus/946896723dbdf61b1f7e9de472cc19ecfb14cda1/ouroboros-consensus-cardano/golden/byron/ByronNodeToNodeVersion2/Header_EBB -------------------------------------------------------------------------------- /ouroboros-consensus-cardano/golden/byron/ByronNodeToNodeVersion2/Header_regular: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntersectMBO/ouroboros-consensus/946896723dbdf61b1f7e9de472cc19ecfb14cda1/ouroboros-consensus-cardano/golden/byron/ByronNodeToNodeVersion2/Header_regular -------------------------------------------------------------------------------- /ouroboros-consensus-cardano/golden/byron/ByronNodeToNodeVersion2/SerialisedBlock_EBB: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntersectMBO/ouroboros-consensus/946896723dbdf61b1f7e9de472cc19ecfb14cda1/ouroboros-consensus-cardano/golden/byron/ByronNodeToNodeVersion2/SerialisedBlock_EBB -------------------------------------------------------------------------------- /ouroboros-consensus-cardano/golden/byron/ByronNodeToNodeVersion2/SerialisedBlock_regular: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntersectMBO/ouroboros-consensus/946896723dbdf61b1f7e9de472cc19ecfb14cda1/ouroboros-consensus-cardano/golden/byron/ByronNodeToNodeVersion2/SerialisedBlock_regular -------------------------------------------------------------------------------- /ouroboros-consensus-cardano/golden/byron/ByronNodeToNodeVersion2/SerialisedHeader_EBB: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntersectMBO/ouroboros-consensus/946896723dbdf61b1f7e9de472cc19ecfb14cda1/ouroboros-consensus-cardano/golden/byron/ByronNodeToNodeVersion2/SerialisedHeader_EBB -------------------------------------------------------------------------------- /ouroboros-consensus-cardano/golden/byron/ByronNodeToNodeVersion2/SerialisedHeader_regular: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntersectMBO/ouroboros-consensus/946896723dbdf61b1f7e9de472cc19ecfb14cda1/ouroboros-consensus-cardano/golden/byron/ByronNodeToNodeVersion2/SerialisedHeader_regular -------------------------------------------------------------------------------- /ouroboros-consensus-cardano/golden/byron/QueryVersion2/ByronNodeToClientVersion1/ApplyTxErr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntersectMBO/ouroboros-consensus/946896723dbdf61b1f7e9de472cc19ecfb14cda1/ouroboros-consensus-cardano/golden/byron/QueryVersion2/ByronNodeToClientVersion1/ApplyTxErr -------------------------------------------------------------------------------- /ouroboros-consensus-cardano/golden/byron/QueryVersion2/ByronNodeToClientVersion1/Block_EBB: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntersectMBO/ouroboros-consensus/946896723dbdf61b1f7e9de472cc19ecfb14cda1/ouroboros-consensus-cardano/golden/byron/QueryVersion2/ByronNodeToClientVersion1/Block_EBB -------------------------------------------------------------------------------- /ouroboros-consensus-cardano/golden/byron/QueryVersion2/ByronNodeToClientVersion1/Block_regular: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntersectMBO/ouroboros-consensus/946896723dbdf61b1f7e9de472cc19ecfb14cda1/ouroboros-consensus-cardano/golden/byron/QueryVersion2/ByronNodeToClientVersion1/Block_regular -------------------------------------------------------------------------------- /ouroboros-consensus-cardano/golden/byron/QueryVersion2/ByronNodeToClientVersion1/GenTx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntersectMBO/ouroboros-consensus/946896723dbdf61b1f7e9de472cc19ecfb14cda1/ouroboros-consensus-cardano/golden/byron/QueryVersion2/ByronNodeToClientVersion1/GenTx -------------------------------------------------------------------------------- /ouroboros-consensus-cardano/golden/byron/QueryVersion2/ByronNodeToClientVersion1/GenTxId: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntersectMBO/ouroboros-consensus/946896723dbdf61b1f7e9de472cc19ecfb14cda1/ouroboros-consensus-cardano/golden/byron/QueryVersion2/ByronNodeToClientVersion1/GenTxId -------------------------------------------------------------------------------- /ouroboros-consensus-cardano/golden/byron/QueryVersion2/ByronNodeToClientVersion1/LedgerConfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntersectMBO/ouroboros-consensus/946896723dbdf61b1f7e9de472cc19ecfb14cda1/ouroboros-consensus-cardano/golden/byron/QueryVersion2/ByronNodeToClientVersion1/LedgerConfig -------------------------------------------------------------------------------- /ouroboros-consensus-cardano/golden/byron/QueryVersion2/ByronNodeToClientVersion1/Query: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ouroboros-consensus-cardano/golden/byron/QueryVersion2/ByronNodeToClientVersion1/Result: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntersectMBO/ouroboros-consensus/946896723dbdf61b1f7e9de472cc19ecfb14cda1/ouroboros-consensus-cardano/golden/byron/QueryVersion2/ByronNodeToClientVersion1/Result -------------------------------------------------------------------------------- /ouroboros-consensus-cardano/golden/byron/QueryVersion2/ByronNodeToClientVersion1/SerialisedBlock_EBB: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntersectMBO/ouroboros-consensus/946896723dbdf61b1f7e9de472cc19ecfb14cda1/ouroboros-consensus-cardano/golden/byron/QueryVersion2/ByronNodeToClientVersion1/SerialisedBlock_EBB -------------------------------------------------------------------------------- /ouroboros-consensus-cardano/golden/byron/QueryVersion2/ByronNodeToClientVersion1/SerialisedBlock_regular: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntersectMBO/ouroboros-consensus/946896723dbdf61b1f7e9de472cc19ecfb14cda1/ouroboros-consensus-cardano/golden/byron/QueryVersion2/ByronNodeToClientVersion1/SerialisedBlock_regular -------------------------------------------------------------------------------- /ouroboros-consensus-cardano/golden/byron/QueryVersion2/ByronNodeToClientVersion1/SlotNo: -------------------------------------------------------------------------------- 1 | * -------------------------------------------------------------------------------- /ouroboros-consensus-cardano/golden/byron/QueryVersion3/ByronNodeToClientVersion1/ApplyTxErr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntersectMBO/ouroboros-consensus/946896723dbdf61b1f7e9de472cc19ecfb14cda1/ouroboros-consensus-cardano/golden/byron/QueryVersion3/ByronNodeToClientVersion1/ApplyTxErr -------------------------------------------------------------------------------- /ouroboros-consensus-cardano/golden/byron/QueryVersion3/ByronNodeToClientVersion1/Block_EBB: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntersectMBO/ouroboros-consensus/946896723dbdf61b1f7e9de472cc19ecfb14cda1/ouroboros-consensus-cardano/golden/byron/QueryVersion3/ByronNodeToClientVersion1/Block_EBB -------------------------------------------------------------------------------- /ouroboros-consensus-cardano/golden/byron/QueryVersion3/ByronNodeToClientVersion1/Block_regular: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntersectMBO/ouroboros-consensus/946896723dbdf61b1f7e9de472cc19ecfb14cda1/ouroboros-consensus-cardano/golden/byron/QueryVersion3/ByronNodeToClientVersion1/Block_regular -------------------------------------------------------------------------------- /ouroboros-consensus-cardano/golden/byron/QueryVersion3/ByronNodeToClientVersion1/GenTx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntersectMBO/ouroboros-consensus/946896723dbdf61b1f7e9de472cc19ecfb14cda1/ouroboros-consensus-cardano/golden/byron/QueryVersion3/ByronNodeToClientVersion1/GenTx -------------------------------------------------------------------------------- /ouroboros-consensus-cardano/golden/byron/QueryVersion3/ByronNodeToClientVersion1/GenTxId: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntersectMBO/ouroboros-consensus/946896723dbdf61b1f7e9de472cc19ecfb14cda1/ouroboros-consensus-cardano/golden/byron/QueryVersion3/ByronNodeToClientVersion1/GenTxId -------------------------------------------------------------------------------- /ouroboros-consensus-cardano/golden/byron/QueryVersion3/ByronNodeToClientVersion1/LedgerConfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntersectMBO/ouroboros-consensus/946896723dbdf61b1f7e9de472cc19ecfb14cda1/ouroboros-consensus-cardano/golden/byron/QueryVersion3/ByronNodeToClientVersion1/LedgerConfig -------------------------------------------------------------------------------- /ouroboros-consensus-cardano/golden/byron/QueryVersion3/ByronNodeToClientVersion1/Query: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ouroboros-consensus-cardano/golden/byron/QueryVersion3/ByronNodeToClientVersion1/Result: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntersectMBO/ouroboros-consensus/946896723dbdf61b1f7e9de472cc19ecfb14cda1/ouroboros-consensus-cardano/golden/byron/QueryVersion3/ByronNodeToClientVersion1/Result -------------------------------------------------------------------------------- /ouroboros-consensus-cardano/golden/byron/QueryVersion3/ByronNodeToClientVersion1/SerialisedBlock_EBB: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntersectMBO/ouroboros-consensus/946896723dbdf61b1f7e9de472cc19ecfb14cda1/ouroboros-consensus-cardano/golden/byron/QueryVersion3/ByronNodeToClientVersion1/SerialisedBlock_EBB -------------------------------------------------------------------------------- /ouroboros-consensus-cardano/golden/byron/QueryVersion3/ByronNodeToClientVersion1/SerialisedBlock_regular: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntersectMBO/ouroboros-consensus/946896723dbdf61b1f7e9de472cc19ecfb14cda1/ouroboros-consensus-cardano/golden/byron/QueryVersion3/ByronNodeToClientVersion1/SerialisedBlock_regular -------------------------------------------------------------------------------- /ouroboros-consensus-cardano/golden/byron/QueryVersion3/ByronNodeToClientVersion1/SlotNo: -------------------------------------------------------------------------------- 1 | * -------------------------------------------------------------------------------- /ouroboros-consensus-cardano/golden/byron/disk/AnnTip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntersectMBO/ouroboros-consensus/946896723dbdf61b1f7e9de472cc19ecfb14cda1/ouroboros-consensus-cardano/golden/byron/disk/AnnTip -------------------------------------------------------------------------------- /ouroboros-consensus-cardano/golden/byron/disk/Block_EBB: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntersectMBO/ouroboros-consensus/946896723dbdf61b1f7e9de472cc19ecfb14cda1/ouroboros-consensus-cardano/golden/byron/disk/Block_EBB -------------------------------------------------------------------------------- /ouroboros-consensus-cardano/golden/byron/disk/Block_regular: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntersectMBO/ouroboros-consensus/946896723dbdf61b1f7e9de472cc19ecfb14cda1/ouroboros-consensus-cardano/golden/byron/disk/Block_regular -------------------------------------------------------------------------------- /ouroboros-consensus-cardano/golden/byron/disk/ChainDepState: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntersectMBO/ouroboros-consensus/946896723dbdf61b1f7e9de472cc19ecfb14cda1/ouroboros-consensus-cardano/golden/byron/disk/ChainDepState -------------------------------------------------------------------------------- /ouroboros-consensus-cardano/golden/byron/disk/ExtLedgerState: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntersectMBO/ouroboros-consensus/946896723dbdf61b1f7e9de472cc19ecfb14cda1/ouroboros-consensus-cardano/golden/byron/disk/ExtLedgerState -------------------------------------------------------------------------------- /ouroboros-consensus-cardano/golden/byron/disk/HeaderHash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntersectMBO/ouroboros-consensus/946896723dbdf61b1f7e9de472cc19ecfb14cda1/ouroboros-consensus-cardano/golden/byron/disk/HeaderHash -------------------------------------------------------------------------------- /ouroboros-consensus-cardano/golden/byron/disk/LedgerState: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntersectMBO/ouroboros-consensus/946896723dbdf61b1f7e9de472cc19ecfb14cda1/ouroboros-consensus-cardano/golden/byron/disk/LedgerState -------------------------------------------------------------------------------- /ouroboros-consensus-cardano/golden/byron/disk/LedgerTables: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntersectMBO/ouroboros-consensus/946896723dbdf61b1f7e9de472cc19ecfb14cda1/ouroboros-consensus-cardano/golden/byron/disk/LedgerTables -------------------------------------------------------------------------------- /ouroboros-consensus-cardano/golden/cardano/CardanoNodeToNodeVersion2/Block_Allegra: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntersectMBO/ouroboros-consensus/946896723dbdf61b1f7e9de472cc19ecfb14cda1/ouroboros-consensus-cardano/golden/cardano/CardanoNodeToNodeVersion2/Block_Allegra -------------------------------------------------------------------------------- /ouroboros-consensus-cardano/golden/cardano/CardanoNodeToNodeVersion2/Block_Alonzo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntersectMBO/ouroboros-consensus/946896723dbdf61b1f7e9de472cc19ecfb14cda1/ouroboros-consensus-cardano/golden/cardano/CardanoNodeToNodeVersion2/Block_Alonzo -------------------------------------------------------------------------------- /ouroboros-consensus-cardano/golden/cardano/CardanoNodeToNodeVersion2/Block_Babbage: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntersectMBO/ouroboros-consensus/946896723dbdf61b1f7e9de472cc19ecfb14cda1/ouroboros-consensus-cardano/golden/cardano/CardanoNodeToNodeVersion2/Block_Babbage -------------------------------------------------------------------------------- /ouroboros-consensus-cardano/golden/cardano/CardanoNodeToNodeVersion2/Block_Byron_EBB: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntersectMBO/ouroboros-consensus/946896723dbdf61b1f7e9de472cc19ecfb14cda1/ouroboros-consensus-cardano/golden/cardano/CardanoNodeToNodeVersion2/Block_Byron_EBB -------------------------------------------------------------------------------- /ouroboros-consensus-cardano/golden/cardano/CardanoNodeToNodeVersion2/Block_Byron_regular: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntersectMBO/ouroboros-consensus/946896723dbdf61b1f7e9de472cc19ecfb14cda1/ouroboros-consensus-cardano/golden/cardano/CardanoNodeToNodeVersion2/Block_Byron_regular -------------------------------------------------------------------------------- /ouroboros-consensus-cardano/golden/cardano/CardanoNodeToNodeVersion2/Block_Conway: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntersectMBO/ouroboros-consensus/946896723dbdf61b1f7e9de472cc19ecfb14cda1/ouroboros-consensus-cardano/golden/cardano/CardanoNodeToNodeVersion2/Block_Conway -------------------------------------------------------------------------------- /ouroboros-consensus-cardano/golden/cardano/CardanoNodeToNodeVersion2/Block_Mary: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntersectMBO/ouroboros-consensus/946896723dbdf61b1f7e9de472cc19ecfb14cda1/ouroboros-consensus-cardano/golden/cardano/CardanoNodeToNodeVersion2/Block_Mary -------------------------------------------------------------------------------- /ouroboros-consensus-cardano/golden/cardano/CardanoNodeToNodeVersion2/Block_Shelley: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntersectMBO/ouroboros-consensus/946896723dbdf61b1f7e9de472cc19ecfb14cda1/ouroboros-consensus-cardano/golden/cardano/CardanoNodeToNodeVersion2/Block_Shelley -------------------------------------------------------------------------------- /ouroboros-consensus-cardano/golden/cardano/CardanoNodeToNodeVersion2/GenTxId_Allegra: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntersectMBO/ouroboros-consensus/946896723dbdf61b1f7e9de472cc19ecfb14cda1/ouroboros-consensus-cardano/golden/cardano/CardanoNodeToNodeVersion2/GenTxId_Allegra -------------------------------------------------------------------------------- /ouroboros-consensus-cardano/golden/cardano/CardanoNodeToNodeVersion2/GenTxId_Alonzo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntersectMBO/ouroboros-consensus/946896723dbdf61b1f7e9de472cc19ecfb14cda1/ouroboros-consensus-cardano/golden/cardano/CardanoNodeToNodeVersion2/GenTxId_Alonzo -------------------------------------------------------------------------------- /ouroboros-consensus-cardano/golden/cardano/CardanoNodeToNodeVersion2/GenTxId_Babbage: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntersectMBO/ouroboros-consensus/946896723dbdf61b1f7e9de472cc19ecfb14cda1/ouroboros-consensus-cardano/golden/cardano/CardanoNodeToNodeVersion2/GenTxId_Babbage -------------------------------------------------------------------------------- /ouroboros-consensus-cardano/golden/cardano/CardanoNodeToNodeVersion2/GenTxId_Byron: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntersectMBO/ouroboros-consensus/946896723dbdf61b1f7e9de472cc19ecfb14cda1/ouroboros-consensus-cardano/golden/cardano/CardanoNodeToNodeVersion2/GenTxId_Byron -------------------------------------------------------------------------------- /ouroboros-consensus-cardano/golden/cardano/CardanoNodeToNodeVersion2/GenTxId_Conway: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntersectMBO/ouroboros-consensus/946896723dbdf61b1f7e9de472cc19ecfb14cda1/ouroboros-consensus-cardano/golden/cardano/CardanoNodeToNodeVersion2/GenTxId_Conway -------------------------------------------------------------------------------- /ouroboros-consensus-cardano/golden/cardano/CardanoNodeToNodeVersion2/GenTxId_Mary: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntersectMBO/ouroboros-consensus/946896723dbdf61b1f7e9de472cc19ecfb14cda1/ouroboros-consensus-cardano/golden/cardano/CardanoNodeToNodeVersion2/GenTxId_Mary -------------------------------------------------------------------------------- /ouroboros-consensus-cardano/golden/cardano/CardanoNodeToNodeVersion2/GenTxId_Shelley: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntersectMBO/ouroboros-consensus/946896723dbdf61b1f7e9de472cc19ecfb14cda1/ouroboros-consensus-cardano/golden/cardano/CardanoNodeToNodeVersion2/GenTxId_Shelley -------------------------------------------------------------------------------- /ouroboros-consensus-cardano/golden/cardano/CardanoNodeToNodeVersion2/GenTx_Allegra: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntersectMBO/ouroboros-consensus/946896723dbdf61b1f7e9de472cc19ecfb14cda1/ouroboros-consensus-cardano/golden/cardano/CardanoNodeToNodeVersion2/GenTx_Allegra -------------------------------------------------------------------------------- /ouroboros-consensus-cardano/golden/cardano/CardanoNodeToNodeVersion2/GenTx_Alonzo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntersectMBO/ouroboros-consensus/946896723dbdf61b1f7e9de472cc19ecfb14cda1/ouroboros-consensus-cardano/golden/cardano/CardanoNodeToNodeVersion2/GenTx_Alonzo -------------------------------------------------------------------------------- /ouroboros-consensus-cardano/golden/cardano/CardanoNodeToNodeVersion2/GenTx_Babbage: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntersectMBO/ouroboros-consensus/946896723dbdf61b1f7e9de472cc19ecfb14cda1/ouroboros-consensus-cardano/golden/cardano/CardanoNodeToNodeVersion2/GenTx_Babbage -------------------------------------------------------------------------------- /ouroboros-consensus-cardano/golden/cardano/CardanoNodeToNodeVersion2/GenTx_Byron: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntersectMBO/ouroboros-consensus/946896723dbdf61b1f7e9de472cc19ecfb14cda1/ouroboros-consensus-cardano/golden/cardano/CardanoNodeToNodeVersion2/GenTx_Byron -------------------------------------------------------------------------------- /ouroboros-consensus-cardano/golden/cardano/CardanoNodeToNodeVersion2/GenTx_Conway: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntersectMBO/ouroboros-consensus/946896723dbdf61b1f7e9de472cc19ecfb14cda1/ouroboros-consensus-cardano/golden/cardano/CardanoNodeToNodeVersion2/GenTx_Conway -------------------------------------------------------------------------------- /ouroboros-consensus-cardano/golden/cardano/CardanoNodeToNodeVersion2/GenTx_Mary: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntersectMBO/ouroboros-consensus/946896723dbdf61b1f7e9de472cc19ecfb14cda1/ouroboros-consensus-cardano/golden/cardano/CardanoNodeToNodeVersion2/GenTx_Mary -------------------------------------------------------------------------------- /ouroboros-consensus-cardano/golden/cardano/CardanoNodeToNodeVersion2/GenTx_Shelley: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntersectMBO/ouroboros-consensus/946896723dbdf61b1f7e9de472cc19ecfb14cda1/ouroboros-consensus-cardano/golden/cardano/CardanoNodeToNodeVersion2/GenTx_Shelley -------------------------------------------------------------------------------- /ouroboros-consensus-cardano/golden/cardano/CardanoNodeToNodeVersion2/Header_Allegra: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntersectMBO/ouroboros-consensus/946896723dbdf61b1f7e9de472cc19ecfb14cda1/ouroboros-consensus-cardano/golden/cardano/CardanoNodeToNodeVersion2/Header_Allegra -------------------------------------------------------------------------------- /ouroboros-consensus-cardano/golden/cardano/CardanoNodeToNodeVersion2/Header_Alonzo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntersectMBO/ouroboros-consensus/946896723dbdf61b1f7e9de472cc19ecfb14cda1/ouroboros-consensus-cardano/golden/cardano/CardanoNodeToNodeVersion2/Header_Alonzo -------------------------------------------------------------------------------- /ouroboros-consensus-cardano/golden/cardano/CardanoNodeToNodeVersion2/Header_Babbage: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntersectMBO/ouroboros-consensus/946896723dbdf61b1f7e9de472cc19ecfb14cda1/ouroboros-consensus-cardano/golden/cardano/CardanoNodeToNodeVersion2/Header_Babbage -------------------------------------------------------------------------------- /ouroboros-consensus-cardano/golden/cardano/CardanoNodeToNodeVersion2/Header_Byron_EBB: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntersectMBO/ouroboros-consensus/946896723dbdf61b1f7e9de472cc19ecfb14cda1/ouroboros-consensus-cardano/golden/cardano/CardanoNodeToNodeVersion2/Header_Byron_EBB -------------------------------------------------------------------------------- /ouroboros-consensus-cardano/golden/cardano/CardanoNodeToNodeVersion2/Header_Byron_regular: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntersectMBO/ouroboros-consensus/946896723dbdf61b1f7e9de472cc19ecfb14cda1/ouroboros-consensus-cardano/golden/cardano/CardanoNodeToNodeVersion2/Header_Byron_regular -------------------------------------------------------------------------------- /ouroboros-consensus-cardano/golden/cardano/CardanoNodeToNodeVersion2/Header_Conway: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntersectMBO/ouroboros-consensus/946896723dbdf61b1f7e9de472cc19ecfb14cda1/ouroboros-consensus-cardano/golden/cardano/CardanoNodeToNodeVersion2/Header_Conway -------------------------------------------------------------------------------- /ouroboros-consensus-cardano/golden/cardano/CardanoNodeToNodeVersion2/Header_Mary: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntersectMBO/ouroboros-consensus/946896723dbdf61b1f7e9de472cc19ecfb14cda1/ouroboros-consensus-cardano/golden/cardano/CardanoNodeToNodeVersion2/Header_Mary -------------------------------------------------------------------------------- /ouroboros-consensus-cardano/golden/cardano/CardanoNodeToNodeVersion2/Header_Shelley: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntersectMBO/ouroboros-consensus/946896723dbdf61b1f7e9de472cc19ecfb14cda1/ouroboros-consensus-cardano/golden/cardano/CardanoNodeToNodeVersion2/Header_Shelley -------------------------------------------------------------------------------- /ouroboros-consensus-cardano/golden/cardano/CardanoNodeToNodeVersion2/SerialisedBlock_Allegra: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntersectMBO/ouroboros-consensus/946896723dbdf61b1f7e9de472cc19ecfb14cda1/ouroboros-consensus-cardano/golden/cardano/CardanoNodeToNodeVersion2/SerialisedBlock_Allegra -------------------------------------------------------------------------------- /ouroboros-consensus-cardano/golden/cardano/CardanoNodeToNodeVersion2/SerialisedBlock_Alonzo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntersectMBO/ouroboros-consensus/946896723dbdf61b1f7e9de472cc19ecfb14cda1/ouroboros-consensus-cardano/golden/cardano/CardanoNodeToNodeVersion2/SerialisedBlock_Alonzo -------------------------------------------------------------------------------- /ouroboros-consensus-cardano/golden/cardano/CardanoNodeToNodeVersion2/SerialisedBlock_Babbage: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntersectMBO/ouroboros-consensus/946896723dbdf61b1f7e9de472cc19ecfb14cda1/ouroboros-consensus-cardano/golden/cardano/CardanoNodeToNodeVersion2/SerialisedBlock_Babbage -------------------------------------------------------------------------------- /ouroboros-consensus-cardano/golden/cardano/CardanoNodeToNodeVersion2/SerialisedBlock_Byron_EBB: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntersectMBO/ouroboros-consensus/946896723dbdf61b1f7e9de472cc19ecfb14cda1/ouroboros-consensus-cardano/golden/cardano/CardanoNodeToNodeVersion2/SerialisedBlock_Byron_EBB -------------------------------------------------------------------------------- /ouroboros-consensus-cardano/golden/cardano/CardanoNodeToNodeVersion2/SerialisedBlock_Byron_regular: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntersectMBO/ouroboros-consensus/946896723dbdf61b1f7e9de472cc19ecfb14cda1/ouroboros-consensus-cardano/golden/cardano/CardanoNodeToNodeVersion2/SerialisedBlock_Byron_regular -------------------------------------------------------------------------------- /ouroboros-consensus-cardano/golden/cardano/CardanoNodeToNodeVersion2/SerialisedBlock_Conway: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntersectMBO/ouroboros-consensus/946896723dbdf61b1f7e9de472cc19ecfb14cda1/ouroboros-consensus-cardano/golden/cardano/CardanoNodeToNodeVersion2/SerialisedBlock_Conway -------------------------------------------------------------------------------- /ouroboros-consensus-cardano/golden/cardano/CardanoNodeToNodeVersion2/SerialisedBlock_Mary: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntersectMBO/ouroboros-consensus/946896723dbdf61b1f7e9de472cc19ecfb14cda1/ouroboros-consensus-cardano/golden/cardano/CardanoNodeToNodeVersion2/SerialisedBlock_Mary -------------------------------------------------------------------------------- /ouroboros-consensus-cardano/golden/cardano/CardanoNodeToNodeVersion2/SerialisedBlock_Shelley: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntersectMBO/ouroboros-consensus/946896723dbdf61b1f7e9de472cc19ecfb14cda1/ouroboros-consensus-cardano/golden/cardano/CardanoNodeToNodeVersion2/SerialisedBlock_Shelley -------------------------------------------------------------------------------- /ouroboros-consensus-cardano/golden/cardano/CardanoNodeToNodeVersion2/SerialisedHeader_Allegra: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntersectMBO/ouroboros-consensus/946896723dbdf61b1f7e9de472cc19ecfb14cda1/ouroboros-consensus-cardano/golden/cardano/CardanoNodeToNodeVersion2/SerialisedHeader_Allegra -------------------------------------------------------------------------------- /ouroboros-consensus-cardano/golden/cardano/CardanoNodeToNodeVersion2/SerialisedHeader_Alonzo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntersectMBO/ouroboros-consensus/946896723dbdf61b1f7e9de472cc19ecfb14cda1/ouroboros-consensus-cardano/golden/cardano/CardanoNodeToNodeVersion2/SerialisedHeader_Alonzo -------------------------------------------------------------------------------- /ouroboros-consensus-cardano/golden/cardano/CardanoNodeToNodeVersion2/SerialisedHeader_Babbage: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntersectMBO/ouroboros-consensus/946896723dbdf61b1f7e9de472cc19ecfb14cda1/ouroboros-consensus-cardano/golden/cardano/CardanoNodeToNodeVersion2/SerialisedHeader_Babbage -------------------------------------------------------------------------------- /ouroboros-consensus-cardano/golden/cardano/CardanoNodeToNodeVersion2/SerialisedHeader_Byron_EBB: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntersectMBO/ouroboros-consensus/946896723dbdf61b1f7e9de472cc19ecfb14cda1/ouroboros-consensus-cardano/golden/cardano/CardanoNodeToNodeVersion2/SerialisedHeader_Byron_EBB -------------------------------------------------------------------------------- /ouroboros-consensus-cardano/golden/cardano/CardanoNodeToNodeVersion2/SerialisedHeader_Byron_regular: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntersectMBO/ouroboros-consensus/946896723dbdf61b1f7e9de472cc19ecfb14cda1/ouroboros-consensus-cardano/golden/cardano/CardanoNodeToNodeVersion2/SerialisedHeader_Byron_regular -------------------------------------------------------------------------------- /ouroboros-consensus-cardano/golden/cardano/CardanoNodeToNodeVersion2/SerialisedHeader_Conway: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntersectMBO/ouroboros-consensus/946896723dbdf61b1f7e9de472cc19ecfb14cda1/ouroboros-consensus-cardano/golden/cardano/CardanoNodeToNodeVersion2/SerialisedHeader_Conway -------------------------------------------------------------------------------- /ouroboros-consensus-cardano/golden/cardano/CardanoNodeToNodeVersion2/SerialisedHeader_Mary: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntersectMBO/ouroboros-consensus/946896723dbdf61b1f7e9de472cc19ecfb14cda1/ouroboros-consensus-cardano/golden/cardano/CardanoNodeToNodeVersion2/SerialisedHeader_Mary -------------------------------------------------------------------------------- /ouroboros-consensus-cardano/golden/cardano/CardanoNodeToNodeVersion2/SerialisedHeader_Shelley: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntersectMBO/ouroboros-consensus/946896723dbdf61b1f7e9de472cc19ecfb14cda1/ouroboros-consensus-cardano/golden/cardano/CardanoNodeToNodeVersion2/SerialisedHeader_Shelley -------------------------------------------------------------------------------- /ouroboros-consensus-cardano/golden/cardano/QueryVersion2/CardanoNodeToClientVersion12/ApplyTxErr_Allegra: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntersectMBO/ouroboros-consensus/946896723dbdf61b1f7e9de472cc19ecfb14cda1/ouroboros-consensus-cardano/golden/cardano/QueryVersion2/CardanoNodeToClientVersion12/ApplyTxErr_Allegra -------------------------------------------------------------------------------- /ouroboros-consensus-cardano/golden/cardano/QueryVersion2/CardanoNodeToClientVersion12/ApplyTxErr_Alonzo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntersectMBO/ouroboros-consensus/946896723dbdf61b1f7e9de472cc19ecfb14cda1/ouroboros-consensus-cardano/golden/cardano/QueryVersion2/CardanoNodeToClientVersion12/ApplyTxErr_Alonzo -------------------------------------------------------------------------------- /ouroboros-consensus-cardano/golden/cardano/QueryVersion2/CardanoNodeToClientVersion12/ApplyTxErr_Babbage: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntersectMBO/ouroboros-consensus/946896723dbdf61b1f7e9de472cc19ecfb14cda1/ouroboros-consensus-cardano/golden/cardano/QueryVersion2/CardanoNodeToClientVersion12/ApplyTxErr_Babbage -------------------------------------------------------------------------------- /ouroboros-consensus-cardano/golden/cardano/QueryVersion2/CardanoNodeToClientVersion12/ApplyTxErr_Byron: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntersectMBO/ouroboros-consensus/946896723dbdf61b1f7e9de472cc19ecfb14cda1/ouroboros-consensus-cardano/golden/cardano/QueryVersion2/CardanoNodeToClientVersion12/ApplyTxErr_Byron -------------------------------------------------------------------------------- /ouroboros-consensus-cardano/golden/cardano/QueryVersion2/CardanoNodeToClientVersion12/ApplyTxErr_Conway: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntersectMBO/ouroboros-consensus/946896723dbdf61b1f7e9de472cc19ecfb14cda1/ouroboros-consensus-cardano/golden/cardano/QueryVersion2/CardanoNodeToClientVersion12/ApplyTxErr_Conway -------------------------------------------------------------------------------- /ouroboros-consensus-cardano/golden/cardano/QueryVersion2/CardanoNodeToClientVersion12/ApplyTxErr_Mary: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntersectMBO/ouroboros-consensus/946896723dbdf61b1f7e9de472cc19ecfb14cda1/ouroboros-consensus-cardano/golden/cardano/QueryVersion2/CardanoNodeToClientVersion12/ApplyTxErr_Mary -------------------------------------------------------------------------------- /ouroboros-consensus-cardano/golden/cardano/QueryVersion2/CardanoNodeToClientVersion12/ApplyTxErr_Shelley: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntersectMBO/ouroboros-consensus/946896723dbdf61b1f7e9de472cc19ecfb14cda1/ouroboros-consensus-cardano/golden/cardano/QueryVersion2/CardanoNodeToClientVersion12/ApplyTxErr_Shelley -------------------------------------------------------------------------------- /ouroboros-consensus-cardano/golden/cardano/QueryVersion2/CardanoNodeToClientVersion12/Block_Allegra: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntersectMBO/ouroboros-consensus/946896723dbdf61b1f7e9de472cc19ecfb14cda1/ouroboros-consensus-cardano/golden/cardano/QueryVersion2/CardanoNodeToClientVersion12/Block_Allegra -------------------------------------------------------------------------------- /ouroboros-consensus-cardano/golden/cardano/QueryVersion2/CardanoNodeToClientVersion12/Block_Alonzo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntersectMBO/ouroboros-consensus/946896723dbdf61b1f7e9de472cc19ecfb14cda1/ouroboros-consensus-cardano/golden/cardano/QueryVersion2/CardanoNodeToClientVersion12/Block_Alonzo -------------------------------------------------------------------------------- /ouroboros-consensus-cardano/golden/cardano/QueryVersion2/CardanoNodeToClientVersion12/Block_Babbage: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntersectMBO/ouroboros-consensus/946896723dbdf61b1f7e9de472cc19ecfb14cda1/ouroboros-consensus-cardano/golden/cardano/QueryVersion2/CardanoNodeToClientVersion12/Block_Babbage -------------------------------------------------------------------------------- /ouroboros-consensus-cardano/golden/cardano/QueryVersion2/CardanoNodeToClientVersion12/Block_Byron_EBB: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntersectMBO/ouroboros-consensus/946896723dbdf61b1f7e9de472cc19ecfb14cda1/ouroboros-consensus-cardano/golden/cardano/QueryVersion2/CardanoNodeToClientVersion12/Block_Byron_EBB -------------------------------------------------------------------------------- /ouroboros-consensus-cardano/golden/cardano/QueryVersion2/CardanoNodeToClientVersion12/Block_Byron_regular: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntersectMBO/ouroboros-consensus/946896723dbdf61b1f7e9de472cc19ecfb14cda1/ouroboros-consensus-cardano/golden/cardano/QueryVersion2/CardanoNodeToClientVersion12/Block_Byron_regular -------------------------------------------------------------------------------- /ouroboros-consensus-cardano/golden/cardano/QueryVersion2/CardanoNodeToClientVersion12/Block_Conway: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntersectMBO/ouroboros-consensus/946896723dbdf61b1f7e9de472cc19ecfb14cda1/ouroboros-consensus-cardano/golden/cardano/QueryVersion2/CardanoNodeToClientVersion12/Block_Conway -------------------------------------------------------------------------------- /ouroboros-consensus-cardano/golden/cardano/QueryVersion2/CardanoNodeToClientVersion12/Block_Mary: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntersectMBO/ouroboros-consensus/946896723dbdf61b1f7e9de472cc19ecfb14cda1/ouroboros-consensus-cardano/golden/cardano/QueryVersion2/CardanoNodeToClientVersion12/Block_Mary -------------------------------------------------------------------------------- /ouroboros-consensus-cardano/golden/cardano/QueryVersion2/CardanoNodeToClientVersion12/Block_Shelley: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntersectMBO/ouroboros-consensus/946896723dbdf61b1f7e9de472cc19ecfb14cda1/ouroboros-consensus-cardano/golden/cardano/QueryVersion2/CardanoNodeToClientVersion12/Block_Shelley -------------------------------------------------------------------------------- /ouroboros-consensus-cardano/golden/cardano/QueryVersion2/CardanoNodeToClientVersion12/GenTxId_Allegra: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntersectMBO/ouroboros-consensus/946896723dbdf61b1f7e9de472cc19ecfb14cda1/ouroboros-consensus-cardano/golden/cardano/QueryVersion2/CardanoNodeToClientVersion12/GenTxId_Allegra -------------------------------------------------------------------------------- /ouroboros-consensus-cardano/golden/cardano/QueryVersion2/CardanoNodeToClientVersion12/GenTxId_Alonzo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntersectMBO/ouroboros-consensus/946896723dbdf61b1f7e9de472cc19ecfb14cda1/ouroboros-consensus-cardano/golden/cardano/QueryVersion2/CardanoNodeToClientVersion12/GenTxId_Alonzo -------------------------------------------------------------------------------- /ouroboros-consensus-cardano/golden/cardano/QueryVersion2/CardanoNodeToClientVersion12/GenTxId_Babbage: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntersectMBO/ouroboros-consensus/946896723dbdf61b1f7e9de472cc19ecfb14cda1/ouroboros-consensus-cardano/golden/cardano/QueryVersion2/CardanoNodeToClientVersion12/GenTxId_Babbage -------------------------------------------------------------------------------- /ouroboros-consensus-cardano/golden/cardano/QueryVersion2/CardanoNodeToClientVersion12/GenTxId_Byron: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntersectMBO/ouroboros-consensus/946896723dbdf61b1f7e9de472cc19ecfb14cda1/ouroboros-consensus-cardano/golden/cardano/QueryVersion2/CardanoNodeToClientVersion12/GenTxId_Byron -------------------------------------------------------------------------------- /ouroboros-consensus-cardano/golden/cardano/QueryVersion2/CardanoNodeToClientVersion12/GenTxId_Conway: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntersectMBO/ouroboros-consensus/946896723dbdf61b1f7e9de472cc19ecfb14cda1/ouroboros-consensus-cardano/golden/cardano/QueryVersion2/CardanoNodeToClientVersion12/GenTxId_Conway -------------------------------------------------------------------------------- /ouroboros-consensus-cardano/golden/cardano/QueryVersion2/CardanoNodeToClientVersion12/GenTxId_Mary: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntersectMBO/ouroboros-consensus/946896723dbdf61b1f7e9de472cc19ecfb14cda1/ouroboros-consensus-cardano/golden/cardano/QueryVersion2/CardanoNodeToClientVersion12/GenTxId_Mary -------------------------------------------------------------------------------- /ouroboros-consensus-cardano/golden/cardano/QueryVersion2/CardanoNodeToClientVersion12/GenTxId_Shelley: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntersectMBO/ouroboros-consensus/946896723dbdf61b1f7e9de472cc19ecfb14cda1/ouroboros-consensus-cardano/golden/cardano/QueryVersion2/CardanoNodeToClientVersion12/GenTxId_Shelley -------------------------------------------------------------------------------- /ouroboros-consensus-cardano/golden/cardano/QueryVersion2/CardanoNodeToClientVersion12/GenTx_Allegra: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntersectMBO/ouroboros-consensus/946896723dbdf61b1f7e9de472cc19ecfb14cda1/ouroboros-consensus-cardano/golden/cardano/QueryVersion2/CardanoNodeToClientVersion12/GenTx_Allegra -------------------------------------------------------------------------------- /ouroboros-consensus-cardano/golden/cardano/QueryVersion2/CardanoNodeToClientVersion12/GenTx_Alonzo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntersectMBO/ouroboros-consensus/946896723dbdf61b1f7e9de472cc19ecfb14cda1/ouroboros-consensus-cardano/golden/cardano/QueryVersion2/CardanoNodeToClientVersion12/GenTx_Alonzo -------------------------------------------------------------------------------- /ouroboros-consensus-cardano/golden/cardano/QueryVersion2/CardanoNodeToClientVersion12/GenTx_Babbage: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntersectMBO/ouroboros-consensus/946896723dbdf61b1f7e9de472cc19ecfb14cda1/ouroboros-consensus-cardano/golden/cardano/QueryVersion2/CardanoNodeToClientVersion12/GenTx_Babbage -------------------------------------------------------------------------------- /ouroboros-consensus-cardano/golden/cardano/QueryVersion2/CardanoNodeToClientVersion12/GenTx_Byron: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntersectMBO/ouroboros-consensus/946896723dbdf61b1f7e9de472cc19ecfb14cda1/ouroboros-consensus-cardano/golden/cardano/QueryVersion2/CardanoNodeToClientVersion12/GenTx_Byron -------------------------------------------------------------------------------- /ouroboros-consensus-cardano/golden/cardano/QueryVersion2/CardanoNodeToClientVersion12/GenTx_Conway: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntersectMBO/ouroboros-consensus/946896723dbdf61b1f7e9de472cc19ecfb14cda1/ouroboros-consensus-cardano/golden/cardano/QueryVersion2/CardanoNodeToClientVersion12/GenTx_Conway -------------------------------------------------------------------------------- /ouroboros-consensus-cardano/golden/cardano/QueryVersion2/CardanoNodeToClientVersion12/GenTx_Mary: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntersectMBO/ouroboros-consensus/946896723dbdf61b1f7e9de472cc19ecfb14cda1/ouroboros-consensus-cardano/golden/cardano/QueryVersion2/CardanoNodeToClientVersion12/GenTx_Mary -------------------------------------------------------------------------------- /ouroboros-consensus-cardano/golden/cardano/QueryVersion2/CardanoNodeToClientVersion12/GenTx_Shelley: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntersectMBO/ouroboros-consensus/946896723dbdf61b1f7e9de472cc19ecfb14cda1/ouroboros-consensus-cardano/golden/cardano/QueryVersion2/CardanoNodeToClientVersion12/GenTx_Shelley -------------------------------------------------------------------------------- /ouroboros-consensus-cardano/golden/cardano/QueryVersion2/CardanoNodeToClientVersion12/LedgerConfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntersectMBO/ouroboros-consensus/946896723dbdf61b1f7e9de472cc19ecfb14cda1/ouroboros-consensus-cardano/golden/cardano/QueryVersion2/CardanoNodeToClientVersion12/LedgerConfig -------------------------------------------------------------------------------- /ouroboros-consensus-cardano/golden/cardano/QueryVersion2/CardanoNodeToClientVersion12/Query_Alonzo_GetEpochNo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntersectMBO/ouroboros-consensus/946896723dbdf61b1f7e9de472cc19ecfb14cda1/ouroboros-consensus-cardano/golden/cardano/QueryVersion2/CardanoNodeToClientVersion12/Query_Alonzo_GetEpochNo -------------------------------------------------------------------------------- /ouroboros-consensus-cardano/golden/cardano/QueryVersion2/CardanoNodeToClientVersion12/Query_AnytimeByron: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntersectMBO/ouroboros-consensus/946896723dbdf61b1f7e9de472cc19ecfb14cda1/ouroboros-consensus-cardano/golden/cardano/QueryVersion2/CardanoNodeToClientVersion12/Query_AnytimeByron -------------------------------------------------------------------------------- /ouroboros-consensus-cardano/golden/cardano/QueryVersion2/CardanoNodeToClientVersion12/Query_AnytimeShelley: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntersectMBO/ouroboros-consensus/946896723dbdf61b1f7e9de472cc19ecfb14cda1/ouroboros-consensus-cardano/golden/cardano/QueryVersion2/CardanoNodeToClientVersion12/Query_AnytimeShelley -------------------------------------------------------------------------------- /ouroboros-consensus-cardano/golden/cardano/QueryVersion2/CardanoNodeToClientVersion12/Query_Byron: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntersectMBO/ouroboros-consensus/946896723dbdf61b1f7e9de472cc19ecfb14cda1/ouroboros-consensus-cardano/golden/cardano/QueryVersion2/CardanoNodeToClientVersion12/Query_Byron -------------------------------------------------------------------------------- /ouroboros-consensus-cardano/golden/cardano/QueryVersion2/CardanoNodeToClientVersion12/Query_Conway_GetEpochNo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntersectMBO/ouroboros-consensus/946896723dbdf61b1f7e9de472cc19ecfb14cda1/ouroboros-consensus-cardano/golden/cardano/QueryVersion2/CardanoNodeToClientVersion12/Query_Conway_GetEpochNo -------------------------------------------------------------------------------- /ouroboros-consensus-cardano/golden/cardano/QueryVersion2/CardanoNodeToClientVersion12/Query_HardFork: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntersectMBO/ouroboros-consensus/946896723dbdf61b1f7e9de472cc19ecfb14cda1/ouroboros-consensus-cardano/golden/cardano/QueryVersion2/CardanoNodeToClientVersion12/Query_HardFork -------------------------------------------------------------------------------- /ouroboros-consensus-cardano/golden/cardano/QueryVersion2/CardanoNodeToClientVersion12/Query_Mary_GetEpochNo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntersectMBO/ouroboros-consensus/946896723dbdf61b1f7e9de472cc19ecfb14cda1/ouroboros-consensus-cardano/golden/cardano/QueryVersion2/CardanoNodeToClientVersion12/Query_Mary_GetEpochNo -------------------------------------------------------------------------------- /ouroboros-consensus-cardano/golden/cardano/QueryVersion2/CardanoNodeToClientVersion12/Query_Mary_GetLedgerTip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntersectMBO/ouroboros-consensus/946896723dbdf61b1f7e9de472cc19ecfb14cda1/ouroboros-consensus-cardano/golden/cardano/QueryVersion2/CardanoNodeToClientVersion12/Query_Mary_GetLedgerTip -------------------------------------------------------------------------------- /ouroboros-consensus-cardano/golden/cardano/QueryVersion2/CardanoNodeToClientVersion12/Result_Allegra_EpochNo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntersectMBO/ouroboros-consensus/946896723dbdf61b1f7e9de472cc19ecfb14cda1/ouroboros-consensus-cardano/golden/cardano/QueryVersion2/CardanoNodeToClientVersion12/Result_Allegra_EpochNo -------------------------------------------------------------------------------- /ouroboros-consensus-cardano/golden/cardano/QueryVersion2/CardanoNodeToClientVersion12/Result_Alonzo_EpochNo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntersectMBO/ouroboros-consensus/946896723dbdf61b1f7e9de472cc19ecfb14cda1/ouroboros-consensus-cardano/golden/cardano/QueryVersion2/CardanoNodeToClientVersion12/Result_Alonzo_EpochNo -------------------------------------------------------------------------------- /ouroboros-consensus-cardano/golden/cardano/QueryVersion2/CardanoNodeToClientVersion12/Result_Alonzo_LedgerTip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntersectMBO/ouroboros-consensus/946896723dbdf61b1f7e9de472cc19ecfb14cda1/ouroboros-consensus-cardano/golden/cardano/QueryVersion2/CardanoNodeToClientVersion12/Result_Alonzo_LedgerTip -------------------------------------------------------------------------------- /ouroboros-consensus-cardano/golden/cardano/QueryVersion2/CardanoNodeToClientVersion12/Result_AnytimeByron: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntersectMBO/ouroboros-consensus/946896723dbdf61b1f7e9de472cc19ecfb14cda1/ouroboros-consensus-cardano/golden/cardano/QueryVersion2/CardanoNodeToClientVersion12/Result_AnytimeByron -------------------------------------------------------------------------------- /ouroboros-consensus-cardano/golden/cardano/QueryVersion2/CardanoNodeToClientVersion12/Result_AnytimeShelley: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntersectMBO/ouroboros-consensus/946896723dbdf61b1f7e9de472cc19ecfb14cda1/ouroboros-consensus-cardano/golden/cardano/QueryVersion2/CardanoNodeToClientVersion12/Result_AnytimeShelley -------------------------------------------------------------------------------- /ouroboros-consensus-cardano/golden/cardano/QueryVersion2/CardanoNodeToClientVersion12/Result_Babbage_EpochNo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntersectMBO/ouroboros-consensus/946896723dbdf61b1f7e9de472cc19ecfb14cda1/ouroboros-consensus-cardano/golden/cardano/QueryVersion2/CardanoNodeToClientVersion12/Result_Babbage_EpochNo -------------------------------------------------------------------------------- /ouroboros-consensus-cardano/golden/cardano/QueryVersion2/CardanoNodeToClientVersion12/Result_Byron: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntersectMBO/ouroboros-consensus/946896723dbdf61b1f7e9de472cc19ecfb14cda1/ouroboros-consensus-cardano/golden/cardano/QueryVersion2/CardanoNodeToClientVersion12/Result_Byron -------------------------------------------------------------------------------- /ouroboros-consensus-cardano/golden/cardano/QueryVersion2/CardanoNodeToClientVersion12/Result_Conway_EpochNo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntersectMBO/ouroboros-consensus/946896723dbdf61b1f7e9de472cc19ecfb14cda1/ouroboros-consensus-cardano/golden/cardano/QueryVersion2/CardanoNodeToClientVersion12/Result_Conway_EpochNo -------------------------------------------------------------------------------- /ouroboros-consensus-cardano/golden/cardano/QueryVersion2/CardanoNodeToClientVersion12/Result_Conway_LedgerTip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntersectMBO/ouroboros-consensus/946896723dbdf61b1f7e9de472cc19ecfb14cda1/ouroboros-consensus-cardano/golden/cardano/QueryVersion2/CardanoNodeToClientVersion12/Result_Conway_LedgerTip -------------------------------------------------------------------------------- /ouroboros-consensus-cardano/golden/cardano/QueryVersion2/CardanoNodeToClientVersion12/Result_EraMismatchByron: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntersectMBO/ouroboros-consensus/946896723dbdf61b1f7e9de472cc19ecfb14cda1/ouroboros-consensus-cardano/golden/cardano/QueryVersion2/CardanoNodeToClientVersion12/Result_EraMismatchByron -------------------------------------------------------------------------------- /ouroboros-consensus-cardano/golden/cardano/QueryVersion2/CardanoNodeToClientVersion12/Result_HardFork: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntersectMBO/ouroboros-consensus/946896723dbdf61b1f7e9de472cc19ecfb14cda1/ouroboros-consensus-cardano/golden/cardano/QueryVersion2/CardanoNodeToClientVersion12/Result_HardFork -------------------------------------------------------------------------------- /ouroboros-consensus-cardano/golden/cardano/QueryVersion2/CardanoNodeToClientVersion12/Result_Mary_EpochNo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntersectMBO/ouroboros-consensus/946896723dbdf61b1f7e9de472cc19ecfb14cda1/ouroboros-consensus-cardano/golden/cardano/QueryVersion2/CardanoNodeToClientVersion12/Result_Mary_EpochNo -------------------------------------------------------------------------------- /ouroboros-consensus-cardano/golden/cardano/QueryVersion2/CardanoNodeToClientVersion12/Result_Mary_LedgerTip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntersectMBO/ouroboros-consensus/946896723dbdf61b1f7e9de472cc19ecfb14cda1/ouroboros-consensus-cardano/golden/cardano/QueryVersion2/CardanoNodeToClientVersion12/Result_Mary_LedgerTip -------------------------------------------------------------------------------- /ouroboros-consensus-cardano/golden/cardano/QueryVersion2/CardanoNodeToClientVersion12/Result_Shelley_EpochNo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntersectMBO/ouroboros-consensus/946896723dbdf61b1f7e9de472cc19ecfb14cda1/ouroboros-consensus-cardano/golden/cardano/QueryVersion2/CardanoNodeToClientVersion12/Result_Shelley_EpochNo -------------------------------------------------------------------------------- /ouroboros-consensus-cardano/golden/cardano/QueryVersion2/CardanoNodeToClientVersion12/SerialisedBlock_Allegra: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntersectMBO/ouroboros-consensus/946896723dbdf61b1f7e9de472cc19ecfb14cda1/ouroboros-consensus-cardano/golden/cardano/QueryVersion2/CardanoNodeToClientVersion12/SerialisedBlock_Allegra -------------------------------------------------------------------------------- /ouroboros-consensus-cardano/golden/cardano/QueryVersion2/CardanoNodeToClientVersion12/SerialisedBlock_Alonzo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntersectMBO/ouroboros-consensus/946896723dbdf61b1f7e9de472cc19ecfb14cda1/ouroboros-consensus-cardano/golden/cardano/QueryVersion2/CardanoNodeToClientVersion12/SerialisedBlock_Alonzo -------------------------------------------------------------------------------- /ouroboros-consensus-cardano/golden/cardano/QueryVersion2/CardanoNodeToClientVersion12/SerialisedBlock_Babbage: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntersectMBO/ouroboros-consensus/946896723dbdf61b1f7e9de472cc19ecfb14cda1/ouroboros-consensus-cardano/golden/cardano/QueryVersion2/CardanoNodeToClientVersion12/SerialisedBlock_Babbage -------------------------------------------------------------------------------- /ouroboros-consensus-cardano/golden/cardano/QueryVersion2/CardanoNodeToClientVersion12/SerialisedBlock_Conway: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntersectMBO/ouroboros-consensus/946896723dbdf61b1f7e9de472cc19ecfb14cda1/ouroboros-consensus-cardano/golden/cardano/QueryVersion2/CardanoNodeToClientVersion12/SerialisedBlock_Conway -------------------------------------------------------------------------------- /ouroboros-consensus-cardano/golden/cardano/QueryVersion2/CardanoNodeToClientVersion12/SerialisedBlock_Mary: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntersectMBO/ouroboros-consensus/946896723dbdf61b1f7e9de472cc19ecfb14cda1/ouroboros-consensus-cardano/golden/cardano/QueryVersion2/CardanoNodeToClientVersion12/SerialisedBlock_Mary -------------------------------------------------------------------------------- /ouroboros-consensus-cardano/golden/cardano/QueryVersion2/CardanoNodeToClientVersion12/SerialisedBlock_Shelley: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntersectMBO/ouroboros-consensus/946896723dbdf61b1f7e9de472cc19ecfb14cda1/ouroboros-consensus-cardano/golden/cardano/QueryVersion2/CardanoNodeToClientVersion12/SerialisedBlock_Shelley -------------------------------------------------------------------------------- /ouroboros-consensus-cardano/golden/cardano/QueryVersion2/CardanoNodeToClientVersion12/SlotNo_Allegra: -------------------------------------------------------------------------------- 1 | * -------------------------------------------------------------------------------- /ouroboros-consensus-cardano/golden/cardano/QueryVersion2/CardanoNodeToClientVersion12/SlotNo_Alonzo: -------------------------------------------------------------------------------- 1 | * -------------------------------------------------------------------------------- /ouroboros-consensus-cardano/golden/cardano/QueryVersion2/CardanoNodeToClientVersion12/SlotNo_Babbage: -------------------------------------------------------------------------------- 1 | * -------------------------------------------------------------------------------- /ouroboros-consensus-cardano/golden/cardano/QueryVersion2/CardanoNodeToClientVersion12/SlotNo_Byron: -------------------------------------------------------------------------------- 1 | * -------------------------------------------------------------------------------- /ouroboros-consensus-cardano/golden/cardano/QueryVersion2/CardanoNodeToClientVersion12/SlotNo_Conway: -------------------------------------------------------------------------------- 1 | * -------------------------------------------------------------------------------- /ouroboros-consensus-cardano/golden/cardano/QueryVersion2/CardanoNodeToClientVersion12/SlotNo_Mary: -------------------------------------------------------------------------------- 1 | * -------------------------------------------------------------------------------- /ouroboros-consensus-cardano/golden/cardano/QueryVersion2/CardanoNodeToClientVersion12/SlotNo_Shelley: -------------------------------------------------------------------------------- 1 | * -------------------------------------------------------------------------------- /ouroboros-consensus-cardano/golden/cardano/QueryVersion2/CardanoNodeToClientVersion13/ApplyTxErr_Allegra: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntersectMBO/ouroboros-consensus/946896723dbdf61b1f7e9de472cc19ecfb14cda1/ouroboros-consensus-cardano/golden/cardano/QueryVersion2/CardanoNodeToClientVersion13/ApplyTxErr_Allegra -------------------------------------------------------------------------------- /ouroboros-consensus-cardano/golden/cardano/QueryVersion2/CardanoNodeToClientVersion13/ApplyTxErr_Alonzo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntersectMBO/ouroboros-consensus/946896723dbdf61b1f7e9de472cc19ecfb14cda1/ouroboros-consensus-cardano/golden/cardano/QueryVersion2/CardanoNodeToClientVersion13/ApplyTxErr_Alonzo -------------------------------------------------------------------------------- /ouroboros-consensus-cardano/golden/cardano/QueryVersion2/CardanoNodeToClientVersion13/ApplyTxErr_Babbage: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntersectMBO/ouroboros-consensus/946896723dbdf61b1f7e9de472cc19ecfb14cda1/ouroboros-consensus-cardano/golden/cardano/QueryVersion2/CardanoNodeToClientVersion13/ApplyTxErr_Babbage -------------------------------------------------------------------------------- /ouroboros-consensus-cardano/golden/cardano/QueryVersion2/CardanoNodeToClientVersion13/ApplyTxErr_Byron: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntersectMBO/ouroboros-consensus/946896723dbdf61b1f7e9de472cc19ecfb14cda1/ouroboros-consensus-cardano/golden/cardano/QueryVersion2/CardanoNodeToClientVersion13/ApplyTxErr_Byron -------------------------------------------------------------------------------- /ouroboros-consensus-cardano/golden/cardano/QueryVersion2/CardanoNodeToClientVersion13/ApplyTxErr_Conway: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntersectMBO/ouroboros-consensus/946896723dbdf61b1f7e9de472cc19ecfb14cda1/ouroboros-consensus-cardano/golden/cardano/QueryVersion2/CardanoNodeToClientVersion13/ApplyTxErr_Conway -------------------------------------------------------------------------------- /ouroboros-consensus-cardano/golden/cardano/QueryVersion2/CardanoNodeToClientVersion13/ApplyTxErr_Mary: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntersectMBO/ouroboros-consensus/946896723dbdf61b1f7e9de472cc19ecfb14cda1/ouroboros-consensus-cardano/golden/cardano/QueryVersion2/CardanoNodeToClientVersion13/ApplyTxErr_Mary -------------------------------------------------------------------------------- /ouroboros-consensus-cardano/golden/cardano/QueryVersion2/CardanoNodeToClientVersion13/ApplyTxErr_Shelley: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntersectMBO/ouroboros-consensus/946896723dbdf61b1f7e9de472cc19ecfb14cda1/ouroboros-consensus-cardano/golden/cardano/QueryVersion2/CardanoNodeToClientVersion13/ApplyTxErr_Shelley -------------------------------------------------------------------------------- /ouroboros-consensus-cardano/golden/cardano/QueryVersion2/CardanoNodeToClientVersion13/Block_Allegra: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntersectMBO/ouroboros-consensus/946896723dbdf61b1f7e9de472cc19ecfb14cda1/ouroboros-consensus-cardano/golden/cardano/QueryVersion2/CardanoNodeToClientVersion13/Block_Allegra -------------------------------------------------------------------------------- /ouroboros-consensus-cardano/golden/cardano/QueryVersion2/CardanoNodeToClientVersion13/Block_Alonzo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntersectMBO/ouroboros-consensus/946896723dbdf61b1f7e9de472cc19ecfb14cda1/ouroboros-consensus-cardano/golden/cardano/QueryVersion2/CardanoNodeToClientVersion13/Block_Alonzo -------------------------------------------------------------------------------- /ouroboros-consensus-cardano/golden/cardano/QueryVersion2/CardanoNodeToClientVersion13/Block_Babbage: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntersectMBO/ouroboros-consensus/946896723dbdf61b1f7e9de472cc19ecfb14cda1/ouroboros-consensus-cardano/golden/cardano/QueryVersion2/CardanoNodeToClientVersion13/Block_Babbage -------------------------------------------------------------------------------- /ouroboros-consensus-cardano/golden/cardano/QueryVersion2/CardanoNodeToClientVersion13/Block_Byron_EBB: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntersectMBO/ouroboros-consensus/946896723dbdf61b1f7e9de472cc19ecfb14cda1/ouroboros-consensus-cardano/golden/cardano/QueryVersion2/CardanoNodeToClientVersion13/Block_Byron_EBB -------------------------------------------------------------------------------- /ouroboros-consensus-cardano/golden/cardano/QueryVersion2/CardanoNodeToClientVersion13/Block_Byron_regular: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntersectMBO/ouroboros-consensus/946896723dbdf61b1f7e9de472cc19ecfb14cda1/ouroboros-consensus-cardano/golden/cardano/QueryVersion2/CardanoNodeToClientVersion13/Block_Byron_regular -------------------------------------------------------------------------------- /ouroboros-consensus-cardano/golden/cardano/QueryVersion2/CardanoNodeToClientVersion13/Block_Conway: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntersectMBO/ouroboros-consensus/946896723dbdf61b1f7e9de472cc19ecfb14cda1/ouroboros-consensus-cardano/golden/cardano/QueryVersion2/CardanoNodeToClientVersion13/Block_Conway -------------------------------------------------------------------------------- /ouroboros-consensus-cardano/golden/cardano/QueryVersion2/CardanoNodeToClientVersion13/Block_Mary: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntersectMBO/ouroboros-consensus/946896723dbdf61b1f7e9de472cc19ecfb14cda1/ouroboros-consensus-cardano/golden/cardano/QueryVersion2/CardanoNodeToClientVersion13/Block_Mary -------------------------------------------------------------------------------- /ouroboros-consensus-cardano/golden/cardano/QueryVersion2/CardanoNodeToClientVersion13/Block_Shelley: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntersectMBO/ouroboros-consensus/946896723dbdf61b1f7e9de472cc19ecfb14cda1/ouroboros-consensus-cardano/golden/cardano/QueryVersion2/CardanoNodeToClientVersion13/Block_Shelley -------------------------------------------------------------------------------- /ouroboros-consensus-cardano/golden/cardano/QueryVersion2/CardanoNodeToClientVersion13/GenTxId_Allegra: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntersectMBO/ouroboros-consensus/946896723dbdf61b1f7e9de472cc19ecfb14cda1/ouroboros-consensus-cardano/golden/cardano/QueryVersion2/CardanoNodeToClientVersion13/GenTxId_Allegra -------------------------------------------------------------------------------- /ouroboros-consensus-cardano/golden/cardano/QueryVersion2/CardanoNodeToClientVersion13/GenTxId_Alonzo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntersectMBO/ouroboros-consensus/946896723dbdf61b1f7e9de472cc19ecfb14cda1/ouroboros-consensus-cardano/golden/cardano/QueryVersion2/CardanoNodeToClientVersion13/GenTxId_Alonzo -------------------------------------------------------------------------------- /ouroboros-consensus-cardano/golden/cardano/QueryVersion2/CardanoNodeToClientVersion13/GenTxId_Babbage: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntersectMBO/ouroboros-consensus/946896723dbdf61b1f7e9de472cc19ecfb14cda1/ouroboros-consensus-cardano/golden/cardano/QueryVersion2/CardanoNodeToClientVersion13/GenTxId_Babbage -------------------------------------------------------------------------------- /ouroboros-consensus-cardano/golden/cardano/QueryVersion2/CardanoNodeToClientVersion13/GenTxId_Byron: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntersectMBO/ouroboros-consensus/946896723dbdf61b1f7e9de472cc19ecfb14cda1/ouroboros-consensus-cardano/golden/cardano/QueryVersion2/CardanoNodeToClientVersion13/GenTxId_Byron -------------------------------------------------------------------------------- /ouroboros-consensus-cardano/golden/cardano/QueryVersion2/CardanoNodeToClientVersion13/GenTxId_Conway: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntersectMBO/ouroboros-consensus/946896723dbdf61b1f7e9de472cc19ecfb14cda1/ouroboros-consensus-cardano/golden/cardano/QueryVersion2/CardanoNodeToClientVersion13/GenTxId_Conway -------------------------------------------------------------------------------- /ouroboros-consensus-cardano/golden/cardano/QueryVersion2/CardanoNodeToClientVersion13/GenTxId_Mary: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntersectMBO/ouroboros-consensus/946896723dbdf61b1f7e9de472cc19ecfb14cda1/ouroboros-consensus-cardano/golden/cardano/QueryVersion2/CardanoNodeToClientVersion13/GenTxId_Mary -------------------------------------------------------------------------------- /ouroboros-consensus-cardano/golden/cardano/QueryVersion2/CardanoNodeToClientVersion13/GenTxId_Shelley: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntersectMBO/ouroboros-consensus/946896723dbdf61b1f7e9de472cc19ecfb14cda1/ouroboros-consensus-cardano/golden/cardano/QueryVersion2/CardanoNodeToClientVersion13/GenTxId_Shelley -------------------------------------------------------------------------------- /ouroboros-consensus-cardano/golden/cardano/QueryVersion2/CardanoNodeToClientVersion13/GenTx_Allegra: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntersectMBO/ouroboros-consensus/946896723dbdf61b1f7e9de472cc19ecfb14cda1/ouroboros-consensus-cardano/golden/cardano/QueryVersion2/CardanoNodeToClientVersion13/GenTx_Allegra -------------------------------------------------------------------------------- /ouroboros-consensus-cardano/golden/cardano/QueryVersion2/CardanoNodeToClientVersion13/GenTx_Alonzo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntersectMBO/ouroboros-consensus/946896723dbdf61b1f7e9de472cc19ecfb14cda1/ouroboros-consensus-cardano/golden/cardano/QueryVersion2/CardanoNodeToClientVersion13/GenTx_Alonzo -------------------------------------------------------------------------------- /ouroboros-consensus-cardano/golden/cardano/QueryVersion2/CardanoNodeToClientVersion13/GenTx_Babbage: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntersectMBO/ouroboros-consensus/946896723dbdf61b1f7e9de472cc19ecfb14cda1/ouroboros-consensus-cardano/golden/cardano/QueryVersion2/CardanoNodeToClientVersion13/GenTx_Babbage -------------------------------------------------------------------------------- /ouroboros-consensus-cardano/golden/cardano/QueryVersion2/CardanoNodeToClientVersion13/GenTx_Byron: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntersectMBO/ouroboros-consensus/946896723dbdf61b1f7e9de472cc19ecfb14cda1/ouroboros-consensus-cardano/golden/cardano/QueryVersion2/CardanoNodeToClientVersion13/GenTx_Byron -------------------------------------------------------------------------------- /ouroboros-consensus-cardano/golden/cardano/QueryVersion2/CardanoNodeToClientVersion13/GenTx_Conway: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntersectMBO/ouroboros-consensus/946896723dbdf61b1f7e9de472cc19ecfb14cda1/ouroboros-consensus-cardano/golden/cardano/QueryVersion2/CardanoNodeToClientVersion13/GenTx_Conway -------------------------------------------------------------------------------- /ouroboros-consensus-cardano/golden/cardano/QueryVersion2/CardanoNodeToClientVersion13/GenTx_Mary: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntersectMBO/ouroboros-consensus/946896723dbdf61b1f7e9de472cc19ecfb14cda1/ouroboros-consensus-cardano/golden/cardano/QueryVersion2/CardanoNodeToClientVersion13/GenTx_Mary -------------------------------------------------------------------------------- /ouroboros-consensus-cardano/golden/cardano/QueryVersion2/CardanoNodeToClientVersion13/GenTx_Shelley: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntersectMBO/ouroboros-consensus/946896723dbdf61b1f7e9de472cc19ecfb14cda1/ouroboros-consensus-cardano/golden/cardano/QueryVersion2/CardanoNodeToClientVersion13/GenTx_Shelley -------------------------------------------------------------------------------- /ouroboros-consensus-cardano/golden/cardano/QueryVersion2/CardanoNodeToClientVersion13/LedgerConfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntersectMBO/ouroboros-consensus/946896723dbdf61b1f7e9de472cc19ecfb14cda1/ouroboros-consensus-cardano/golden/cardano/QueryVersion2/CardanoNodeToClientVersion13/LedgerConfig -------------------------------------------------------------------------------- /ouroboros-consensus-cardano/golden/cardano/QueryVersion2/CardanoNodeToClientVersion13/Query_Alonzo_GetEpochNo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntersectMBO/ouroboros-consensus/946896723dbdf61b1f7e9de472cc19ecfb14cda1/ouroboros-consensus-cardano/golden/cardano/QueryVersion2/CardanoNodeToClientVersion13/Query_Alonzo_GetEpochNo -------------------------------------------------------------------------------- /ouroboros-consensus-cardano/golden/cardano/QueryVersion2/CardanoNodeToClientVersion13/Query_AnytimeByron: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntersectMBO/ouroboros-consensus/946896723dbdf61b1f7e9de472cc19ecfb14cda1/ouroboros-consensus-cardano/golden/cardano/QueryVersion2/CardanoNodeToClientVersion13/Query_AnytimeByron -------------------------------------------------------------------------------- /ouroboros-consensus-cardano/golden/cardano/QueryVersion2/CardanoNodeToClientVersion13/Query_AnytimeShelley: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntersectMBO/ouroboros-consensus/946896723dbdf61b1f7e9de472cc19ecfb14cda1/ouroboros-consensus-cardano/golden/cardano/QueryVersion2/CardanoNodeToClientVersion13/Query_AnytimeShelley -------------------------------------------------------------------------------- /ouroboros-consensus-cardano/golden/cardano/QueryVersion2/CardanoNodeToClientVersion13/Query_Byron: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntersectMBO/ouroboros-consensus/946896723dbdf61b1f7e9de472cc19ecfb14cda1/ouroboros-consensus-cardano/golden/cardano/QueryVersion2/CardanoNodeToClientVersion13/Query_Byron -------------------------------------------------------------------------------- /ouroboros-consensus-cardano/golden/cardano/QueryVersion2/CardanoNodeToClientVersion13/Query_Conway_GetEpochNo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntersectMBO/ouroboros-consensus/946896723dbdf61b1f7e9de472cc19ecfb14cda1/ouroboros-consensus-cardano/golden/cardano/QueryVersion2/CardanoNodeToClientVersion13/Query_Conway_GetEpochNo -------------------------------------------------------------------------------- /ouroboros-consensus-cardano/golden/cardano/QueryVersion2/CardanoNodeToClientVersion13/Query_HardFork: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntersectMBO/ouroboros-consensus/946896723dbdf61b1f7e9de472cc19ecfb14cda1/ouroboros-consensus-cardano/golden/cardano/QueryVersion2/CardanoNodeToClientVersion13/Query_HardFork -------------------------------------------------------------------------------- /ouroboros-consensus-cardano/golden/cardano/QueryVersion2/CardanoNodeToClientVersion13/Query_Mary_GetEpochNo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntersectMBO/ouroboros-consensus/946896723dbdf61b1f7e9de472cc19ecfb14cda1/ouroboros-consensus-cardano/golden/cardano/QueryVersion2/CardanoNodeToClientVersion13/Query_Mary_GetEpochNo -------------------------------------------------------------------------------- /ouroboros-consensus-cardano/golden/cardano/QueryVersion2/CardanoNodeToClientVersion13/Query_Mary_GetLedgerTip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntersectMBO/ouroboros-consensus/946896723dbdf61b1f7e9de472cc19ecfb14cda1/ouroboros-consensus-cardano/golden/cardano/QueryVersion2/CardanoNodeToClientVersion13/Query_Mary_GetLedgerTip -------------------------------------------------------------------------------- /ouroboros-consensus-cardano/golden/cardano/QueryVersion2/CardanoNodeToClientVersion13/Result_Allegra_EpochNo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntersectMBO/ouroboros-consensus/946896723dbdf61b1f7e9de472cc19ecfb14cda1/ouroboros-consensus-cardano/golden/cardano/QueryVersion2/CardanoNodeToClientVersion13/Result_Allegra_EpochNo -------------------------------------------------------------------------------- /ouroboros-consensus-cardano/golden/cardano/QueryVersion2/CardanoNodeToClientVersion13/Result_Alonzo_EpochNo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntersectMBO/ouroboros-consensus/946896723dbdf61b1f7e9de472cc19ecfb14cda1/ouroboros-consensus-cardano/golden/cardano/QueryVersion2/CardanoNodeToClientVersion13/Result_Alonzo_EpochNo -------------------------------------------------------------------------------- /ouroboros-consensus-cardano/golden/cardano/QueryVersion2/CardanoNodeToClientVersion13/Result_Alonzo_LedgerTip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntersectMBO/ouroboros-consensus/946896723dbdf61b1f7e9de472cc19ecfb14cda1/ouroboros-consensus-cardano/golden/cardano/QueryVersion2/CardanoNodeToClientVersion13/Result_Alonzo_LedgerTip -------------------------------------------------------------------------------- /ouroboros-consensus-cardano/golden/cardano/QueryVersion2/CardanoNodeToClientVersion13/Result_AnytimeByron: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntersectMBO/ouroboros-consensus/946896723dbdf61b1f7e9de472cc19ecfb14cda1/ouroboros-consensus-cardano/golden/cardano/QueryVersion2/CardanoNodeToClientVersion13/Result_AnytimeByron -------------------------------------------------------------------------------- /ouroboros-consensus-cardano/golden/cardano/QueryVersion2/CardanoNodeToClientVersion13/Result_AnytimeShelley: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntersectMBO/ouroboros-consensus/946896723dbdf61b1f7e9de472cc19ecfb14cda1/ouroboros-consensus-cardano/golden/cardano/QueryVersion2/CardanoNodeToClientVersion13/Result_AnytimeShelley -------------------------------------------------------------------------------- /ouroboros-consensus-cardano/golden/cardano/QueryVersion2/CardanoNodeToClientVersion13/Result_Babbage_EpochNo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntersectMBO/ouroboros-consensus/946896723dbdf61b1f7e9de472cc19ecfb14cda1/ouroboros-consensus-cardano/golden/cardano/QueryVersion2/CardanoNodeToClientVersion13/Result_Babbage_EpochNo -------------------------------------------------------------------------------- /ouroboros-consensus-cardano/golden/cardano/QueryVersion2/CardanoNodeToClientVersion13/Result_Byron: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntersectMBO/ouroboros-consensus/946896723dbdf61b1f7e9de472cc19ecfb14cda1/ouroboros-consensus-cardano/golden/cardano/QueryVersion2/CardanoNodeToClientVersion13/Result_Byron -------------------------------------------------------------------------------- /ouroboros-consensus-cardano/golden/cardano/QueryVersion2/CardanoNodeToClientVersion13/Result_Conway_EpochNo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntersectMBO/ouroboros-consensus/946896723dbdf61b1f7e9de472cc19ecfb14cda1/ouroboros-consensus-cardano/golden/cardano/QueryVersion2/CardanoNodeToClientVersion13/Result_Conway_EpochNo -------------------------------------------------------------------------------- /ouroboros-consensus-cardano/golden/cardano/QueryVersion2/CardanoNodeToClientVersion13/Result_Conway_LedgerTip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntersectMBO/ouroboros-consensus/946896723dbdf61b1f7e9de472cc19ecfb14cda1/ouroboros-consensus-cardano/golden/cardano/QueryVersion2/CardanoNodeToClientVersion13/Result_Conway_LedgerTip -------------------------------------------------------------------------------- /ouroboros-consensus-cardano/golden/cardano/QueryVersion2/CardanoNodeToClientVersion13/Result_EraMismatchByron: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntersectMBO/ouroboros-consensus/946896723dbdf61b1f7e9de472cc19ecfb14cda1/ouroboros-consensus-cardano/golden/cardano/QueryVersion2/CardanoNodeToClientVersion13/Result_EraMismatchByron -------------------------------------------------------------------------------- /ouroboros-consensus-cardano/golden/cardano/QueryVersion2/CardanoNodeToClientVersion13/Result_HardFork: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntersectMBO/ouroboros-consensus/946896723dbdf61b1f7e9de472cc19ecfb14cda1/ouroboros-consensus-cardano/golden/cardano/QueryVersion2/CardanoNodeToClientVersion13/Result_HardFork -------------------------------------------------------------------------------- /ouroboros-consensus-cardano/golden/cardano/QueryVersion2/CardanoNodeToClientVersion13/Result_Mary_EpochNo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntersectMBO/ouroboros-consensus/946896723dbdf61b1f7e9de472cc19ecfb14cda1/ouroboros-consensus-cardano/golden/cardano/QueryVersion2/CardanoNodeToClientVersion13/Result_Mary_EpochNo -------------------------------------------------------------------------------- /ouroboros-consensus-cardano/golden/cardano/QueryVersion2/CardanoNodeToClientVersion13/Result_Mary_LedgerTip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntersectMBO/ouroboros-consensus/946896723dbdf61b1f7e9de472cc19ecfb14cda1/ouroboros-consensus-cardano/golden/cardano/QueryVersion2/CardanoNodeToClientVersion13/Result_Mary_LedgerTip -------------------------------------------------------------------------------- /ouroboros-consensus-cardano/golden/cardano/QueryVersion2/CardanoNodeToClientVersion13/Result_Shelley_EpochNo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntersectMBO/ouroboros-consensus/946896723dbdf61b1f7e9de472cc19ecfb14cda1/ouroboros-consensus-cardano/golden/cardano/QueryVersion2/CardanoNodeToClientVersion13/Result_Shelley_EpochNo -------------------------------------------------------------------------------- /ouroboros-consensus-cardano/golden/cardano/QueryVersion2/CardanoNodeToClientVersion13/SerialisedBlock_Mary: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntersectMBO/ouroboros-consensus/946896723dbdf61b1f7e9de472cc19ecfb14cda1/ouroboros-consensus-cardano/golden/cardano/QueryVersion2/CardanoNodeToClientVersion13/SerialisedBlock_Mary -------------------------------------------------------------------------------- /ouroboros-consensus-cardano/golden/cardano/QueryVersion2/CardanoNodeToClientVersion13/SlotNo_Allegra: -------------------------------------------------------------------------------- 1 | * -------------------------------------------------------------------------------- /ouroboros-consensus-cardano/golden/cardano/QueryVersion2/CardanoNodeToClientVersion13/SlotNo_Alonzo: -------------------------------------------------------------------------------- 1 | * -------------------------------------------------------------------------------- /ouroboros-consensus-cardano/golden/cardano/QueryVersion2/CardanoNodeToClientVersion13/SlotNo_Babbage: -------------------------------------------------------------------------------- 1 | * -------------------------------------------------------------------------------- /ouroboros-consensus-cardano/golden/cardano/QueryVersion2/CardanoNodeToClientVersion13/SlotNo_Byron: -------------------------------------------------------------------------------- 1 | * -------------------------------------------------------------------------------- /ouroboros-consensus-cardano/golden/cardano/QueryVersion2/CardanoNodeToClientVersion13/SlotNo_Conway: -------------------------------------------------------------------------------- 1 | * -------------------------------------------------------------------------------- /ouroboros-consensus-cardano/golden/cardano/QueryVersion2/CardanoNodeToClientVersion13/SlotNo_Mary: -------------------------------------------------------------------------------- 1 | * -------------------------------------------------------------------------------- /ouroboros-consensus-cardano/golden/cardano/QueryVersion2/CardanoNodeToClientVersion13/SlotNo_Shelley: -------------------------------------------------------------------------------- 1 | * -------------------------------------------------------------------------------- /ouroboros-consensus-cardano/golden/cardano/QueryVersion2/CardanoNodeToClientVersion14/ApplyTxErr_Allegra: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntersectMBO/ouroboros-consensus/946896723dbdf61b1f7e9de472cc19ecfb14cda1/ouroboros-consensus-cardano/golden/cardano/QueryVersion2/CardanoNodeToClientVersion14/ApplyTxErr_Allegra -------------------------------------------------------------------------------- /ouroboros-consensus-cardano/golden/cardano/QueryVersion2/CardanoNodeToClientVersion14/ApplyTxErr_Alonzo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntersectMBO/ouroboros-consensus/946896723dbdf61b1f7e9de472cc19ecfb14cda1/ouroboros-consensus-cardano/golden/cardano/QueryVersion2/CardanoNodeToClientVersion14/ApplyTxErr_Alonzo -------------------------------------------------------------------------------- /ouroboros-consensus-cardano/golden/cardano/QueryVersion2/CardanoNodeToClientVersion14/ApplyTxErr_Babbage: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntersectMBO/ouroboros-consensus/946896723dbdf61b1f7e9de472cc19ecfb14cda1/ouroboros-consensus-cardano/golden/cardano/QueryVersion2/CardanoNodeToClientVersion14/ApplyTxErr_Babbage -------------------------------------------------------------------------------- /ouroboros-consensus-cardano/golden/cardano/QueryVersion2/CardanoNodeToClientVersion14/ApplyTxErr_Byron: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntersectMBO/ouroboros-consensus/946896723dbdf61b1f7e9de472cc19ecfb14cda1/ouroboros-consensus-cardano/golden/cardano/QueryVersion2/CardanoNodeToClientVersion14/ApplyTxErr_Byron -------------------------------------------------------------------------------- /ouroboros-consensus-cardano/golden/cardano/QueryVersion2/CardanoNodeToClientVersion14/ApplyTxErr_Conway: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntersectMBO/ouroboros-consensus/946896723dbdf61b1f7e9de472cc19ecfb14cda1/ouroboros-consensus-cardano/golden/cardano/QueryVersion2/CardanoNodeToClientVersion14/ApplyTxErr_Conway -------------------------------------------------------------------------------- /ouroboros-consensus-cardano/golden/cardano/QueryVersion2/CardanoNodeToClientVersion14/ApplyTxErr_Mary: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntersectMBO/ouroboros-consensus/946896723dbdf61b1f7e9de472cc19ecfb14cda1/ouroboros-consensus-cardano/golden/cardano/QueryVersion2/CardanoNodeToClientVersion14/ApplyTxErr_Mary -------------------------------------------------------------------------------- /ouroboros-consensus-cardano/golden/cardano/QueryVersion2/CardanoNodeToClientVersion14/ApplyTxErr_Shelley: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntersectMBO/ouroboros-consensus/946896723dbdf61b1f7e9de472cc19ecfb14cda1/ouroboros-consensus-cardano/golden/cardano/QueryVersion2/CardanoNodeToClientVersion14/ApplyTxErr_Shelley -------------------------------------------------------------------------------- /ouroboros-consensus-cardano/golden/cardano/QueryVersion2/CardanoNodeToClientVersion14/Block_Allegra: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntersectMBO/ouroboros-consensus/946896723dbdf61b1f7e9de472cc19ecfb14cda1/ouroboros-consensus-cardano/golden/cardano/QueryVersion2/CardanoNodeToClientVersion14/Block_Allegra -------------------------------------------------------------------------------- /ouroboros-consensus-cardano/golden/cardano/QueryVersion2/CardanoNodeToClientVersion14/Block_Alonzo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntersectMBO/ouroboros-consensus/946896723dbdf61b1f7e9de472cc19ecfb14cda1/ouroboros-consensus-cardano/golden/cardano/QueryVersion2/CardanoNodeToClientVersion14/Block_Alonzo -------------------------------------------------------------------------------- /ouroboros-consensus-cardano/golden/cardano/QueryVersion2/CardanoNodeToClientVersion14/Block_Babbage: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntersectMBO/ouroboros-consensus/946896723dbdf61b1f7e9de472cc19ecfb14cda1/ouroboros-consensus-cardano/golden/cardano/QueryVersion2/CardanoNodeToClientVersion14/Block_Babbage -------------------------------------------------------------------------------- /ouroboros-consensus-cardano/golden/cardano/QueryVersion2/CardanoNodeToClientVersion14/Block_Byron_EBB: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntersectMBO/ouroboros-consensus/946896723dbdf61b1f7e9de472cc19ecfb14cda1/ouroboros-consensus-cardano/golden/cardano/QueryVersion2/CardanoNodeToClientVersion14/Block_Byron_EBB -------------------------------------------------------------------------------- /ouroboros-consensus-cardano/golden/cardano/QueryVersion2/CardanoNodeToClientVersion14/Block_Byron_regular: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntersectMBO/ouroboros-consensus/946896723dbdf61b1f7e9de472cc19ecfb14cda1/ouroboros-consensus-cardano/golden/cardano/QueryVersion2/CardanoNodeToClientVersion14/Block_Byron_regular -------------------------------------------------------------------------------- /ouroboros-consensus-cardano/golden/cardano/QueryVersion2/CardanoNodeToClientVersion14/Block_Conway: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntersectMBO/ouroboros-consensus/946896723dbdf61b1f7e9de472cc19ecfb14cda1/ouroboros-consensus-cardano/golden/cardano/QueryVersion2/CardanoNodeToClientVersion14/Block_Conway -------------------------------------------------------------------------------- /ouroboros-consensus-cardano/golden/cardano/QueryVersion2/CardanoNodeToClientVersion14/Block_Mary: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntersectMBO/ouroboros-consensus/946896723dbdf61b1f7e9de472cc19ecfb14cda1/ouroboros-consensus-cardano/golden/cardano/QueryVersion2/CardanoNodeToClientVersion14/Block_Mary -------------------------------------------------------------------------------- /ouroboros-consensus-cardano/golden/cardano/QueryVersion2/CardanoNodeToClientVersion14/Block_Shelley: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntersectMBO/ouroboros-consensus/946896723dbdf61b1f7e9de472cc19ecfb14cda1/ouroboros-consensus-cardano/golden/cardano/QueryVersion2/CardanoNodeToClientVersion14/Block_Shelley -------------------------------------------------------------------------------- /ouroboros-consensus-cardano/golden/cardano/QueryVersion2/CardanoNodeToClientVersion14/GenTxId_Allegra: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntersectMBO/ouroboros-consensus/946896723dbdf61b1f7e9de472cc19ecfb14cda1/ouroboros-consensus-cardano/golden/cardano/QueryVersion2/CardanoNodeToClientVersion14/GenTxId_Allegra -------------------------------------------------------------------------------- /ouroboros-consensus-cardano/golden/cardano/QueryVersion2/CardanoNodeToClientVersion14/GenTxId_Alonzo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntersectMBO/ouroboros-consensus/946896723dbdf61b1f7e9de472cc19ecfb14cda1/ouroboros-consensus-cardano/golden/cardano/QueryVersion2/CardanoNodeToClientVersion14/GenTxId_Alonzo -------------------------------------------------------------------------------- /ouroboros-consensus-cardano/golden/cardano/QueryVersion2/CardanoNodeToClientVersion14/GenTxId_Babbage: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntersectMBO/ouroboros-consensus/946896723dbdf61b1f7e9de472cc19ecfb14cda1/ouroboros-consensus-cardano/golden/cardano/QueryVersion2/CardanoNodeToClientVersion14/GenTxId_Babbage -------------------------------------------------------------------------------- /ouroboros-consensus-cardano/golden/cardano/QueryVersion2/CardanoNodeToClientVersion14/GenTxId_Byron: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntersectMBO/ouroboros-consensus/946896723dbdf61b1f7e9de472cc19ecfb14cda1/ouroboros-consensus-cardano/golden/cardano/QueryVersion2/CardanoNodeToClientVersion14/GenTxId_Byron -------------------------------------------------------------------------------- /ouroboros-consensus-cardano/golden/cardano/QueryVersion2/CardanoNodeToClientVersion14/GenTxId_Conway: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntersectMBO/ouroboros-consensus/946896723dbdf61b1f7e9de472cc19ecfb14cda1/ouroboros-consensus-cardano/golden/cardano/QueryVersion2/CardanoNodeToClientVersion14/GenTxId_Conway -------------------------------------------------------------------------------- /ouroboros-consensus-cardano/golden/cardano/QueryVersion2/CardanoNodeToClientVersion14/GenTxId_Mary: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntersectMBO/ouroboros-consensus/946896723dbdf61b1f7e9de472cc19ecfb14cda1/ouroboros-consensus-cardano/golden/cardano/QueryVersion2/CardanoNodeToClientVersion14/GenTxId_Mary -------------------------------------------------------------------------------- /ouroboros-consensus-cardano/golden/cardano/QueryVersion2/CardanoNodeToClientVersion14/GenTxId_Shelley: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntersectMBO/ouroboros-consensus/946896723dbdf61b1f7e9de472cc19ecfb14cda1/ouroboros-consensus-cardano/golden/cardano/QueryVersion2/CardanoNodeToClientVersion14/GenTxId_Shelley -------------------------------------------------------------------------------- /ouroboros-consensus-cardano/golden/cardano/QueryVersion2/CardanoNodeToClientVersion14/GenTx_Allegra: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntersectMBO/ouroboros-consensus/946896723dbdf61b1f7e9de472cc19ecfb14cda1/ouroboros-consensus-cardano/golden/cardano/QueryVersion2/CardanoNodeToClientVersion14/GenTx_Allegra -------------------------------------------------------------------------------- /ouroboros-consensus-cardano/golden/cardano/QueryVersion2/CardanoNodeToClientVersion14/GenTx_Alonzo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntersectMBO/ouroboros-consensus/946896723dbdf61b1f7e9de472cc19ecfb14cda1/ouroboros-consensus-cardano/golden/cardano/QueryVersion2/CardanoNodeToClientVersion14/GenTx_Alonzo -------------------------------------------------------------------------------- /ouroboros-consensus-cardano/golden/cardano/QueryVersion2/CardanoNodeToClientVersion14/GenTx_Babbage: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntersectMBO/ouroboros-consensus/946896723dbdf61b1f7e9de472cc19ecfb14cda1/ouroboros-consensus-cardano/golden/cardano/QueryVersion2/CardanoNodeToClientVersion14/GenTx_Babbage -------------------------------------------------------------------------------- /ouroboros-consensus-cardano/golden/cardano/QueryVersion2/CardanoNodeToClientVersion14/GenTx_Byron: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntersectMBO/ouroboros-consensus/946896723dbdf61b1f7e9de472cc19ecfb14cda1/ouroboros-consensus-cardano/golden/cardano/QueryVersion2/CardanoNodeToClientVersion14/GenTx_Byron -------------------------------------------------------------------------------- /ouroboros-consensus-cardano/golden/cardano/QueryVersion2/CardanoNodeToClientVersion14/GenTx_Conway: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntersectMBO/ouroboros-consensus/946896723dbdf61b1f7e9de472cc19ecfb14cda1/ouroboros-consensus-cardano/golden/cardano/QueryVersion2/CardanoNodeToClientVersion14/GenTx_Conway -------------------------------------------------------------------------------- /ouroboros-consensus-cardano/golden/cardano/QueryVersion2/CardanoNodeToClientVersion14/GenTx_Mary: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntersectMBO/ouroboros-consensus/946896723dbdf61b1f7e9de472cc19ecfb14cda1/ouroboros-consensus-cardano/golden/cardano/QueryVersion2/CardanoNodeToClientVersion14/GenTx_Mary -------------------------------------------------------------------------------- /ouroboros-consensus-cardano/golden/cardano/QueryVersion2/CardanoNodeToClientVersion14/GenTx_Shelley: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntersectMBO/ouroboros-consensus/946896723dbdf61b1f7e9de472cc19ecfb14cda1/ouroboros-consensus-cardano/golden/cardano/QueryVersion2/CardanoNodeToClientVersion14/GenTx_Shelley -------------------------------------------------------------------------------- /ouroboros-consensus-cardano/golden/cardano/QueryVersion2/CardanoNodeToClientVersion14/LedgerConfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntersectMBO/ouroboros-consensus/946896723dbdf61b1f7e9de472cc19ecfb14cda1/ouroboros-consensus-cardano/golden/cardano/QueryVersion2/CardanoNodeToClientVersion14/LedgerConfig -------------------------------------------------------------------------------- /ouroboros-consensus-cardano/golden/cardano/QueryVersion2/CardanoNodeToClientVersion14/Query_AnytimeByron: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntersectMBO/ouroboros-consensus/946896723dbdf61b1f7e9de472cc19ecfb14cda1/ouroboros-consensus-cardano/golden/cardano/QueryVersion2/CardanoNodeToClientVersion14/Query_AnytimeByron -------------------------------------------------------------------------------- /ouroboros-consensus-cardano/golden/cardano/QueryVersion2/CardanoNodeToClientVersion14/Query_AnytimeShelley: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntersectMBO/ouroboros-consensus/946896723dbdf61b1f7e9de472cc19ecfb14cda1/ouroboros-consensus-cardano/golden/cardano/QueryVersion2/CardanoNodeToClientVersion14/Query_AnytimeShelley -------------------------------------------------------------------------------- /ouroboros-consensus-cardano/golden/cardano/QueryVersion2/CardanoNodeToClientVersion14/Query_Byron: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntersectMBO/ouroboros-consensus/946896723dbdf61b1f7e9de472cc19ecfb14cda1/ouroboros-consensus-cardano/golden/cardano/QueryVersion2/CardanoNodeToClientVersion14/Query_Byron -------------------------------------------------------------------------------- /ouroboros-consensus-cardano/golden/cardano/QueryVersion2/CardanoNodeToClientVersion14/Query_HardFork: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntersectMBO/ouroboros-consensus/946896723dbdf61b1f7e9de472cc19ecfb14cda1/ouroboros-consensus-cardano/golden/cardano/QueryVersion2/CardanoNodeToClientVersion14/Query_HardFork -------------------------------------------------------------------------------- /ouroboros-consensus-cardano/golden/cardano/QueryVersion2/CardanoNodeToClientVersion14/Query_Mary_GetEpochNo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntersectMBO/ouroboros-consensus/946896723dbdf61b1f7e9de472cc19ecfb14cda1/ouroboros-consensus-cardano/golden/cardano/QueryVersion2/CardanoNodeToClientVersion14/Query_Mary_GetEpochNo -------------------------------------------------------------------------------- /ouroboros-consensus-cardano/golden/cardano/QueryVersion2/CardanoNodeToClientVersion14/Result_Alonzo_EpochNo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntersectMBO/ouroboros-consensus/946896723dbdf61b1f7e9de472cc19ecfb14cda1/ouroboros-consensus-cardano/golden/cardano/QueryVersion2/CardanoNodeToClientVersion14/Result_Alonzo_EpochNo -------------------------------------------------------------------------------- /ouroboros-consensus-cardano/golden/cardano/QueryVersion2/CardanoNodeToClientVersion14/Result_AnytimeByron: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntersectMBO/ouroboros-consensus/946896723dbdf61b1f7e9de472cc19ecfb14cda1/ouroboros-consensus-cardano/golden/cardano/QueryVersion2/CardanoNodeToClientVersion14/Result_AnytimeByron -------------------------------------------------------------------------------- /ouroboros-consensus-cardano/golden/cardano/QueryVersion2/CardanoNodeToClientVersion14/Result_AnytimeShelley: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntersectMBO/ouroboros-consensus/946896723dbdf61b1f7e9de472cc19ecfb14cda1/ouroboros-consensus-cardano/golden/cardano/QueryVersion2/CardanoNodeToClientVersion14/Result_AnytimeShelley -------------------------------------------------------------------------------- /ouroboros-consensus-cardano/golden/cardano/QueryVersion2/CardanoNodeToClientVersion14/Result_Byron: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntersectMBO/ouroboros-consensus/946896723dbdf61b1f7e9de472cc19ecfb14cda1/ouroboros-consensus-cardano/golden/cardano/QueryVersion2/CardanoNodeToClientVersion14/Result_Byron -------------------------------------------------------------------------------- /ouroboros-consensus-cardano/golden/cardano/QueryVersion2/CardanoNodeToClientVersion14/Result_Conway_EpochNo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntersectMBO/ouroboros-consensus/946896723dbdf61b1f7e9de472cc19ecfb14cda1/ouroboros-consensus-cardano/golden/cardano/QueryVersion2/CardanoNodeToClientVersion14/Result_Conway_EpochNo -------------------------------------------------------------------------------- /ouroboros-consensus-cardano/golden/cardano/QueryVersion2/CardanoNodeToClientVersion14/Result_HardFork: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntersectMBO/ouroboros-consensus/946896723dbdf61b1f7e9de472cc19ecfb14cda1/ouroboros-consensus-cardano/golden/cardano/QueryVersion2/CardanoNodeToClientVersion14/Result_HardFork -------------------------------------------------------------------------------- /ouroboros-consensus-cardano/golden/cardano/QueryVersion2/CardanoNodeToClientVersion14/Result_Mary_EpochNo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntersectMBO/ouroboros-consensus/946896723dbdf61b1f7e9de472cc19ecfb14cda1/ouroboros-consensus-cardano/golden/cardano/QueryVersion2/CardanoNodeToClientVersion14/Result_Mary_EpochNo -------------------------------------------------------------------------------- /ouroboros-consensus-cardano/golden/cardano/QueryVersion2/CardanoNodeToClientVersion14/Result_Mary_LedgerTip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntersectMBO/ouroboros-consensus/946896723dbdf61b1f7e9de472cc19ecfb14cda1/ouroboros-consensus-cardano/golden/cardano/QueryVersion2/CardanoNodeToClientVersion14/Result_Mary_LedgerTip -------------------------------------------------------------------------------- /ouroboros-consensus-cardano/golden/cardano/QueryVersion2/CardanoNodeToClientVersion14/SerialisedBlock_Mary: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntersectMBO/ouroboros-consensus/946896723dbdf61b1f7e9de472cc19ecfb14cda1/ouroboros-consensus-cardano/golden/cardano/QueryVersion2/CardanoNodeToClientVersion14/SerialisedBlock_Mary -------------------------------------------------------------------------------- /ouroboros-consensus-cardano/golden/cardano/QueryVersion2/CardanoNodeToClientVersion14/SlotNo_Allegra: -------------------------------------------------------------------------------- 1 | * -------------------------------------------------------------------------------- /ouroboros-consensus-cardano/golden/cardano/QueryVersion2/CardanoNodeToClientVersion14/SlotNo_Alonzo: -------------------------------------------------------------------------------- 1 | * -------------------------------------------------------------------------------- /ouroboros-consensus-cardano/golden/cardano/QueryVersion2/CardanoNodeToClientVersion14/SlotNo_Babbage: -------------------------------------------------------------------------------- 1 | * -------------------------------------------------------------------------------- /ouroboros-consensus-cardano/golden/cardano/QueryVersion2/CardanoNodeToClientVersion14/SlotNo_Byron: -------------------------------------------------------------------------------- 1 | * -------------------------------------------------------------------------------- /ouroboros-consensus-cardano/golden/cardano/QueryVersion2/CardanoNodeToClientVersion14/SlotNo_Conway: -------------------------------------------------------------------------------- 1 | * -------------------------------------------------------------------------------- /ouroboros-consensus-cardano/golden/cardano/QueryVersion2/CardanoNodeToClientVersion14/SlotNo_Mary: -------------------------------------------------------------------------------- 1 | * -------------------------------------------------------------------------------- /ouroboros-consensus-cardano/golden/cardano/QueryVersion2/CardanoNodeToClientVersion14/SlotNo_Shelley: -------------------------------------------------------------------------------- 1 | * -------------------------------------------------------------------------------- /ouroboros-consensus-cardano/golden/cardano/QueryVersion2/CardanoNodeToClientVersion15/ApplyTxErr_Allegra: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntersectMBO/ouroboros-consensus/946896723dbdf61b1f7e9de472cc19ecfb14cda1/ouroboros-consensus-cardano/golden/cardano/QueryVersion2/CardanoNodeToClientVersion15/ApplyTxErr_Allegra -------------------------------------------------------------------------------- /ouroboros-consensus-cardano/golden/cardano/QueryVersion2/CardanoNodeToClientVersion15/ApplyTxErr_Alonzo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntersectMBO/ouroboros-consensus/946896723dbdf61b1f7e9de472cc19ecfb14cda1/ouroboros-consensus-cardano/golden/cardano/QueryVersion2/CardanoNodeToClientVersion15/ApplyTxErr_Alonzo -------------------------------------------------------------------------------- /ouroboros-consensus-cardano/golden/cardano/QueryVersion2/CardanoNodeToClientVersion15/ApplyTxErr_Babbage: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntersectMBO/ouroboros-consensus/946896723dbdf61b1f7e9de472cc19ecfb14cda1/ouroboros-consensus-cardano/golden/cardano/QueryVersion2/CardanoNodeToClientVersion15/ApplyTxErr_Babbage -------------------------------------------------------------------------------- /ouroboros-consensus-cardano/golden/cardano/QueryVersion2/CardanoNodeToClientVersion15/ApplyTxErr_Byron: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntersectMBO/ouroboros-consensus/946896723dbdf61b1f7e9de472cc19ecfb14cda1/ouroboros-consensus-cardano/golden/cardano/QueryVersion2/CardanoNodeToClientVersion15/ApplyTxErr_Byron -------------------------------------------------------------------------------- /ouroboros-consensus-cardano/golden/cardano/QueryVersion2/CardanoNodeToClientVersion15/ApplyTxErr_Conway: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntersectMBO/ouroboros-consensus/946896723dbdf61b1f7e9de472cc19ecfb14cda1/ouroboros-consensus-cardano/golden/cardano/QueryVersion2/CardanoNodeToClientVersion15/ApplyTxErr_Conway -------------------------------------------------------------------------------- /ouroboros-consensus-cardano/golden/cardano/QueryVersion2/CardanoNodeToClientVersion15/ApplyTxErr_Mary: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntersectMBO/ouroboros-consensus/946896723dbdf61b1f7e9de472cc19ecfb14cda1/ouroboros-consensus-cardano/golden/cardano/QueryVersion2/CardanoNodeToClientVersion15/ApplyTxErr_Mary -------------------------------------------------------------------------------- /ouroboros-consensus-cardano/golden/cardano/QueryVersion2/CardanoNodeToClientVersion15/ApplyTxErr_Shelley: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntersectMBO/ouroboros-consensus/946896723dbdf61b1f7e9de472cc19ecfb14cda1/ouroboros-consensus-cardano/golden/cardano/QueryVersion2/CardanoNodeToClientVersion15/ApplyTxErr_Shelley -------------------------------------------------------------------------------- /ouroboros-consensus-cardano/golden/cardano/QueryVersion2/CardanoNodeToClientVersion15/Block_Allegra: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntersectMBO/ouroboros-consensus/946896723dbdf61b1f7e9de472cc19ecfb14cda1/ouroboros-consensus-cardano/golden/cardano/QueryVersion2/CardanoNodeToClientVersion15/Block_Allegra -------------------------------------------------------------------------------- /ouroboros-consensus-cardano/golden/cardano/QueryVersion2/CardanoNodeToClientVersion15/Block_Alonzo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntersectMBO/ouroboros-consensus/946896723dbdf61b1f7e9de472cc19ecfb14cda1/ouroboros-consensus-cardano/golden/cardano/QueryVersion2/CardanoNodeToClientVersion15/Block_Alonzo -------------------------------------------------------------------------------- /ouroboros-consensus-cardano/golden/cardano/QueryVersion2/CardanoNodeToClientVersion15/Block_Babbage: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntersectMBO/ouroboros-consensus/946896723dbdf61b1f7e9de472cc19ecfb14cda1/ouroboros-consensus-cardano/golden/cardano/QueryVersion2/CardanoNodeToClientVersion15/Block_Babbage -------------------------------------------------------------------------------- /ouroboros-consensus-cardano/golden/cardano/QueryVersion2/CardanoNodeToClientVersion15/Block_Byron_EBB: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntersectMBO/ouroboros-consensus/946896723dbdf61b1f7e9de472cc19ecfb14cda1/ouroboros-consensus-cardano/golden/cardano/QueryVersion2/CardanoNodeToClientVersion15/Block_Byron_EBB -------------------------------------------------------------------------------- /ouroboros-consensus-cardano/golden/cardano/QueryVersion2/CardanoNodeToClientVersion15/Block_Byron_regular: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntersectMBO/ouroboros-consensus/946896723dbdf61b1f7e9de472cc19ecfb14cda1/ouroboros-consensus-cardano/golden/cardano/QueryVersion2/CardanoNodeToClientVersion15/Block_Byron_regular -------------------------------------------------------------------------------- /ouroboros-consensus-cardano/golden/cardano/QueryVersion2/CardanoNodeToClientVersion15/Block_Conway: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntersectMBO/ouroboros-consensus/946896723dbdf61b1f7e9de472cc19ecfb14cda1/ouroboros-consensus-cardano/golden/cardano/QueryVersion2/CardanoNodeToClientVersion15/Block_Conway -------------------------------------------------------------------------------- /ouroboros-consensus-cardano/golden/cardano/QueryVersion2/CardanoNodeToClientVersion15/Block_Mary: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntersectMBO/ouroboros-consensus/946896723dbdf61b1f7e9de472cc19ecfb14cda1/ouroboros-consensus-cardano/golden/cardano/QueryVersion2/CardanoNodeToClientVersion15/Block_Mary -------------------------------------------------------------------------------- /ouroboros-consensus-cardano/golden/cardano/QueryVersion2/CardanoNodeToClientVersion15/Block_Shelley: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntersectMBO/ouroboros-consensus/946896723dbdf61b1f7e9de472cc19ecfb14cda1/ouroboros-consensus-cardano/golden/cardano/QueryVersion2/CardanoNodeToClientVersion15/Block_Shelley -------------------------------------------------------------------------------- /ouroboros-consensus-cardano/golden/cardano/QueryVersion2/CardanoNodeToClientVersion15/GenTxId_Allegra: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntersectMBO/ouroboros-consensus/946896723dbdf61b1f7e9de472cc19ecfb14cda1/ouroboros-consensus-cardano/golden/cardano/QueryVersion2/CardanoNodeToClientVersion15/GenTxId_Allegra -------------------------------------------------------------------------------- /ouroboros-consensus-cardano/golden/cardano/QueryVersion2/CardanoNodeToClientVersion15/GenTxId_Alonzo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntersectMBO/ouroboros-consensus/946896723dbdf61b1f7e9de472cc19ecfb14cda1/ouroboros-consensus-cardano/golden/cardano/QueryVersion2/CardanoNodeToClientVersion15/GenTxId_Alonzo -------------------------------------------------------------------------------- /ouroboros-consensus-cardano/golden/cardano/QueryVersion2/CardanoNodeToClientVersion15/GenTxId_Babbage: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntersectMBO/ouroboros-consensus/946896723dbdf61b1f7e9de472cc19ecfb14cda1/ouroboros-consensus-cardano/golden/cardano/QueryVersion2/CardanoNodeToClientVersion15/GenTxId_Babbage -------------------------------------------------------------------------------- /ouroboros-consensus-cardano/golden/cardano/QueryVersion2/CardanoNodeToClientVersion15/GenTxId_Byron: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntersectMBO/ouroboros-consensus/946896723dbdf61b1f7e9de472cc19ecfb14cda1/ouroboros-consensus-cardano/golden/cardano/QueryVersion2/CardanoNodeToClientVersion15/GenTxId_Byron -------------------------------------------------------------------------------- /ouroboros-consensus-cardano/golden/cardano/QueryVersion2/CardanoNodeToClientVersion15/GenTxId_Conway: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntersectMBO/ouroboros-consensus/946896723dbdf61b1f7e9de472cc19ecfb14cda1/ouroboros-consensus-cardano/golden/cardano/QueryVersion2/CardanoNodeToClientVersion15/GenTxId_Conway -------------------------------------------------------------------------------- /ouroboros-consensus-cardano/golden/cardano/QueryVersion2/CardanoNodeToClientVersion15/GenTxId_Mary: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntersectMBO/ouroboros-consensus/946896723dbdf61b1f7e9de472cc19ecfb14cda1/ouroboros-consensus-cardano/golden/cardano/QueryVersion2/CardanoNodeToClientVersion15/GenTxId_Mary -------------------------------------------------------------------------------- /ouroboros-consensus-cardano/golden/cardano/QueryVersion2/CardanoNodeToClientVersion15/GenTxId_Shelley: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntersectMBO/ouroboros-consensus/946896723dbdf61b1f7e9de472cc19ecfb14cda1/ouroboros-consensus-cardano/golden/cardano/QueryVersion2/CardanoNodeToClientVersion15/GenTxId_Shelley -------------------------------------------------------------------------------- /ouroboros-consensus-cardano/golden/cardano/QueryVersion2/CardanoNodeToClientVersion15/GenTx_Allegra: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntersectMBO/ouroboros-consensus/946896723dbdf61b1f7e9de472cc19ecfb14cda1/ouroboros-consensus-cardano/golden/cardano/QueryVersion2/CardanoNodeToClientVersion15/GenTx_Allegra -------------------------------------------------------------------------------- /ouroboros-consensus-cardano/golden/cardano/QueryVersion2/CardanoNodeToClientVersion15/GenTx_Alonzo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntersectMBO/ouroboros-consensus/946896723dbdf61b1f7e9de472cc19ecfb14cda1/ouroboros-consensus-cardano/golden/cardano/QueryVersion2/CardanoNodeToClientVersion15/GenTx_Alonzo -------------------------------------------------------------------------------- /ouroboros-consensus-cardano/golden/cardano/QueryVersion2/CardanoNodeToClientVersion15/GenTx_Babbage: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntersectMBO/ouroboros-consensus/946896723dbdf61b1f7e9de472cc19ecfb14cda1/ouroboros-consensus-cardano/golden/cardano/QueryVersion2/CardanoNodeToClientVersion15/GenTx_Babbage -------------------------------------------------------------------------------- /ouroboros-consensus-cardano/golden/cardano/QueryVersion2/CardanoNodeToClientVersion15/GenTx_Byron: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntersectMBO/ouroboros-consensus/946896723dbdf61b1f7e9de472cc19ecfb14cda1/ouroboros-consensus-cardano/golden/cardano/QueryVersion2/CardanoNodeToClientVersion15/GenTx_Byron -------------------------------------------------------------------------------- /ouroboros-consensus-cardano/golden/cardano/QueryVersion2/CardanoNodeToClientVersion15/GenTx_Conway: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntersectMBO/ouroboros-consensus/946896723dbdf61b1f7e9de472cc19ecfb14cda1/ouroboros-consensus-cardano/golden/cardano/QueryVersion2/CardanoNodeToClientVersion15/GenTx_Conway -------------------------------------------------------------------------------- /ouroboros-consensus-cardano/golden/cardano/QueryVersion2/CardanoNodeToClientVersion15/GenTx_Mary: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntersectMBO/ouroboros-consensus/946896723dbdf61b1f7e9de472cc19ecfb14cda1/ouroboros-consensus-cardano/golden/cardano/QueryVersion2/CardanoNodeToClientVersion15/GenTx_Mary -------------------------------------------------------------------------------- /ouroboros-consensus-cardano/golden/cardano/QueryVersion2/CardanoNodeToClientVersion15/GenTx_Shelley: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntersectMBO/ouroboros-consensus/946896723dbdf61b1f7e9de472cc19ecfb14cda1/ouroboros-consensus-cardano/golden/cardano/QueryVersion2/CardanoNodeToClientVersion15/GenTx_Shelley -------------------------------------------------------------------------------- /ouroboros-consensus-cardano/golden/cardano/QueryVersion2/CardanoNodeToClientVersion15/LedgerConfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntersectMBO/ouroboros-consensus/946896723dbdf61b1f7e9de472cc19ecfb14cda1/ouroboros-consensus-cardano/golden/cardano/QueryVersion2/CardanoNodeToClientVersion15/LedgerConfig -------------------------------------------------------------------------------- /ouroboros-consensus-cardano/golden/cardano/QueryVersion2/CardanoNodeToClientVersion15/Query_AnytimeByron: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntersectMBO/ouroboros-consensus/946896723dbdf61b1f7e9de472cc19ecfb14cda1/ouroboros-consensus-cardano/golden/cardano/QueryVersion2/CardanoNodeToClientVersion15/Query_AnytimeByron -------------------------------------------------------------------------------- /ouroboros-consensus-cardano/golden/cardano/QueryVersion2/CardanoNodeToClientVersion15/Query_AnytimeShelley: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntersectMBO/ouroboros-consensus/946896723dbdf61b1f7e9de472cc19ecfb14cda1/ouroboros-consensus-cardano/golden/cardano/QueryVersion2/CardanoNodeToClientVersion15/Query_AnytimeShelley -------------------------------------------------------------------------------- /ouroboros-consensus-cardano/golden/cardano/QueryVersion2/CardanoNodeToClientVersion15/Query_Byron: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntersectMBO/ouroboros-consensus/946896723dbdf61b1f7e9de472cc19ecfb14cda1/ouroboros-consensus-cardano/golden/cardano/QueryVersion2/CardanoNodeToClientVersion15/Query_Byron -------------------------------------------------------------------------------- /ouroboros-consensus-cardano/golden/cardano/QueryVersion2/CardanoNodeToClientVersion15/Query_HardFork: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntersectMBO/ouroboros-consensus/946896723dbdf61b1f7e9de472cc19ecfb14cda1/ouroboros-consensus-cardano/golden/cardano/QueryVersion2/CardanoNodeToClientVersion15/Query_HardFork -------------------------------------------------------------------------------- /ouroboros-consensus-cardano/golden/cardano/QueryVersion2/CardanoNodeToClientVersion15/Query_Mary_GetEpochNo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntersectMBO/ouroboros-consensus/946896723dbdf61b1f7e9de472cc19ecfb14cda1/ouroboros-consensus-cardano/golden/cardano/QueryVersion2/CardanoNodeToClientVersion15/Query_Mary_GetEpochNo -------------------------------------------------------------------------------- /ouroboros-consensus-cardano/golden/cardano/QueryVersion2/CardanoNodeToClientVersion15/Result_Alonzo_EpochNo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntersectMBO/ouroboros-consensus/946896723dbdf61b1f7e9de472cc19ecfb14cda1/ouroboros-consensus-cardano/golden/cardano/QueryVersion2/CardanoNodeToClientVersion15/Result_Alonzo_EpochNo -------------------------------------------------------------------------------- /ouroboros-consensus-cardano/golden/cardano/QueryVersion2/CardanoNodeToClientVersion15/Result_AnytimeByron: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntersectMBO/ouroboros-consensus/946896723dbdf61b1f7e9de472cc19ecfb14cda1/ouroboros-consensus-cardano/golden/cardano/QueryVersion2/CardanoNodeToClientVersion15/Result_AnytimeByron -------------------------------------------------------------------------------- /ouroboros-consensus-cardano/golden/cardano/QueryVersion2/CardanoNodeToClientVersion15/Result_AnytimeShelley: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntersectMBO/ouroboros-consensus/946896723dbdf61b1f7e9de472cc19ecfb14cda1/ouroboros-consensus-cardano/golden/cardano/QueryVersion2/CardanoNodeToClientVersion15/Result_AnytimeShelley -------------------------------------------------------------------------------- /ouroboros-consensus-cardano/golden/cardano/QueryVersion2/CardanoNodeToClientVersion15/Result_Byron: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntersectMBO/ouroboros-consensus/946896723dbdf61b1f7e9de472cc19ecfb14cda1/ouroboros-consensus-cardano/golden/cardano/QueryVersion2/CardanoNodeToClientVersion15/Result_Byron -------------------------------------------------------------------------------- /ouroboros-consensus-cardano/golden/cardano/QueryVersion2/CardanoNodeToClientVersion15/Result_Conway_EpochNo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntersectMBO/ouroboros-consensus/946896723dbdf61b1f7e9de472cc19ecfb14cda1/ouroboros-consensus-cardano/golden/cardano/QueryVersion2/CardanoNodeToClientVersion15/Result_Conway_EpochNo -------------------------------------------------------------------------------- /ouroboros-consensus-cardano/golden/cardano/QueryVersion2/CardanoNodeToClientVersion15/Result_HardFork: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntersectMBO/ouroboros-consensus/946896723dbdf61b1f7e9de472cc19ecfb14cda1/ouroboros-consensus-cardano/golden/cardano/QueryVersion2/CardanoNodeToClientVersion15/Result_HardFork -------------------------------------------------------------------------------- /ouroboros-consensus-cardano/golden/cardano/QueryVersion2/CardanoNodeToClientVersion15/Result_Mary_EpochNo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntersectMBO/ouroboros-consensus/946896723dbdf61b1f7e9de472cc19ecfb14cda1/ouroboros-consensus-cardano/golden/cardano/QueryVersion2/CardanoNodeToClientVersion15/Result_Mary_EpochNo -------------------------------------------------------------------------------- /ouroboros-consensus-cardano/golden/cardano/QueryVersion2/CardanoNodeToClientVersion15/Result_Mary_LedgerTip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntersectMBO/ouroboros-consensus/946896723dbdf61b1f7e9de472cc19ecfb14cda1/ouroboros-consensus-cardano/golden/cardano/QueryVersion2/CardanoNodeToClientVersion15/Result_Mary_LedgerTip -------------------------------------------------------------------------------- /ouroboros-consensus-cardano/golden/cardano/QueryVersion2/CardanoNodeToClientVersion15/SerialisedBlock_Mary: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntersectMBO/ouroboros-consensus/946896723dbdf61b1f7e9de472cc19ecfb14cda1/ouroboros-consensus-cardano/golden/cardano/QueryVersion2/CardanoNodeToClientVersion15/SerialisedBlock_Mary -------------------------------------------------------------------------------- /ouroboros-consensus-cardano/golden/cardano/QueryVersion2/CardanoNodeToClientVersion15/SlotNo_Allegra: -------------------------------------------------------------------------------- 1 | * -------------------------------------------------------------------------------- /ouroboros-consensus-cardano/golden/cardano/QueryVersion2/CardanoNodeToClientVersion15/SlotNo_Alonzo: -------------------------------------------------------------------------------- 1 | * -------------------------------------------------------------------------------- /ouroboros-consensus-cardano/golden/cardano/QueryVersion2/CardanoNodeToClientVersion15/SlotNo_Babbage: -------------------------------------------------------------------------------- 1 | * -------------------------------------------------------------------------------- /ouroboros-consensus-cardano/golden/cardano/QueryVersion2/CardanoNodeToClientVersion15/SlotNo_Byron: -------------------------------------------------------------------------------- 1 | * -------------------------------------------------------------------------------- /ouroboros-consensus-cardano/golden/cardano/QueryVersion2/CardanoNodeToClientVersion15/SlotNo_Conway: -------------------------------------------------------------------------------- 1 | * -------------------------------------------------------------------------------- /ouroboros-consensus-cardano/golden/cardano/QueryVersion2/CardanoNodeToClientVersion15/SlotNo_Mary: -------------------------------------------------------------------------------- 1 | * -------------------------------------------------------------------------------- /ouroboros-consensus-cardano/golden/cardano/QueryVersion2/CardanoNodeToClientVersion15/SlotNo_Shelley: -------------------------------------------------------------------------------- 1 | * -------------------------------------------------------------------------------- /ouroboros-consensus-cardano/golden/cardano/QueryVersion3/CardanoNodeToClientVersion16/ApplyTxErr_Allegra: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntersectMBO/ouroboros-consensus/946896723dbdf61b1f7e9de472cc19ecfb14cda1/ouroboros-consensus-cardano/golden/cardano/QueryVersion3/CardanoNodeToClientVersion16/ApplyTxErr_Allegra -------------------------------------------------------------------------------- /ouroboros-consensus-cardano/golden/cardano/QueryVersion3/CardanoNodeToClientVersion16/ApplyTxErr_Alonzo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntersectMBO/ouroboros-consensus/946896723dbdf61b1f7e9de472cc19ecfb14cda1/ouroboros-consensus-cardano/golden/cardano/QueryVersion3/CardanoNodeToClientVersion16/ApplyTxErr_Alonzo -------------------------------------------------------------------------------- /ouroboros-consensus-cardano/golden/cardano/QueryVersion3/CardanoNodeToClientVersion16/ApplyTxErr_Babbage: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntersectMBO/ouroboros-consensus/946896723dbdf61b1f7e9de472cc19ecfb14cda1/ouroboros-consensus-cardano/golden/cardano/QueryVersion3/CardanoNodeToClientVersion16/ApplyTxErr_Babbage -------------------------------------------------------------------------------- /ouroboros-consensus-cardano/golden/cardano/QueryVersion3/CardanoNodeToClientVersion16/ApplyTxErr_Byron: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntersectMBO/ouroboros-consensus/946896723dbdf61b1f7e9de472cc19ecfb14cda1/ouroboros-consensus-cardano/golden/cardano/QueryVersion3/CardanoNodeToClientVersion16/ApplyTxErr_Byron -------------------------------------------------------------------------------- /ouroboros-consensus-cardano/golden/cardano/QueryVersion3/CardanoNodeToClientVersion16/ApplyTxErr_Conway: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntersectMBO/ouroboros-consensus/946896723dbdf61b1f7e9de472cc19ecfb14cda1/ouroboros-consensus-cardano/golden/cardano/QueryVersion3/CardanoNodeToClientVersion16/ApplyTxErr_Conway -------------------------------------------------------------------------------- /ouroboros-consensus-cardano/golden/cardano/QueryVersion3/CardanoNodeToClientVersion16/ApplyTxErr_Mary: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntersectMBO/ouroboros-consensus/946896723dbdf61b1f7e9de472cc19ecfb14cda1/ouroboros-consensus-cardano/golden/cardano/QueryVersion3/CardanoNodeToClientVersion16/ApplyTxErr_Mary -------------------------------------------------------------------------------- /ouroboros-consensus-cardano/golden/cardano/QueryVersion3/CardanoNodeToClientVersion16/ApplyTxErr_Shelley: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntersectMBO/ouroboros-consensus/946896723dbdf61b1f7e9de472cc19ecfb14cda1/ouroboros-consensus-cardano/golden/cardano/QueryVersion3/CardanoNodeToClientVersion16/ApplyTxErr_Shelley -------------------------------------------------------------------------------- /ouroboros-consensus-cardano/golden/cardano/QueryVersion3/CardanoNodeToClientVersion16/Block_Allegra: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntersectMBO/ouroboros-consensus/946896723dbdf61b1f7e9de472cc19ecfb14cda1/ouroboros-consensus-cardano/golden/cardano/QueryVersion3/CardanoNodeToClientVersion16/Block_Allegra -------------------------------------------------------------------------------- /ouroboros-consensus-cardano/golden/cardano/QueryVersion3/CardanoNodeToClientVersion16/Block_Alonzo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntersectMBO/ouroboros-consensus/946896723dbdf61b1f7e9de472cc19ecfb14cda1/ouroboros-consensus-cardano/golden/cardano/QueryVersion3/CardanoNodeToClientVersion16/Block_Alonzo -------------------------------------------------------------------------------- /ouroboros-consensus-cardano/golden/cardano/QueryVersion3/CardanoNodeToClientVersion16/Block_Babbage: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntersectMBO/ouroboros-consensus/946896723dbdf61b1f7e9de472cc19ecfb14cda1/ouroboros-consensus-cardano/golden/cardano/QueryVersion3/CardanoNodeToClientVersion16/Block_Babbage -------------------------------------------------------------------------------- /ouroboros-consensus-cardano/golden/cardano/QueryVersion3/CardanoNodeToClientVersion16/Block_Byron_EBB: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntersectMBO/ouroboros-consensus/946896723dbdf61b1f7e9de472cc19ecfb14cda1/ouroboros-consensus-cardano/golden/cardano/QueryVersion3/CardanoNodeToClientVersion16/Block_Byron_EBB -------------------------------------------------------------------------------- /ouroboros-consensus-cardano/golden/cardano/QueryVersion3/CardanoNodeToClientVersion16/Block_Byron_regular: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntersectMBO/ouroboros-consensus/946896723dbdf61b1f7e9de472cc19ecfb14cda1/ouroboros-consensus-cardano/golden/cardano/QueryVersion3/CardanoNodeToClientVersion16/Block_Byron_regular -------------------------------------------------------------------------------- /ouroboros-consensus-cardano/golden/cardano/QueryVersion3/CardanoNodeToClientVersion16/Block_Conway: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntersectMBO/ouroboros-consensus/946896723dbdf61b1f7e9de472cc19ecfb14cda1/ouroboros-consensus-cardano/golden/cardano/QueryVersion3/CardanoNodeToClientVersion16/Block_Conway -------------------------------------------------------------------------------- /ouroboros-consensus-cardano/golden/cardano/QueryVersion3/CardanoNodeToClientVersion16/Block_Mary: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntersectMBO/ouroboros-consensus/946896723dbdf61b1f7e9de472cc19ecfb14cda1/ouroboros-consensus-cardano/golden/cardano/QueryVersion3/CardanoNodeToClientVersion16/Block_Mary -------------------------------------------------------------------------------- /ouroboros-consensus-cardano/golden/cardano/QueryVersion3/CardanoNodeToClientVersion16/Block_Shelley: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntersectMBO/ouroboros-consensus/946896723dbdf61b1f7e9de472cc19ecfb14cda1/ouroboros-consensus-cardano/golden/cardano/QueryVersion3/CardanoNodeToClientVersion16/Block_Shelley -------------------------------------------------------------------------------- /ouroboros-consensus-cardano/golden/cardano/QueryVersion3/CardanoNodeToClientVersion16/GenTxId_Allegra: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntersectMBO/ouroboros-consensus/946896723dbdf61b1f7e9de472cc19ecfb14cda1/ouroboros-consensus-cardano/golden/cardano/QueryVersion3/CardanoNodeToClientVersion16/GenTxId_Allegra -------------------------------------------------------------------------------- /ouroboros-consensus-cardano/golden/cardano/QueryVersion3/CardanoNodeToClientVersion16/GenTxId_Alonzo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntersectMBO/ouroboros-consensus/946896723dbdf61b1f7e9de472cc19ecfb14cda1/ouroboros-consensus-cardano/golden/cardano/QueryVersion3/CardanoNodeToClientVersion16/GenTxId_Alonzo -------------------------------------------------------------------------------- /ouroboros-consensus-cardano/golden/cardano/QueryVersion3/CardanoNodeToClientVersion16/GenTxId_Babbage: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntersectMBO/ouroboros-consensus/946896723dbdf61b1f7e9de472cc19ecfb14cda1/ouroboros-consensus-cardano/golden/cardano/QueryVersion3/CardanoNodeToClientVersion16/GenTxId_Babbage -------------------------------------------------------------------------------- /ouroboros-consensus-cardano/golden/cardano/QueryVersion3/CardanoNodeToClientVersion16/GenTxId_Byron: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntersectMBO/ouroboros-consensus/946896723dbdf61b1f7e9de472cc19ecfb14cda1/ouroboros-consensus-cardano/golden/cardano/QueryVersion3/CardanoNodeToClientVersion16/GenTxId_Byron -------------------------------------------------------------------------------- /ouroboros-consensus-cardano/golden/cardano/QueryVersion3/CardanoNodeToClientVersion16/GenTxId_Conway: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntersectMBO/ouroboros-consensus/946896723dbdf61b1f7e9de472cc19ecfb14cda1/ouroboros-consensus-cardano/golden/cardano/QueryVersion3/CardanoNodeToClientVersion16/GenTxId_Conway -------------------------------------------------------------------------------- /ouroboros-consensus-cardano/golden/cardano/QueryVersion3/CardanoNodeToClientVersion16/GenTxId_Mary: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntersectMBO/ouroboros-consensus/946896723dbdf61b1f7e9de472cc19ecfb14cda1/ouroboros-consensus-cardano/golden/cardano/QueryVersion3/CardanoNodeToClientVersion16/GenTxId_Mary -------------------------------------------------------------------------------- /ouroboros-consensus-cardano/golden/cardano/QueryVersion3/CardanoNodeToClientVersion16/GenTxId_Shelley: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntersectMBO/ouroboros-consensus/946896723dbdf61b1f7e9de472cc19ecfb14cda1/ouroboros-consensus-cardano/golden/cardano/QueryVersion3/CardanoNodeToClientVersion16/GenTxId_Shelley -------------------------------------------------------------------------------- /ouroboros-consensus-cardano/golden/cardano/QueryVersion3/CardanoNodeToClientVersion16/GenTx_Allegra: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntersectMBO/ouroboros-consensus/946896723dbdf61b1f7e9de472cc19ecfb14cda1/ouroboros-consensus-cardano/golden/cardano/QueryVersion3/CardanoNodeToClientVersion16/GenTx_Allegra -------------------------------------------------------------------------------- /ouroboros-consensus-cardano/golden/cardano/QueryVersion3/CardanoNodeToClientVersion16/GenTx_Alonzo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntersectMBO/ouroboros-consensus/946896723dbdf61b1f7e9de472cc19ecfb14cda1/ouroboros-consensus-cardano/golden/cardano/QueryVersion3/CardanoNodeToClientVersion16/GenTx_Alonzo -------------------------------------------------------------------------------- /ouroboros-consensus-cardano/golden/cardano/QueryVersion3/CardanoNodeToClientVersion16/GenTx_Babbage: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntersectMBO/ouroboros-consensus/946896723dbdf61b1f7e9de472cc19ecfb14cda1/ouroboros-consensus-cardano/golden/cardano/QueryVersion3/CardanoNodeToClientVersion16/GenTx_Babbage -------------------------------------------------------------------------------- /ouroboros-consensus-cardano/golden/cardano/QueryVersion3/CardanoNodeToClientVersion16/GenTx_Byron: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntersectMBO/ouroboros-consensus/946896723dbdf61b1f7e9de472cc19ecfb14cda1/ouroboros-consensus-cardano/golden/cardano/QueryVersion3/CardanoNodeToClientVersion16/GenTx_Byron -------------------------------------------------------------------------------- /ouroboros-consensus-cardano/golden/cardano/QueryVersion3/CardanoNodeToClientVersion16/GenTx_Conway: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntersectMBO/ouroboros-consensus/946896723dbdf61b1f7e9de472cc19ecfb14cda1/ouroboros-consensus-cardano/golden/cardano/QueryVersion3/CardanoNodeToClientVersion16/GenTx_Conway -------------------------------------------------------------------------------- /ouroboros-consensus-cardano/golden/cardano/QueryVersion3/CardanoNodeToClientVersion16/GenTx_Mary: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntersectMBO/ouroboros-consensus/946896723dbdf61b1f7e9de472cc19ecfb14cda1/ouroboros-consensus-cardano/golden/cardano/QueryVersion3/CardanoNodeToClientVersion16/GenTx_Mary -------------------------------------------------------------------------------- /ouroboros-consensus-cardano/golden/cardano/QueryVersion3/CardanoNodeToClientVersion16/GenTx_Shelley: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntersectMBO/ouroboros-consensus/946896723dbdf61b1f7e9de472cc19ecfb14cda1/ouroboros-consensus-cardano/golden/cardano/QueryVersion3/CardanoNodeToClientVersion16/GenTx_Shelley -------------------------------------------------------------------------------- /ouroboros-consensus-cardano/golden/cardano/QueryVersion3/CardanoNodeToClientVersion16/LedgerConfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntersectMBO/ouroboros-consensus/946896723dbdf61b1f7e9de472cc19ecfb14cda1/ouroboros-consensus-cardano/golden/cardano/QueryVersion3/CardanoNodeToClientVersion16/LedgerConfig -------------------------------------------------------------------------------- /ouroboros-consensus-cardano/golden/cardano/QueryVersion3/CardanoNodeToClientVersion16/Query_AnytimeByron: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntersectMBO/ouroboros-consensus/946896723dbdf61b1f7e9de472cc19ecfb14cda1/ouroboros-consensus-cardano/golden/cardano/QueryVersion3/CardanoNodeToClientVersion16/Query_AnytimeByron -------------------------------------------------------------------------------- /ouroboros-consensus-cardano/golden/cardano/QueryVersion3/CardanoNodeToClientVersion16/Query_AnytimeShelley: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntersectMBO/ouroboros-consensus/946896723dbdf61b1f7e9de472cc19ecfb14cda1/ouroboros-consensus-cardano/golden/cardano/QueryVersion3/CardanoNodeToClientVersion16/Query_AnytimeShelley -------------------------------------------------------------------------------- /ouroboros-consensus-cardano/golden/cardano/QueryVersion3/CardanoNodeToClientVersion16/Query_Byron: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntersectMBO/ouroboros-consensus/946896723dbdf61b1f7e9de472cc19ecfb14cda1/ouroboros-consensus-cardano/golden/cardano/QueryVersion3/CardanoNodeToClientVersion16/Query_Byron -------------------------------------------------------------------------------- /ouroboros-consensus-cardano/golden/cardano/QueryVersion3/CardanoNodeToClientVersion16/Query_HardFork: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntersectMBO/ouroboros-consensus/946896723dbdf61b1f7e9de472cc19ecfb14cda1/ouroboros-consensus-cardano/golden/cardano/QueryVersion3/CardanoNodeToClientVersion16/Query_HardFork -------------------------------------------------------------------------------- /ouroboros-consensus-cardano/golden/cardano/QueryVersion3/CardanoNodeToClientVersion16/Query_Mary_GetEpochNo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntersectMBO/ouroboros-consensus/946896723dbdf61b1f7e9de472cc19ecfb14cda1/ouroboros-consensus-cardano/golden/cardano/QueryVersion3/CardanoNodeToClientVersion16/Query_Mary_GetEpochNo -------------------------------------------------------------------------------- /ouroboros-consensus-cardano/golden/cardano/QueryVersion3/CardanoNodeToClientVersion16/Result_Alonzo_EpochNo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntersectMBO/ouroboros-consensus/946896723dbdf61b1f7e9de472cc19ecfb14cda1/ouroboros-consensus-cardano/golden/cardano/QueryVersion3/CardanoNodeToClientVersion16/Result_Alonzo_EpochNo -------------------------------------------------------------------------------- /ouroboros-consensus-cardano/golden/cardano/QueryVersion3/CardanoNodeToClientVersion16/Result_AnytimeByron: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntersectMBO/ouroboros-consensus/946896723dbdf61b1f7e9de472cc19ecfb14cda1/ouroboros-consensus-cardano/golden/cardano/QueryVersion3/CardanoNodeToClientVersion16/Result_AnytimeByron -------------------------------------------------------------------------------- /ouroboros-consensus-cardano/golden/cardano/QueryVersion3/CardanoNodeToClientVersion16/Result_AnytimeShelley: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntersectMBO/ouroboros-consensus/946896723dbdf61b1f7e9de472cc19ecfb14cda1/ouroboros-consensus-cardano/golden/cardano/QueryVersion3/CardanoNodeToClientVersion16/Result_AnytimeShelley -------------------------------------------------------------------------------- /ouroboros-consensus-cardano/golden/cardano/QueryVersion3/CardanoNodeToClientVersion16/Result_Byron: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntersectMBO/ouroboros-consensus/946896723dbdf61b1f7e9de472cc19ecfb14cda1/ouroboros-consensus-cardano/golden/cardano/QueryVersion3/CardanoNodeToClientVersion16/Result_Byron -------------------------------------------------------------------------------- /ouroboros-consensus-cardano/golden/cardano/QueryVersion3/CardanoNodeToClientVersion16/Result_Conway_EpochNo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntersectMBO/ouroboros-consensus/946896723dbdf61b1f7e9de472cc19ecfb14cda1/ouroboros-consensus-cardano/golden/cardano/QueryVersion3/CardanoNodeToClientVersion16/Result_Conway_EpochNo -------------------------------------------------------------------------------- /ouroboros-consensus-cardano/golden/cardano/QueryVersion3/CardanoNodeToClientVersion16/Result_HardFork: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntersectMBO/ouroboros-consensus/946896723dbdf61b1f7e9de472cc19ecfb14cda1/ouroboros-consensus-cardano/golden/cardano/QueryVersion3/CardanoNodeToClientVersion16/Result_HardFork -------------------------------------------------------------------------------- /ouroboros-consensus-cardano/golden/cardano/QueryVersion3/CardanoNodeToClientVersion16/Result_Mary_EpochNo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntersectMBO/ouroboros-consensus/946896723dbdf61b1f7e9de472cc19ecfb14cda1/ouroboros-consensus-cardano/golden/cardano/QueryVersion3/CardanoNodeToClientVersion16/Result_Mary_EpochNo -------------------------------------------------------------------------------- /ouroboros-consensus-cardano/golden/cardano/QueryVersion3/CardanoNodeToClientVersion16/Result_Mary_LedgerTip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntersectMBO/ouroboros-consensus/946896723dbdf61b1f7e9de472cc19ecfb14cda1/ouroboros-consensus-cardano/golden/cardano/QueryVersion3/CardanoNodeToClientVersion16/Result_Mary_LedgerTip -------------------------------------------------------------------------------- /ouroboros-consensus-cardano/golden/cardano/QueryVersion3/CardanoNodeToClientVersion16/SerialisedBlock_Mary: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntersectMBO/ouroboros-consensus/946896723dbdf61b1f7e9de472cc19ecfb14cda1/ouroboros-consensus-cardano/golden/cardano/QueryVersion3/CardanoNodeToClientVersion16/SerialisedBlock_Mary -------------------------------------------------------------------------------- /ouroboros-consensus-cardano/golden/cardano/QueryVersion3/CardanoNodeToClientVersion16/SlotNo_Allegra: -------------------------------------------------------------------------------- 1 | * -------------------------------------------------------------------------------- /ouroboros-consensus-cardano/golden/cardano/QueryVersion3/CardanoNodeToClientVersion16/SlotNo_Alonzo: -------------------------------------------------------------------------------- 1 | * -------------------------------------------------------------------------------- /ouroboros-consensus-cardano/golden/cardano/QueryVersion3/CardanoNodeToClientVersion16/SlotNo_Babbage: -------------------------------------------------------------------------------- 1 | * -------------------------------------------------------------------------------- /ouroboros-consensus-cardano/golden/cardano/QueryVersion3/CardanoNodeToClientVersion16/SlotNo_Byron: -------------------------------------------------------------------------------- 1 | * -------------------------------------------------------------------------------- /ouroboros-consensus-cardano/golden/cardano/QueryVersion3/CardanoNodeToClientVersion16/SlotNo_Conway: -------------------------------------------------------------------------------- 1 | * -------------------------------------------------------------------------------- /ouroboros-consensus-cardano/golden/cardano/QueryVersion3/CardanoNodeToClientVersion16/SlotNo_Mary: -------------------------------------------------------------------------------- 1 | * -------------------------------------------------------------------------------- /ouroboros-consensus-cardano/golden/cardano/QueryVersion3/CardanoNodeToClientVersion16/SlotNo_Shelley: -------------------------------------------------------------------------------- 1 | * -------------------------------------------------------------------------------- /ouroboros-consensus-cardano/golden/cardano/disk/AnnTip_Allegra: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntersectMBO/ouroboros-consensus/946896723dbdf61b1f7e9de472cc19ecfb14cda1/ouroboros-consensus-cardano/golden/cardano/disk/AnnTip_Allegra -------------------------------------------------------------------------------- /ouroboros-consensus-cardano/golden/cardano/disk/AnnTip_Alonzo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntersectMBO/ouroboros-consensus/946896723dbdf61b1f7e9de472cc19ecfb14cda1/ouroboros-consensus-cardano/golden/cardano/disk/AnnTip_Alonzo -------------------------------------------------------------------------------- /ouroboros-consensus-cardano/golden/cardano/disk/AnnTip_Babbage: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntersectMBO/ouroboros-consensus/946896723dbdf61b1f7e9de472cc19ecfb14cda1/ouroboros-consensus-cardano/golden/cardano/disk/AnnTip_Babbage -------------------------------------------------------------------------------- /ouroboros-consensus-cardano/golden/cardano/disk/AnnTip_Byron: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntersectMBO/ouroboros-consensus/946896723dbdf61b1f7e9de472cc19ecfb14cda1/ouroboros-consensus-cardano/golden/cardano/disk/AnnTip_Byron -------------------------------------------------------------------------------- /ouroboros-consensus-cardano/golden/cardano/disk/AnnTip_Conway: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntersectMBO/ouroboros-consensus/946896723dbdf61b1f7e9de472cc19ecfb14cda1/ouroboros-consensus-cardano/golden/cardano/disk/AnnTip_Conway -------------------------------------------------------------------------------- /ouroboros-consensus-cardano/golden/cardano/disk/AnnTip_Mary: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntersectMBO/ouroboros-consensus/946896723dbdf61b1f7e9de472cc19ecfb14cda1/ouroboros-consensus-cardano/golden/cardano/disk/AnnTip_Mary -------------------------------------------------------------------------------- /ouroboros-consensus-cardano/golden/cardano/disk/AnnTip_Shelley: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntersectMBO/ouroboros-consensus/946896723dbdf61b1f7e9de472cc19ecfb14cda1/ouroboros-consensus-cardano/golden/cardano/disk/AnnTip_Shelley -------------------------------------------------------------------------------- /ouroboros-consensus-cardano/golden/cardano/disk/Block_Allegra: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntersectMBO/ouroboros-consensus/946896723dbdf61b1f7e9de472cc19ecfb14cda1/ouroboros-consensus-cardano/golden/cardano/disk/Block_Allegra -------------------------------------------------------------------------------- /ouroboros-consensus-cardano/golden/cardano/disk/Block_Alonzo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntersectMBO/ouroboros-consensus/946896723dbdf61b1f7e9de472cc19ecfb14cda1/ouroboros-consensus-cardano/golden/cardano/disk/Block_Alonzo -------------------------------------------------------------------------------- /ouroboros-consensus-cardano/golden/cardano/disk/Block_Babbage: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntersectMBO/ouroboros-consensus/946896723dbdf61b1f7e9de472cc19ecfb14cda1/ouroboros-consensus-cardano/golden/cardano/disk/Block_Babbage -------------------------------------------------------------------------------- /ouroboros-consensus-cardano/golden/cardano/disk/Block_Byron_EBB: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntersectMBO/ouroboros-consensus/946896723dbdf61b1f7e9de472cc19ecfb14cda1/ouroboros-consensus-cardano/golden/cardano/disk/Block_Byron_EBB -------------------------------------------------------------------------------- /ouroboros-consensus-cardano/golden/cardano/disk/Block_Byron_regular: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntersectMBO/ouroboros-consensus/946896723dbdf61b1f7e9de472cc19ecfb14cda1/ouroboros-consensus-cardano/golden/cardano/disk/Block_Byron_regular -------------------------------------------------------------------------------- /ouroboros-consensus-cardano/golden/cardano/disk/Block_Conway: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntersectMBO/ouroboros-consensus/946896723dbdf61b1f7e9de472cc19ecfb14cda1/ouroboros-consensus-cardano/golden/cardano/disk/Block_Conway -------------------------------------------------------------------------------- /ouroboros-consensus-cardano/golden/cardano/disk/Block_Mary: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntersectMBO/ouroboros-consensus/946896723dbdf61b1f7e9de472cc19ecfb14cda1/ouroboros-consensus-cardano/golden/cardano/disk/Block_Mary -------------------------------------------------------------------------------- /ouroboros-consensus-cardano/golden/cardano/disk/Block_Shelley: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntersectMBO/ouroboros-consensus/946896723dbdf61b1f7e9de472cc19ecfb14cda1/ouroboros-consensus-cardano/golden/cardano/disk/Block_Shelley -------------------------------------------------------------------------------- /ouroboros-consensus-cardano/golden/cardano/disk/ChainDepState_Allegra: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntersectMBO/ouroboros-consensus/946896723dbdf61b1f7e9de472cc19ecfb14cda1/ouroboros-consensus-cardano/golden/cardano/disk/ChainDepState_Allegra -------------------------------------------------------------------------------- /ouroboros-consensus-cardano/golden/cardano/disk/ChainDepState_Alonzo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntersectMBO/ouroboros-consensus/946896723dbdf61b1f7e9de472cc19ecfb14cda1/ouroboros-consensus-cardano/golden/cardano/disk/ChainDepState_Alonzo -------------------------------------------------------------------------------- /ouroboros-consensus-cardano/golden/cardano/disk/ChainDepState_Babbage: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntersectMBO/ouroboros-consensus/946896723dbdf61b1f7e9de472cc19ecfb14cda1/ouroboros-consensus-cardano/golden/cardano/disk/ChainDepState_Babbage -------------------------------------------------------------------------------- /ouroboros-consensus-cardano/golden/cardano/disk/ChainDepState_Byron: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntersectMBO/ouroboros-consensus/946896723dbdf61b1f7e9de472cc19ecfb14cda1/ouroboros-consensus-cardano/golden/cardano/disk/ChainDepState_Byron -------------------------------------------------------------------------------- /ouroboros-consensus-cardano/golden/cardano/disk/ChainDepState_Conway: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntersectMBO/ouroboros-consensus/946896723dbdf61b1f7e9de472cc19ecfb14cda1/ouroboros-consensus-cardano/golden/cardano/disk/ChainDepState_Conway -------------------------------------------------------------------------------- /ouroboros-consensus-cardano/golden/cardano/disk/ChainDepState_Mary: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntersectMBO/ouroboros-consensus/946896723dbdf61b1f7e9de472cc19ecfb14cda1/ouroboros-consensus-cardano/golden/cardano/disk/ChainDepState_Mary -------------------------------------------------------------------------------- /ouroboros-consensus-cardano/golden/cardano/disk/ChainDepState_Shelley: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntersectMBO/ouroboros-consensus/946896723dbdf61b1f7e9de472cc19ecfb14cda1/ouroboros-consensus-cardano/golden/cardano/disk/ChainDepState_Shelley -------------------------------------------------------------------------------- /ouroboros-consensus-cardano/golden/cardano/disk/ExtLedgerState_Allegra: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntersectMBO/ouroboros-consensus/946896723dbdf61b1f7e9de472cc19ecfb14cda1/ouroboros-consensus-cardano/golden/cardano/disk/ExtLedgerState_Allegra -------------------------------------------------------------------------------- /ouroboros-consensus-cardano/golden/cardano/disk/ExtLedgerState_Alonzo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntersectMBO/ouroboros-consensus/946896723dbdf61b1f7e9de472cc19ecfb14cda1/ouroboros-consensus-cardano/golden/cardano/disk/ExtLedgerState_Alonzo -------------------------------------------------------------------------------- /ouroboros-consensus-cardano/golden/cardano/disk/ExtLedgerState_Babbage: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntersectMBO/ouroboros-consensus/946896723dbdf61b1f7e9de472cc19ecfb14cda1/ouroboros-consensus-cardano/golden/cardano/disk/ExtLedgerState_Babbage -------------------------------------------------------------------------------- /ouroboros-consensus-cardano/golden/cardano/disk/ExtLedgerState_Byron: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntersectMBO/ouroboros-consensus/946896723dbdf61b1f7e9de472cc19ecfb14cda1/ouroboros-consensus-cardano/golden/cardano/disk/ExtLedgerState_Byron -------------------------------------------------------------------------------- /ouroboros-consensus-cardano/golden/cardano/disk/ExtLedgerState_Conway: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntersectMBO/ouroboros-consensus/946896723dbdf61b1f7e9de472cc19ecfb14cda1/ouroboros-consensus-cardano/golden/cardano/disk/ExtLedgerState_Conway -------------------------------------------------------------------------------- /ouroboros-consensus-cardano/golden/cardano/disk/ExtLedgerState_Mary: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntersectMBO/ouroboros-consensus/946896723dbdf61b1f7e9de472cc19ecfb14cda1/ouroboros-consensus-cardano/golden/cardano/disk/ExtLedgerState_Mary -------------------------------------------------------------------------------- /ouroboros-consensus-cardano/golden/cardano/disk/ExtLedgerState_Shelley: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntersectMBO/ouroboros-consensus/946896723dbdf61b1f7e9de472cc19ecfb14cda1/ouroboros-consensus-cardano/golden/cardano/disk/ExtLedgerState_Shelley -------------------------------------------------------------------------------- /ouroboros-consensus-cardano/golden/cardano/disk/HeaderHash_Allegra: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntersectMBO/ouroboros-consensus/946896723dbdf61b1f7e9de472cc19ecfb14cda1/ouroboros-consensus-cardano/golden/cardano/disk/HeaderHash_Allegra -------------------------------------------------------------------------------- /ouroboros-consensus-cardano/golden/cardano/disk/HeaderHash_Alonzo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntersectMBO/ouroboros-consensus/946896723dbdf61b1f7e9de472cc19ecfb14cda1/ouroboros-consensus-cardano/golden/cardano/disk/HeaderHash_Alonzo -------------------------------------------------------------------------------- /ouroboros-consensus-cardano/golden/cardano/disk/HeaderHash_Babbage: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntersectMBO/ouroboros-consensus/946896723dbdf61b1f7e9de472cc19ecfb14cda1/ouroboros-consensus-cardano/golden/cardano/disk/HeaderHash_Babbage -------------------------------------------------------------------------------- /ouroboros-consensus-cardano/golden/cardano/disk/HeaderHash_Byron: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntersectMBO/ouroboros-consensus/946896723dbdf61b1f7e9de472cc19ecfb14cda1/ouroboros-consensus-cardano/golden/cardano/disk/HeaderHash_Byron -------------------------------------------------------------------------------- /ouroboros-consensus-cardano/golden/cardano/disk/HeaderHash_Conway: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntersectMBO/ouroboros-consensus/946896723dbdf61b1f7e9de472cc19ecfb14cda1/ouroboros-consensus-cardano/golden/cardano/disk/HeaderHash_Conway -------------------------------------------------------------------------------- /ouroboros-consensus-cardano/golden/cardano/disk/HeaderHash_Mary: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntersectMBO/ouroboros-consensus/946896723dbdf61b1f7e9de472cc19ecfb14cda1/ouroboros-consensus-cardano/golden/cardano/disk/HeaderHash_Mary -------------------------------------------------------------------------------- /ouroboros-consensus-cardano/golden/cardano/disk/HeaderHash_Shelley: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntersectMBO/ouroboros-consensus/946896723dbdf61b1f7e9de472cc19ecfb14cda1/ouroboros-consensus-cardano/golden/cardano/disk/HeaderHash_Shelley -------------------------------------------------------------------------------- /ouroboros-consensus-cardano/golden/cardano/disk/LedgerState_Allegra: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntersectMBO/ouroboros-consensus/946896723dbdf61b1f7e9de472cc19ecfb14cda1/ouroboros-consensus-cardano/golden/cardano/disk/LedgerState_Allegra -------------------------------------------------------------------------------- /ouroboros-consensus-cardano/golden/cardano/disk/LedgerState_Alonzo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntersectMBO/ouroboros-consensus/946896723dbdf61b1f7e9de472cc19ecfb14cda1/ouroboros-consensus-cardano/golden/cardano/disk/LedgerState_Alonzo -------------------------------------------------------------------------------- /ouroboros-consensus-cardano/golden/cardano/disk/LedgerState_Babbage: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntersectMBO/ouroboros-consensus/946896723dbdf61b1f7e9de472cc19ecfb14cda1/ouroboros-consensus-cardano/golden/cardano/disk/LedgerState_Babbage -------------------------------------------------------------------------------- /ouroboros-consensus-cardano/golden/cardano/disk/LedgerState_Byron: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntersectMBO/ouroboros-consensus/946896723dbdf61b1f7e9de472cc19ecfb14cda1/ouroboros-consensus-cardano/golden/cardano/disk/LedgerState_Byron -------------------------------------------------------------------------------- /ouroboros-consensus-cardano/golden/cardano/disk/LedgerState_Conway: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntersectMBO/ouroboros-consensus/946896723dbdf61b1f7e9de472cc19ecfb14cda1/ouroboros-consensus-cardano/golden/cardano/disk/LedgerState_Conway -------------------------------------------------------------------------------- /ouroboros-consensus-cardano/golden/cardano/disk/LedgerState_Mary: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntersectMBO/ouroboros-consensus/946896723dbdf61b1f7e9de472cc19ecfb14cda1/ouroboros-consensus-cardano/golden/cardano/disk/LedgerState_Mary -------------------------------------------------------------------------------- /ouroboros-consensus-cardano/golden/cardano/disk/LedgerState_Shelley: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntersectMBO/ouroboros-consensus/946896723dbdf61b1f7e9de472cc19ecfb14cda1/ouroboros-consensus-cardano/golden/cardano/disk/LedgerState_Shelley -------------------------------------------------------------------------------- /ouroboros-consensus-cardano/golden/cardano/disk/LedgerTables_Allegra: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntersectMBO/ouroboros-consensus/946896723dbdf61b1f7e9de472cc19ecfb14cda1/ouroboros-consensus-cardano/golden/cardano/disk/LedgerTables_Allegra -------------------------------------------------------------------------------- /ouroboros-consensus-cardano/golden/cardano/disk/LedgerTables_Alonzo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntersectMBO/ouroboros-consensus/946896723dbdf61b1f7e9de472cc19ecfb14cda1/ouroboros-consensus-cardano/golden/cardano/disk/LedgerTables_Alonzo -------------------------------------------------------------------------------- /ouroboros-consensus-cardano/golden/cardano/disk/LedgerTables_Babbage: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntersectMBO/ouroboros-consensus/946896723dbdf61b1f7e9de472cc19ecfb14cda1/ouroboros-consensus-cardano/golden/cardano/disk/LedgerTables_Babbage -------------------------------------------------------------------------------- /ouroboros-consensus-cardano/golden/cardano/disk/LedgerTables_Byron: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntersectMBO/ouroboros-consensus/946896723dbdf61b1f7e9de472cc19ecfb14cda1/ouroboros-consensus-cardano/golden/cardano/disk/LedgerTables_Byron -------------------------------------------------------------------------------- /ouroboros-consensus-cardano/golden/cardano/disk/LedgerTables_Conway: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntersectMBO/ouroboros-consensus/946896723dbdf61b1f7e9de472cc19ecfb14cda1/ouroboros-consensus-cardano/golden/cardano/disk/LedgerTables_Conway -------------------------------------------------------------------------------- /ouroboros-consensus-cardano/golden/cardano/disk/LedgerTables_Mary: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntersectMBO/ouroboros-consensus/946896723dbdf61b1f7e9de472cc19ecfb14cda1/ouroboros-consensus-cardano/golden/cardano/disk/LedgerTables_Mary -------------------------------------------------------------------------------- /ouroboros-consensus-cardano/golden/cardano/disk/LedgerTables_Shelley: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntersectMBO/ouroboros-consensus/946896723dbdf61b1f7e9de472cc19ecfb14cda1/ouroboros-consensus-cardano/golden/cardano/disk/LedgerTables_Shelley -------------------------------------------------------------------------------- /ouroboros-consensus-cardano/golden/shelley/QueryVersion2/ShelleyNodeToClientVersion10/ApplyTxErr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntersectMBO/ouroboros-consensus/946896723dbdf61b1f7e9de472cc19ecfb14cda1/ouroboros-consensus-cardano/golden/shelley/QueryVersion2/ShelleyNodeToClientVersion10/ApplyTxErr -------------------------------------------------------------------------------- /ouroboros-consensus-cardano/golden/shelley/QueryVersion2/ShelleyNodeToClientVersion10/Block: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntersectMBO/ouroboros-consensus/946896723dbdf61b1f7e9de472cc19ecfb14cda1/ouroboros-consensus-cardano/golden/shelley/QueryVersion2/ShelleyNodeToClientVersion10/Block -------------------------------------------------------------------------------- /ouroboros-consensus-cardano/golden/shelley/QueryVersion2/ShelleyNodeToClientVersion10/GenTx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntersectMBO/ouroboros-consensus/946896723dbdf61b1f7e9de472cc19ecfb14cda1/ouroboros-consensus-cardano/golden/shelley/QueryVersion2/ShelleyNodeToClientVersion10/GenTx -------------------------------------------------------------------------------- /ouroboros-consensus-cardano/golden/shelley/QueryVersion2/ShelleyNodeToClientVersion10/GenTxId: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntersectMBO/ouroboros-consensus/946896723dbdf61b1f7e9de472cc19ecfb14cda1/ouroboros-consensus-cardano/golden/shelley/QueryVersion2/ShelleyNodeToClientVersion10/GenTxId -------------------------------------------------------------------------------- /ouroboros-consensus-cardano/golden/shelley/QueryVersion2/ShelleyNodeToClientVersion10/LedgerConfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntersectMBO/ouroboros-consensus/946896723dbdf61b1f7e9de472cc19ecfb14cda1/ouroboros-consensus-cardano/golden/shelley/QueryVersion2/ShelleyNodeToClientVersion10/LedgerConfig -------------------------------------------------------------------------------- /ouroboros-consensus-cardano/golden/shelley/QueryVersion2/ShelleyNodeToClientVersion10/Query_GetEpochNo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntersectMBO/ouroboros-consensus/946896723dbdf61b1f7e9de472cc19ecfb14cda1/ouroboros-consensus-cardano/golden/shelley/QueryVersion2/ShelleyNodeToClientVersion10/Query_GetEpochNo -------------------------------------------------------------------------------- /ouroboros-consensus-cardano/golden/shelley/QueryVersion2/ShelleyNodeToClientVersion10/Query_GetLedgerTip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntersectMBO/ouroboros-consensus/946896723dbdf61b1f7e9de472cc19ecfb14cda1/ouroboros-consensus-cardano/golden/shelley/QueryVersion2/ShelleyNodeToClientVersion10/Query_GetLedgerTip -------------------------------------------------------------------------------- /ouroboros-consensus-cardano/golden/shelley/QueryVersion2/ShelleyNodeToClientVersion10/Result_EmptyPParams: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntersectMBO/ouroboros-consensus/946896723dbdf61b1f7e9de472cc19ecfb14cda1/ouroboros-consensus-cardano/golden/shelley/QueryVersion2/ShelleyNodeToClientVersion10/Result_EmptyPParams -------------------------------------------------------------------------------- /ouroboros-consensus-cardano/golden/shelley/QueryVersion2/ShelleyNodeToClientVersion10/Result_EpochNo: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /ouroboros-consensus-cardano/golden/shelley/QueryVersion2/ShelleyNodeToClientVersion10/Result_GenesisConfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntersectMBO/ouroboros-consensus/946896723dbdf61b1f7e9de472cc19ecfb14cda1/ouroboros-consensus-cardano/golden/shelley/QueryVersion2/ShelleyNodeToClientVersion10/Result_GenesisConfig -------------------------------------------------------------------------------- /ouroboros-consensus-cardano/golden/shelley/QueryVersion2/ShelleyNodeToClientVersion10/Result_LedgerTip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntersectMBO/ouroboros-consensus/946896723dbdf61b1f7e9de472cc19ecfb14cda1/ouroboros-consensus-cardano/golden/shelley/QueryVersion2/ShelleyNodeToClientVersion10/Result_LedgerTip -------------------------------------------------------------------------------- /ouroboros-consensus-cardano/golden/shelley/QueryVersion2/ShelleyNodeToClientVersion10/SerialisedBlock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntersectMBO/ouroboros-consensus/946896723dbdf61b1f7e9de472cc19ecfb14cda1/ouroboros-consensus-cardano/golden/shelley/QueryVersion2/ShelleyNodeToClientVersion10/SerialisedBlock -------------------------------------------------------------------------------- /ouroboros-consensus-cardano/golden/shelley/QueryVersion2/ShelleyNodeToClientVersion10/SlotNo: -------------------------------------------------------------------------------- 1 | * -------------------------------------------------------------------------------- /ouroboros-consensus-cardano/golden/shelley/QueryVersion2/ShelleyNodeToClientVersion11/ApplyTxErr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntersectMBO/ouroboros-consensus/946896723dbdf61b1f7e9de472cc19ecfb14cda1/ouroboros-consensus-cardano/golden/shelley/QueryVersion2/ShelleyNodeToClientVersion11/ApplyTxErr -------------------------------------------------------------------------------- /ouroboros-consensus-cardano/golden/shelley/QueryVersion2/ShelleyNodeToClientVersion11/Block: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntersectMBO/ouroboros-consensus/946896723dbdf61b1f7e9de472cc19ecfb14cda1/ouroboros-consensus-cardano/golden/shelley/QueryVersion2/ShelleyNodeToClientVersion11/Block -------------------------------------------------------------------------------- /ouroboros-consensus-cardano/golden/shelley/QueryVersion2/ShelleyNodeToClientVersion11/GenTx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntersectMBO/ouroboros-consensus/946896723dbdf61b1f7e9de472cc19ecfb14cda1/ouroboros-consensus-cardano/golden/shelley/QueryVersion2/ShelleyNodeToClientVersion11/GenTx -------------------------------------------------------------------------------- /ouroboros-consensus-cardano/golden/shelley/QueryVersion2/ShelleyNodeToClientVersion11/GenTxId: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntersectMBO/ouroboros-consensus/946896723dbdf61b1f7e9de472cc19ecfb14cda1/ouroboros-consensus-cardano/golden/shelley/QueryVersion2/ShelleyNodeToClientVersion11/GenTxId -------------------------------------------------------------------------------- /ouroboros-consensus-cardano/golden/shelley/QueryVersion2/ShelleyNodeToClientVersion11/LedgerConfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntersectMBO/ouroboros-consensus/946896723dbdf61b1f7e9de472cc19ecfb14cda1/ouroboros-consensus-cardano/golden/shelley/QueryVersion2/ShelleyNodeToClientVersion11/LedgerConfig -------------------------------------------------------------------------------- /ouroboros-consensus-cardano/golden/shelley/QueryVersion2/ShelleyNodeToClientVersion11/Query_GetEpochNo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntersectMBO/ouroboros-consensus/946896723dbdf61b1f7e9de472cc19ecfb14cda1/ouroboros-consensus-cardano/golden/shelley/QueryVersion2/ShelleyNodeToClientVersion11/Query_GetEpochNo -------------------------------------------------------------------------------- /ouroboros-consensus-cardano/golden/shelley/QueryVersion2/ShelleyNodeToClientVersion11/Query_GetLedgerTip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntersectMBO/ouroboros-consensus/946896723dbdf61b1f7e9de472cc19ecfb14cda1/ouroboros-consensus-cardano/golden/shelley/QueryVersion2/ShelleyNodeToClientVersion11/Query_GetLedgerTip -------------------------------------------------------------------------------- /ouroboros-consensus-cardano/golden/shelley/QueryVersion2/ShelleyNodeToClientVersion11/Result_EmptyPParams: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntersectMBO/ouroboros-consensus/946896723dbdf61b1f7e9de472cc19ecfb14cda1/ouroboros-consensus-cardano/golden/shelley/QueryVersion2/ShelleyNodeToClientVersion11/Result_EmptyPParams -------------------------------------------------------------------------------- /ouroboros-consensus-cardano/golden/shelley/QueryVersion2/ShelleyNodeToClientVersion11/Result_EpochNo: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /ouroboros-consensus-cardano/golden/shelley/QueryVersion2/ShelleyNodeToClientVersion11/Result_GenesisConfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntersectMBO/ouroboros-consensus/946896723dbdf61b1f7e9de472cc19ecfb14cda1/ouroboros-consensus-cardano/golden/shelley/QueryVersion2/ShelleyNodeToClientVersion11/Result_GenesisConfig -------------------------------------------------------------------------------- /ouroboros-consensus-cardano/golden/shelley/QueryVersion2/ShelleyNodeToClientVersion11/Result_LedgerTip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntersectMBO/ouroboros-consensus/946896723dbdf61b1f7e9de472cc19ecfb14cda1/ouroboros-consensus-cardano/golden/shelley/QueryVersion2/ShelleyNodeToClientVersion11/Result_LedgerTip -------------------------------------------------------------------------------- /ouroboros-consensus-cardano/golden/shelley/QueryVersion2/ShelleyNodeToClientVersion11/SerialisedBlock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntersectMBO/ouroboros-consensus/946896723dbdf61b1f7e9de472cc19ecfb14cda1/ouroboros-consensus-cardano/golden/shelley/QueryVersion2/ShelleyNodeToClientVersion11/SerialisedBlock -------------------------------------------------------------------------------- /ouroboros-consensus-cardano/golden/shelley/QueryVersion2/ShelleyNodeToClientVersion11/SlotNo: -------------------------------------------------------------------------------- 1 | * -------------------------------------------------------------------------------- /ouroboros-consensus-cardano/golden/shelley/QueryVersion2/ShelleyNodeToClientVersion8/ApplyTxErr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntersectMBO/ouroboros-consensus/946896723dbdf61b1f7e9de472cc19ecfb14cda1/ouroboros-consensus-cardano/golden/shelley/QueryVersion2/ShelleyNodeToClientVersion8/ApplyTxErr -------------------------------------------------------------------------------- /ouroboros-consensus-cardano/golden/shelley/QueryVersion2/ShelleyNodeToClientVersion8/Block: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntersectMBO/ouroboros-consensus/946896723dbdf61b1f7e9de472cc19ecfb14cda1/ouroboros-consensus-cardano/golden/shelley/QueryVersion2/ShelleyNodeToClientVersion8/Block -------------------------------------------------------------------------------- /ouroboros-consensus-cardano/golden/shelley/QueryVersion2/ShelleyNodeToClientVersion8/GenTx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntersectMBO/ouroboros-consensus/946896723dbdf61b1f7e9de472cc19ecfb14cda1/ouroboros-consensus-cardano/golden/shelley/QueryVersion2/ShelleyNodeToClientVersion8/GenTx -------------------------------------------------------------------------------- /ouroboros-consensus-cardano/golden/shelley/QueryVersion2/ShelleyNodeToClientVersion8/GenTxId: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntersectMBO/ouroboros-consensus/946896723dbdf61b1f7e9de472cc19ecfb14cda1/ouroboros-consensus-cardano/golden/shelley/QueryVersion2/ShelleyNodeToClientVersion8/GenTxId -------------------------------------------------------------------------------- /ouroboros-consensus-cardano/golden/shelley/QueryVersion2/ShelleyNodeToClientVersion8/LedgerConfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntersectMBO/ouroboros-consensus/946896723dbdf61b1f7e9de472cc19ecfb14cda1/ouroboros-consensus-cardano/golden/shelley/QueryVersion2/ShelleyNodeToClientVersion8/LedgerConfig -------------------------------------------------------------------------------- /ouroboros-consensus-cardano/golden/shelley/QueryVersion2/ShelleyNodeToClientVersion8/Query_GetEpochNo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntersectMBO/ouroboros-consensus/946896723dbdf61b1f7e9de472cc19ecfb14cda1/ouroboros-consensus-cardano/golden/shelley/QueryVersion2/ShelleyNodeToClientVersion8/Query_GetEpochNo -------------------------------------------------------------------------------- /ouroboros-consensus-cardano/golden/shelley/QueryVersion2/ShelleyNodeToClientVersion8/Query_GetGenesisConfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntersectMBO/ouroboros-consensus/946896723dbdf61b1f7e9de472cc19ecfb14cda1/ouroboros-consensus-cardano/golden/shelley/QueryVersion2/ShelleyNodeToClientVersion8/Query_GetGenesisConfig -------------------------------------------------------------------------------- /ouroboros-consensus-cardano/golden/shelley/QueryVersion2/ShelleyNodeToClientVersion8/Query_GetLedgerTip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntersectMBO/ouroboros-consensus/946896723dbdf61b1f7e9de472cc19ecfb14cda1/ouroboros-consensus-cardano/golden/shelley/QueryVersion2/ShelleyNodeToClientVersion8/Query_GetLedgerTip -------------------------------------------------------------------------------- /ouroboros-consensus-cardano/golden/shelley/QueryVersion2/ShelleyNodeToClientVersion8/Result_EmptyPParams: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntersectMBO/ouroboros-consensus/946896723dbdf61b1f7e9de472cc19ecfb14cda1/ouroboros-consensus-cardano/golden/shelley/QueryVersion2/ShelleyNodeToClientVersion8/Result_EmptyPParams -------------------------------------------------------------------------------- /ouroboros-consensus-cardano/golden/shelley/QueryVersion2/ShelleyNodeToClientVersion8/Result_EpochNo: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /ouroboros-consensus-cardano/golden/shelley/QueryVersion2/ShelleyNodeToClientVersion8/Result_GenesisConfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntersectMBO/ouroboros-consensus/946896723dbdf61b1f7e9de472cc19ecfb14cda1/ouroboros-consensus-cardano/golden/shelley/QueryVersion2/ShelleyNodeToClientVersion8/Result_GenesisConfig -------------------------------------------------------------------------------- /ouroboros-consensus-cardano/golden/shelley/QueryVersion2/ShelleyNodeToClientVersion8/Result_LedgerTip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntersectMBO/ouroboros-consensus/946896723dbdf61b1f7e9de472cc19ecfb14cda1/ouroboros-consensus-cardano/golden/shelley/QueryVersion2/ShelleyNodeToClientVersion8/Result_LedgerTip -------------------------------------------------------------------------------- /ouroboros-consensus-cardano/golden/shelley/QueryVersion2/ShelleyNodeToClientVersion8/SerialisedBlock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntersectMBO/ouroboros-consensus/946896723dbdf61b1f7e9de472cc19ecfb14cda1/ouroboros-consensus-cardano/golden/shelley/QueryVersion2/ShelleyNodeToClientVersion8/SerialisedBlock -------------------------------------------------------------------------------- /ouroboros-consensus-cardano/golden/shelley/QueryVersion2/ShelleyNodeToClientVersion8/SlotNo: -------------------------------------------------------------------------------- 1 | * -------------------------------------------------------------------------------- /ouroboros-consensus-cardano/golden/shelley/QueryVersion2/ShelleyNodeToClientVersion9/ApplyTxErr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntersectMBO/ouroboros-consensus/946896723dbdf61b1f7e9de472cc19ecfb14cda1/ouroboros-consensus-cardano/golden/shelley/QueryVersion2/ShelleyNodeToClientVersion9/ApplyTxErr -------------------------------------------------------------------------------- /ouroboros-consensus-cardano/golden/shelley/QueryVersion2/ShelleyNodeToClientVersion9/Block: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntersectMBO/ouroboros-consensus/946896723dbdf61b1f7e9de472cc19ecfb14cda1/ouroboros-consensus-cardano/golden/shelley/QueryVersion2/ShelleyNodeToClientVersion9/Block -------------------------------------------------------------------------------- /ouroboros-consensus-cardano/golden/shelley/QueryVersion2/ShelleyNodeToClientVersion9/GenTx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntersectMBO/ouroboros-consensus/946896723dbdf61b1f7e9de472cc19ecfb14cda1/ouroboros-consensus-cardano/golden/shelley/QueryVersion2/ShelleyNodeToClientVersion9/GenTx -------------------------------------------------------------------------------- /ouroboros-consensus-cardano/golden/shelley/QueryVersion2/ShelleyNodeToClientVersion9/GenTxId: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntersectMBO/ouroboros-consensus/946896723dbdf61b1f7e9de472cc19ecfb14cda1/ouroboros-consensus-cardano/golden/shelley/QueryVersion2/ShelleyNodeToClientVersion9/GenTxId -------------------------------------------------------------------------------- /ouroboros-consensus-cardano/golden/shelley/QueryVersion2/ShelleyNodeToClientVersion9/LedgerConfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntersectMBO/ouroboros-consensus/946896723dbdf61b1f7e9de472cc19ecfb14cda1/ouroboros-consensus-cardano/golden/shelley/QueryVersion2/ShelleyNodeToClientVersion9/LedgerConfig -------------------------------------------------------------------------------- /ouroboros-consensus-cardano/golden/shelley/QueryVersion2/ShelleyNodeToClientVersion9/Query_GetEpochNo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntersectMBO/ouroboros-consensus/946896723dbdf61b1f7e9de472cc19ecfb14cda1/ouroboros-consensus-cardano/golden/shelley/QueryVersion2/ShelleyNodeToClientVersion9/Query_GetEpochNo -------------------------------------------------------------------------------- /ouroboros-consensus-cardano/golden/shelley/QueryVersion2/ShelleyNodeToClientVersion9/Query_GetGenesisConfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntersectMBO/ouroboros-consensus/946896723dbdf61b1f7e9de472cc19ecfb14cda1/ouroboros-consensus-cardano/golden/shelley/QueryVersion2/ShelleyNodeToClientVersion9/Query_GetGenesisConfig -------------------------------------------------------------------------------- /ouroboros-consensus-cardano/golden/shelley/QueryVersion2/ShelleyNodeToClientVersion9/Query_GetLedgerTip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntersectMBO/ouroboros-consensus/946896723dbdf61b1f7e9de472cc19ecfb14cda1/ouroboros-consensus-cardano/golden/shelley/QueryVersion2/ShelleyNodeToClientVersion9/Query_GetLedgerTip -------------------------------------------------------------------------------- /ouroboros-consensus-cardano/golden/shelley/QueryVersion2/ShelleyNodeToClientVersion9/Result_EmptyPParams: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntersectMBO/ouroboros-consensus/946896723dbdf61b1f7e9de472cc19ecfb14cda1/ouroboros-consensus-cardano/golden/shelley/QueryVersion2/ShelleyNodeToClientVersion9/Result_EmptyPParams -------------------------------------------------------------------------------- /ouroboros-consensus-cardano/golden/shelley/QueryVersion2/ShelleyNodeToClientVersion9/Result_EpochNo: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /ouroboros-consensus-cardano/golden/shelley/QueryVersion2/ShelleyNodeToClientVersion9/Result_GenesisConfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntersectMBO/ouroboros-consensus/946896723dbdf61b1f7e9de472cc19ecfb14cda1/ouroboros-consensus-cardano/golden/shelley/QueryVersion2/ShelleyNodeToClientVersion9/Result_GenesisConfig -------------------------------------------------------------------------------- /ouroboros-consensus-cardano/golden/shelley/QueryVersion2/ShelleyNodeToClientVersion9/Result_LedgerTip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntersectMBO/ouroboros-consensus/946896723dbdf61b1f7e9de472cc19ecfb14cda1/ouroboros-consensus-cardano/golden/shelley/QueryVersion2/ShelleyNodeToClientVersion9/Result_LedgerTip -------------------------------------------------------------------------------- /ouroboros-consensus-cardano/golden/shelley/QueryVersion2/ShelleyNodeToClientVersion9/SerialisedBlock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntersectMBO/ouroboros-consensus/946896723dbdf61b1f7e9de472cc19ecfb14cda1/ouroboros-consensus-cardano/golden/shelley/QueryVersion2/ShelleyNodeToClientVersion9/SerialisedBlock -------------------------------------------------------------------------------- /ouroboros-consensus-cardano/golden/shelley/QueryVersion2/ShelleyNodeToClientVersion9/SlotNo: -------------------------------------------------------------------------------- 1 | * -------------------------------------------------------------------------------- /ouroboros-consensus-cardano/golden/shelley/QueryVersion3/ShelleyNodeToClientVersion12/ApplyTxErr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntersectMBO/ouroboros-consensus/946896723dbdf61b1f7e9de472cc19ecfb14cda1/ouroboros-consensus-cardano/golden/shelley/QueryVersion3/ShelleyNodeToClientVersion12/ApplyTxErr -------------------------------------------------------------------------------- /ouroboros-consensus-cardano/golden/shelley/QueryVersion3/ShelleyNodeToClientVersion12/Block: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntersectMBO/ouroboros-consensus/946896723dbdf61b1f7e9de472cc19ecfb14cda1/ouroboros-consensus-cardano/golden/shelley/QueryVersion3/ShelleyNodeToClientVersion12/Block -------------------------------------------------------------------------------- /ouroboros-consensus-cardano/golden/shelley/QueryVersion3/ShelleyNodeToClientVersion12/GenTx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntersectMBO/ouroboros-consensus/946896723dbdf61b1f7e9de472cc19ecfb14cda1/ouroboros-consensus-cardano/golden/shelley/QueryVersion3/ShelleyNodeToClientVersion12/GenTx -------------------------------------------------------------------------------- /ouroboros-consensus-cardano/golden/shelley/QueryVersion3/ShelleyNodeToClientVersion12/GenTxId: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntersectMBO/ouroboros-consensus/946896723dbdf61b1f7e9de472cc19ecfb14cda1/ouroboros-consensus-cardano/golden/shelley/QueryVersion3/ShelleyNodeToClientVersion12/GenTxId -------------------------------------------------------------------------------- /ouroboros-consensus-cardano/golden/shelley/QueryVersion3/ShelleyNodeToClientVersion12/LedgerConfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntersectMBO/ouroboros-consensus/946896723dbdf61b1f7e9de472cc19ecfb14cda1/ouroboros-consensus-cardano/golden/shelley/QueryVersion3/ShelleyNodeToClientVersion12/LedgerConfig -------------------------------------------------------------------------------- /ouroboros-consensus-cardano/golden/shelley/QueryVersion3/ShelleyNodeToClientVersion12/Query_GetEpochNo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntersectMBO/ouroboros-consensus/946896723dbdf61b1f7e9de472cc19ecfb14cda1/ouroboros-consensus-cardano/golden/shelley/QueryVersion3/ShelleyNodeToClientVersion12/Query_GetEpochNo -------------------------------------------------------------------------------- /ouroboros-consensus-cardano/golden/shelley/QueryVersion3/ShelleyNodeToClientVersion12/Query_GetLedgerTip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntersectMBO/ouroboros-consensus/946896723dbdf61b1f7e9de472cc19ecfb14cda1/ouroboros-consensus-cardano/golden/shelley/QueryVersion3/ShelleyNodeToClientVersion12/Query_GetLedgerTip -------------------------------------------------------------------------------- /ouroboros-consensus-cardano/golden/shelley/QueryVersion3/ShelleyNodeToClientVersion12/Result_EmptyPParams: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntersectMBO/ouroboros-consensus/946896723dbdf61b1f7e9de472cc19ecfb14cda1/ouroboros-consensus-cardano/golden/shelley/QueryVersion3/ShelleyNodeToClientVersion12/Result_EmptyPParams -------------------------------------------------------------------------------- /ouroboros-consensus-cardano/golden/shelley/QueryVersion3/ShelleyNodeToClientVersion12/Result_EpochNo: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /ouroboros-consensus-cardano/golden/shelley/QueryVersion3/ShelleyNodeToClientVersion12/Result_GenesisConfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntersectMBO/ouroboros-consensus/946896723dbdf61b1f7e9de472cc19ecfb14cda1/ouroboros-consensus-cardano/golden/shelley/QueryVersion3/ShelleyNodeToClientVersion12/Result_GenesisConfig -------------------------------------------------------------------------------- /ouroboros-consensus-cardano/golden/shelley/QueryVersion3/ShelleyNodeToClientVersion12/Result_LedgerTip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntersectMBO/ouroboros-consensus/946896723dbdf61b1f7e9de472cc19ecfb14cda1/ouroboros-consensus-cardano/golden/shelley/QueryVersion3/ShelleyNodeToClientVersion12/Result_LedgerTip -------------------------------------------------------------------------------- /ouroboros-consensus-cardano/golden/shelley/QueryVersion3/ShelleyNodeToClientVersion12/SerialisedBlock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntersectMBO/ouroboros-consensus/946896723dbdf61b1f7e9de472cc19ecfb14cda1/ouroboros-consensus-cardano/golden/shelley/QueryVersion3/ShelleyNodeToClientVersion12/SerialisedBlock -------------------------------------------------------------------------------- /ouroboros-consensus-cardano/golden/shelley/QueryVersion3/ShelleyNodeToClientVersion12/SlotNo: -------------------------------------------------------------------------------- 1 | * -------------------------------------------------------------------------------- /ouroboros-consensus-cardano/golden/shelley/ShelleyNodeToNodeVersion1/Block: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntersectMBO/ouroboros-consensus/946896723dbdf61b1f7e9de472cc19ecfb14cda1/ouroboros-consensus-cardano/golden/shelley/ShelleyNodeToNodeVersion1/Block -------------------------------------------------------------------------------- /ouroboros-consensus-cardano/golden/shelley/ShelleyNodeToNodeVersion1/GenTx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntersectMBO/ouroboros-consensus/946896723dbdf61b1f7e9de472cc19ecfb14cda1/ouroboros-consensus-cardano/golden/shelley/ShelleyNodeToNodeVersion1/GenTx -------------------------------------------------------------------------------- /ouroboros-consensus-cardano/golden/shelley/ShelleyNodeToNodeVersion1/GenTxId: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntersectMBO/ouroboros-consensus/946896723dbdf61b1f7e9de472cc19ecfb14cda1/ouroboros-consensus-cardano/golden/shelley/ShelleyNodeToNodeVersion1/GenTxId -------------------------------------------------------------------------------- /ouroboros-consensus-cardano/golden/shelley/ShelleyNodeToNodeVersion1/Header: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntersectMBO/ouroboros-consensus/946896723dbdf61b1f7e9de472cc19ecfb14cda1/ouroboros-consensus-cardano/golden/shelley/ShelleyNodeToNodeVersion1/Header -------------------------------------------------------------------------------- /ouroboros-consensus-cardano/golden/shelley/ShelleyNodeToNodeVersion1/SerialisedBlock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntersectMBO/ouroboros-consensus/946896723dbdf61b1f7e9de472cc19ecfb14cda1/ouroboros-consensus-cardano/golden/shelley/ShelleyNodeToNodeVersion1/SerialisedBlock -------------------------------------------------------------------------------- /ouroboros-consensus-cardano/golden/shelley/ShelleyNodeToNodeVersion1/SerialisedHeader: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntersectMBO/ouroboros-consensus/946896723dbdf61b1f7e9de472cc19ecfb14cda1/ouroboros-consensus-cardano/golden/shelley/ShelleyNodeToNodeVersion1/SerialisedHeader -------------------------------------------------------------------------------- /ouroboros-consensus-cardano/golden/shelley/disk/AnnTip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntersectMBO/ouroboros-consensus/946896723dbdf61b1f7e9de472cc19ecfb14cda1/ouroboros-consensus-cardano/golden/shelley/disk/AnnTip -------------------------------------------------------------------------------- /ouroboros-consensus-cardano/golden/shelley/disk/Block: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntersectMBO/ouroboros-consensus/946896723dbdf61b1f7e9de472cc19ecfb14cda1/ouroboros-consensus-cardano/golden/shelley/disk/Block -------------------------------------------------------------------------------- /ouroboros-consensus-cardano/golden/shelley/disk/ChainDepState: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntersectMBO/ouroboros-consensus/946896723dbdf61b1f7e9de472cc19ecfb14cda1/ouroboros-consensus-cardano/golden/shelley/disk/ChainDepState -------------------------------------------------------------------------------- /ouroboros-consensus-cardano/golden/shelley/disk/ExtLedgerState: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntersectMBO/ouroboros-consensus/946896723dbdf61b1f7e9de472cc19ecfb14cda1/ouroboros-consensus-cardano/golden/shelley/disk/ExtLedgerState -------------------------------------------------------------------------------- /ouroboros-consensus-cardano/golden/shelley/disk/HeaderHash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntersectMBO/ouroboros-consensus/946896723dbdf61b1f7e9de472cc19ecfb14cda1/ouroboros-consensus-cardano/golden/shelley/disk/HeaderHash -------------------------------------------------------------------------------- /ouroboros-consensus-cardano/golden/shelley/disk/LedgerState: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntersectMBO/ouroboros-consensus/946896723dbdf61b1f7e9de472cc19ecfb14cda1/ouroboros-consensus-cardano/golden/shelley/disk/LedgerState -------------------------------------------------------------------------------- /ouroboros-consensus-cardano/golden/shelley/disk/LedgerTables: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntersectMBO/ouroboros-consensus/946896723dbdf61b1f7e9de472cc19ecfb14cda1/ouroboros-consensus-cardano/golden/shelley/disk/LedgerTables -------------------------------------------------------------------------------- /ouroboros-consensus-cardano/src/unstable-byron-testlib/Test/ThreadNet/Infra/Byron.hs: -------------------------------------------------------------------------------- 1 | module Test.ThreadNet.Infra.Byron (module X) where 2 | 3 | import Test.ThreadNet.Infra.Byron.Genesis as X 4 | import Test.ThreadNet.Infra.Byron.ProtocolInfo as X 5 | import Test.ThreadNet.Infra.Byron.TrackUpdates as X 6 | -------------------------------------------------------------------------------- /ouroboros-consensus-diffusion/changelog.d/20250512_165249_alexander.esgen_genesis_caughtup_final_chainsel.md: -------------------------------------------------------------------------------- 1 | 4 | -------------------------------------------------------------------------------- /ouroboros-consensus-protocol/README.md: -------------------------------------------------------------------------------- 1 | # Conensus protocol package 2 | 3 | The [Consensus core package](../ouroboros-consensus) is abstract over protocols 4 | that implement the required typeclasses. This package provides implementations 5 | of Ouroboros Transitional Praos (TPraos) and Ouroboros Praos. 6 | -------------------------------------------------------------------------------- /ouroboros-consensus/changelog.d/20250512_164809_alexander.esgen_genesis_caughtup_final_chainsel.md: -------------------------------------------------------------------------------- 1 | ### Patch 2 | 3 | - Changed ChainSel to reprocess LoE-delayed blocks even when LoE is disabled. 4 | -------------------------------------------------------------------------------- /ouroboros-consensus/changelog.d/20250512_165110_alexander.esgen_genesis_caughtup_final_chainsel.md: -------------------------------------------------------------------------------- 1 | ### Patch 2 | 3 | - Changed GDD to trigger chain selection when caught-up. In certain edge cases, 4 | this enables the node to promptly select a better chain right after concluding 5 | that it is caught-up. 6 | -------------------------------------------------------------------------------- /ouroboros-consensus/changelog.d/20250528_135650_alexander.esgen_v2_ledgerseq_close.md: -------------------------------------------------------------------------------- 1 | ### Breaking 2 | 3 | - LedgerDB: added new trace events (enabling new tests). 4 | -------------------------------------------------------------------------------- /ouroboros-consensus/changelog.d/20250602_100145_alexander.esgen_small_opts.md: -------------------------------------------------------------------------------- 1 | ### Breaking 2 | 3 | - ChainDB internals: changed type of `FollowerHandle.fhSwitchFork`. 4 | -------------------------------------------------------------------------------- /ouroboros-consensus/docs/haddocks/bogus.svg: -------------------------------------------------------------------------------- 1 | This file is a bogus file just to make 'cabal' happy as this directory is 2 | included as 'extra-doc-files' and cabal will fail if this is empty. However, 3 | this directory shall be populated by images used all over the 4 | ouroboros-consensus documentation. 5 | -------------------------------------------------------------------------------- /ouroboros-consensus/src/ouroboros-consensus/Ouroboros/Consensus/Storage/VolatileDB.hs: -------------------------------------------------------------------------------- 1 | module Ouroboros.Consensus.Storage.VolatileDB (module X) where 2 | 3 | import Ouroboros.Consensus.Storage.VolatileDB.API as X 4 | import Ouroboros.Consensus.Storage.VolatileDB.Impl as X 5 | -------------------------------------------------------------------------------- /ouroboros-consensus/test/doctest.hs: -------------------------------------------------------------------------------- 1 | module Main (main) where 2 | 3 | main :: IO () 4 | main = do 5 | putStrLn "This test-suite exists only to add dependencies" 6 | putStrLn "To run doctests: " 7 | putStrLn " cabal build all --enable-tests" 8 | putStrLn " cabal-docspec" 9 | -------------------------------------------------------------------------------- /scripts/ci/check-cabal-files.sh: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env bash 2 | 3 | set -Eeuo pipefail 4 | 5 | for x in $(find . -name '*.cabal' | grep -vE 'dist-newstyle|asserts\.cabal' | cut -c 3-); do 6 | ( 7 | d=$(dirname $x) 8 | echo "== $d ==" 9 | cd $d 10 | cabal check 11 | ) 12 | done 13 | -------------------------------------------------------------------------------- /scripts/ci/run-dos2unix.sh: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env bash 2 | 3 | set -euo pipefail 4 | 5 | fd -X dos2unix 6 | -------------------------------------------------------------------------------- /scripts/ci/run-nixpkgs-fmt.sh: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env bash 2 | 3 | set -euo pipefail 4 | 5 | fd -e nix -X nixpkgs-fmt 6 | -------------------------------------------------------------------------------- /scripts/slicing-node-logs/binning.awk: -------------------------------------------------------------------------------- 1 | { p = log($0 / sz)/log(10); if (p < 0) p = 0; x = sz * 10 ^ int(p); print int($0/x)*x; } 2 | -------------------------------------------------------------------------------- /scripts/slicing-node-logs/cumsum1.awk: -------------------------------------------------------------------------------- 1 | { x = x + $1; $1 = x; print; } 2 | -------------------------------------------------------------------------------- /shell.nix: -------------------------------------------------------------------------------- 1 | (import ./.).devShells.${builtins.currentSystem}.default 2 | --------------------------------------------------------------------------------