diff --git a/agora-purescript-bridge/AgoraTypes.hs b/agora-purescript-bridge/AgoraTypes.hs index a6dd27a..a32f088 100644 --- a/agora-purescript-bridge/AgoraTypes.hs +++ b/agora-purescript-bridge/AgoraTypes.hs @@ -11,7 +11,6 @@ import Language.PureScript.Bridge ( -------------------------------------------------------------------------------- -import Agora.AuthorityToken qualified as AuthorityToken import Agora.Effect.GovernorMutation qualified as GovernorMutation import Agora.Effect.TreasuryWithdrawal qualified as TreasuryWithdrawalEffect import Agora.Governor qualified as Governor @@ -38,8 +37,6 @@ agoraTypes = mkSumType (Proxy @Stake.ProposalLock) , mkSumType (Proxy @Stake.StakeRedeemer) , mkSumType (Proxy @Stake.StakeDatum) - , -- AuthorityToken - mkSumType (Proxy @AuthorityToken.AuthorityToken) , -- Effects mkSumType (Proxy @TreasuryWithdrawalEffect.TreasuryWithdrawalDatum) , mkSumType (Proxy @GovernorMutation.MutateGovernorDatum) diff --git a/agora-scripts/Main.hs b/agora-scripts/Main.hs index 745b1fe..c56740b 100644 --- a/agora-scripts/Main.hs +++ b/agora-scripts/Main.hs @@ -9,153 +9,16 @@ module Main (main) where import Agora.Bootstrap qualified as Bootstrap -import Agora.Governor (Governor (Governor)) -import Agora.SafeMoney (GTTag) -import Agora.Scripts qualified as Scripts -import Agora.Utils (CompiledMintingPolicy (getCompiledMintingPolicy), CompiledValidator (getCompiledValidator)) -import Data.Aeson qualified as Aeson +import Agora.Linker import Data.Default (def) -import Data.Function ((&)) -import Data.Tagged (Tagged) -import Data.Text (Text) -import Development.GitRev (gitBranch, gitHash) -import GHC.Generics qualified as GHC -import Plutarch (Config (Config, tracingMode), TracingMode (DoTracing, NoTracing)) -import PlutusLedgerApi.V1 ( - MintingPolicy (getMintingPolicy), - TxOutRef, - Validator (getValidator), - ) -import PlutusLedgerApi.V1.Value (AssetClass) -import ScriptExport.API (runServer) -import ScriptExport.Options (parseOptions) -import ScriptExport.ScriptInfo (ScriptInfo, mkPolicyInfo, mkScriptInfo, mkValidatorInfo) -import ScriptExport.Types (Builders, insertBuilder) +import ScriptExport.Export +import ScriptExport.Types main :: IO () -main = - parseOptions >>= runServer revision builders - where - -- This encodes the git revision of the server. It's useful for the caller - -- to be able to ensure they are compatible with it. - revision :: Text - revision = $(gitBranch) <> "@" <> $(gitHash) +main = exportMain builders -{- | Builders for Agora scripts. - - @since 0.2.0 --} builders :: Builders builders = - def - -- Agora scripts - & insertBuilder "governorPolicy" ((.governorPolicyInfo) . agoraScripts) - & insertBuilder "governorValidator" ((.governorValidatorInfo) . agoraScripts) - & insertBuilder "stakePolicy" ((.stakePolicyInfo) . agoraScripts) - & insertBuilder "stakeValidator" ((.stakeValidatorInfo) . agoraScripts) - & insertBuilder "proposalPolicy" ((.proposalPolicyInfo) . agoraScripts) - & insertBuilder "proposalValidator" ((.proposalValidatorInfo) . agoraScripts) - & insertBuilder "treasuryValidator" ((.treasuryValidatorInfo) . agoraScripts) - & insertBuilder "authorityTokenPolicy" ((.authorityTokenPolicyInfo) . agoraScripts) - -- Trivial scripts. These are useful for testing, but they likely aren't useful - -- to you if you are actually interested in deploying to mainnet. - & insertBuilder - "alwaysSucceedsPolicy" - (\() -> mkPolicyInfo $ plam $ \_ _ -> popaque (pconstant ())) - & insertBuilder - "alwaysSucceedsValidator" - (\() -> mkValidatorInfo $ plam $ \_ _ _ -> popaque (pconstant ())) - & insertBuilder - "neverSucceedsPolicy" - (\() -> mkPolicyInfo $ plam $ \_ _ -> perror) - & insertBuilder - "neverSucceedsValidator" - (\() -> mkValidatorInfo $ plam $ \_ _ _ -> perror) - -- Provided Effect scripts - & insertBuilder "treasuryWithdrawalEffect" ((.treasuryWithdrawalEffectInfo) . agoraScripts) - -{- | Create scripts from params. - - @since 0.2.0 --} -agoraScripts :: ScriptParams -> AgoraScripts -agoraScripts params = - AgoraScripts - { governorPolicyInfo = mkPolicyInfo' scripts.compiledGovernorPolicy - , governorValidatorInfo = mkValidatorInfo' scripts.compiledGovernorValidator - , stakePolicyInfo = mkPolicyInfo' scripts.compiledStakePolicy - , stakeValidatorInfo = mkValidatorInfo' scripts.compiledStakeValidator - , proposalPolicyInfo = mkPolicyInfo' scripts.compiledProposalPolicy - , proposalValidatorInfo = mkValidatorInfo' scripts.compiledProposalValidator - , treasuryValidatorInfo = mkValidatorInfo' scripts.compiledTreasuryValidator - , authorityTokenPolicyInfo = mkPolicyInfo' scripts.compiledAuthorityTokenPolicy - , treasuryWithdrawalEffectInfo = mkValidatorInfo' scripts.compiledTreasuryWithdrawalEffect - } - where - governor = - Agora.Governor.Governor - params.governorInitialSpend - params.gtClassRef - params.maximumCosigners - - scripts = Bootstrap.agoraScripts plutarchConfig governor - - plutarchConfig :: Config - plutarchConfig = Config {tracingMode = if params.tracing then DoTracing else NoTracing} - -{- | Params required for creating script export. - - @since 1.0.0 --} -data ScriptParams = ScriptParams - { governorInitialSpend :: TxOutRef - , gtClassRef :: Tagged GTTag AssetClass - , maximumCosigners :: Integer - , tracing :: Bool - } - deriving anyclass (Aeson.ToJSON, Aeson.FromJSON) - deriving stock (Show, Eq, GHC.Generic, Ord) - -{- | Scripts that get exported. - - @since 0.2.0 --} -data AgoraScripts = AgoraScripts - { governorPolicyInfo :: ScriptInfo - , governorValidatorInfo :: ScriptInfo - , stakePolicyInfo :: ScriptInfo - , stakeValidatorInfo :: ScriptInfo - , proposalPolicyInfo :: ScriptInfo - , proposalValidatorInfo :: ScriptInfo - , treasuryValidatorInfo :: ScriptInfo - , authorityTokenPolicyInfo :: ScriptInfo - , treasuryWithdrawalEffectInfo :: ScriptInfo - } - deriving anyclass - ( -- | @since 0.2.0 - Aeson.ToJSON - , -- | @since 0.2.0 - Aeson.FromJSON - ) - deriving stock - ( -- | @since 0.2.0 - Show - , -- | @since 0.2.0 - Eq - , -- | @since 0.2.0 - GHC.Generic - ) - -{- | Turn a precompiled minting policy to a 'ScriptInfo'. - - @since 0.2.0 --} -mkPolicyInfo' :: forall redeemer. CompiledMintingPolicy redeemer -> ScriptInfo -mkPolicyInfo' = mkScriptInfo . getMintingPolicy . (.getCompiledMintingPolicy) - -{- | Turn a precompiled validator to a 'ScriptInfo'. - - @since 0.2.0 --} -mkValidatorInfo' :: forall redeemer datum. CompiledValidator datum redeemer -> ScriptInfo -mkValidatorInfo' = mkScriptInfo . getValidator . (.getCompiledValidator) + mconcat + [ insertScriptExportWithLinker "agora" (Bootstrap.agoraScripts def) linker + ] diff --git a/agora-scripts/sampleGov.json b/agora-scripts/sampleGov.json new file mode 100644 index 0000000..418f799 --- /dev/null +++ b/agora-scripts/sampleGov.json @@ -0,0 +1,7 @@ +{ "gstOutRef": + {"txOutRefId":"f28cd7145c24e66fd5bcd2796837aeb19a48a2656e7833c88c62a2d0450bd00d" + ,"txOutRefIdx":0 + } + ,"gtClassRef":["da8c30857834c6ae7203935b89278c532b3995245295456f993e1d24","4c51"] + ,"maximumCosigners":20 +} diff --git a/agora-specs/Property/Governor.hs b/agora-specs/Property/Governor.hs index 311e7ad..630657f 100644 --- a/agora-specs/Property/Governor.hs +++ b/agora-specs/Property/Governor.hs @@ -217,7 +217,7 @@ governorMintingProperty = opaqueToUnit = plam $ \_ -> pconstant () actual :: Term s (PScriptContext :--> PUnit) - actual = plam $ \sc -> opaqueToUnit #$ governorPolicy governor.gstOutRef # pforgetData (pconstantData ()) # sc + actual = plam $ \sc -> opaqueToUnit #$ governorPolicy # pconstant governor.gstOutRef # pforgetData (pconstantData ()) # sc classifier :: ScriptContext -> GovernorPolicyCases classifier sc diff --git a/agora-specs/Sample/Effect/GovernorMutation.hs b/agora-specs/Sample/Effect/GovernorMutation.hs index c88ad4a..6d220b6 100644 --- a/agora-specs/Sample/Effect/GovernorMutation.hs +++ b/agora-specs/Sample/Effect/GovernorMutation.hs @@ -13,14 +13,14 @@ module Sample.Effect.GovernorMutation ( import Agora.Effect.GovernorMutation ( MutateGovernorDatum (..), - mutateGovernorValidator, ) import Agora.Governor (GovernorDatum (..), GovernorRedeemer (MutateGovernor)) import Agora.Proposal (ProposalId (..), ProposalThresholds (..)) import Agora.Utils (validatorHashToTokenName) import Data.Default.Class (Default (def)) +import Data.Map import Data.Tagged (Tagged (..)) -import Plutarch.Api.V2 (mkValidator, validatorHash) +import Plutarch.Api.V2 (validatorHash) import PlutusLedgerApi.V1 qualified as Interval (always) import PlutusLedgerApi.V1.Address (scriptHashAddress) import PlutusLedgerApi.V1.Value (AssetClass, assetClass) @@ -38,14 +38,13 @@ import PlutusLedgerApi.V2 ( TxInfo (..), TxOut (..), TxOutRef (TxOutRef), - Validator, + Validator (Validator), ValidatorHash (..), ) import PlutusTx.AssocMap qualified as AssocMap import Sample.Shared ( agoraScripts, authorityTokenSymbol, - deterministicTracingConfing, govAssetClass, govValidatorAddress, minAda, @@ -56,7 +55,7 @@ import Test.Util (datumPair, toDatumHash) -- | The effect validator instance. effectValidator :: Validator -effectValidator = mkValidator deterministicTracingConfing $ mutateGovernorValidator agoraScripts +effectValidator = Validator $ agoraScripts ! "agora:mutateGovernorValidator" -- | The hash of the validator instance. effectValidatorHash :: ValidatorHash diff --git a/agora-specs/Sample/Effect/TreasuryWithdrawal.hs b/agora-specs/Sample/Effect/TreasuryWithdrawal.hs index 49c0d9e..02491a4 100644 --- a/agora-specs/Sample/Effect/TreasuryWithdrawal.hs +++ b/agora-specs/Sample/Effect/TreasuryWithdrawal.hs @@ -6,6 +6,7 @@ Description: Sample based testing for Treasury Withdrawal Effect This module provides samples for Treasury Withdrawal Effect tests. -} module Sample.Effect.TreasuryWithdrawal ( + validator, inputTreasury, inputUser, inputGAT, @@ -21,9 +22,9 @@ module Sample.Effect.TreasuryWithdrawal ( import Agora.Effect.TreasuryWithdrawal ( TreasuryWithdrawalDatum (TreasuryWithdrawalDatum), - treasuryWithdrawalValidator, ) -import Plutarch.Api.V2 (mkValidator, validatorHash) +import Data.Map ((!)) +import Plutarch.Api.V2 (validatorHash) import PlutusLedgerApi.V1.Interval qualified as Interval (always) import PlutusLedgerApi.V1.Value qualified as Value (singleton) import PlutusLedgerApi.V2 ( @@ -41,18 +42,18 @@ import PlutusLedgerApi.V2 ( TxInfo (..), TxOut (..), TxOutRef (TxOutRef), - Validator, + Validator (Validator), ValidatorHash (ValidatorHash), Value, toBuiltinData, ) import PlutusTx.AssocMap qualified as AssocMap -import Sample.Shared (deterministicTracingConfing) +import Sample.Shared (agoraScripts, authorityTokenSymbol) import Test.Util (scriptCredentials, userCredentials) -- | A sample Currency Symbol. currSymbol :: CurrencySymbol -currSymbol = "9c04a69c7133e26061fe5a15adaf4f79cd51e47ef22a2e3c91a36f04" +currSymbol = authorityTokenSymbol -- | A sample 'PubKeyHash'. signer :: PubKeyHash @@ -147,7 +148,7 @@ buildReceiversOutputFromDatum (TreasuryWithdrawalDatum xs _) = f <$> xs -- | Effect validator instance. validator :: Validator -validator = mkValidator deterministicTracingConfing $ treasuryWithdrawalValidator currSymbol +validator = Validator $ agoraScripts ! "agora:treasuryWithdrawalValidator" -- | 'TokenName' that represents the hash of the 'Agora.Stake.Stake' validator. validatorHashTN :: TokenName diff --git a/agora-specs/Sample/Governor/Initialize.hs b/agora-specs/Sample/Governor/Initialize.hs index 25aa9f9..1a2a6d7 100644 --- a/agora-specs/Sample/Governor/Initialize.hs +++ b/agora-specs/Sample/Governor/Initialize.hs @@ -21,18 +21,20 @@ module Sample.Governor.Initialize ( import Agora.Bootstrap (agoraScripts) import Agora.Governor (Governor (..), GovernorDatum (..)) +import Agora.Linker (linker) import Agora.Proposal (ProposalId (..), ProposalThresholds (..)) import Agora.Proposal.Time ( MaxTimeRangeWidth (MaxTimeRangeWidth), ProposalTimingConfig (ProposalTimingConfig), ) -import Agora.Scripts ( - AgoraScripts (compiledGovernorPolicy), - governorSTAssetClass, - governorSTSymbol, - governorValidatorHash, - ) import Data.Default (Default (..)) +import Data.Map (Map, (!)) +import Data.Text (Text) +import Optics (view) +import Plutarch.Api.V2 ( + mintingPolicySymbol, + validatorHash, + ) import Plutarch.Context ( input, mint, @@ -49,13 +51,18 @@ import PlutusLedgerApi.V1.Value (AssetClass (..)) import PlutusLedgerApi.V1.Value qualified as Value import PlutusLedgerApi.V2 ( CurrencySymbol, + MintingPolicy (MintingPolicy), + Script, TxOutRef (TxOutRef), + Validator (Validator), ValidatorHash, ) import Sample.Shared ( + deterministicTracingConfing, minAda, ) import Sample.Shared qualified as Shared +import ScriptExport.ScriptInfo (runLinker) import Test.Specification (SpecificationTree, testPolicy) import Test.Util (CombinableBuilder, mkMinting, pubKeyHashes, sortValue) @@ -110,17 +117,31 @@ governor = { gstOutRef = witnessRef } -scripts :: AgoraScripts -scripts = agoraScripts Shared.deterministicTracingConfing governor +scripts :: Map Text Script +scripts = + either + (error . show) + (view #scripts) + ( runLinker + linker + (agoraScripts deterministicTracingConfing) + governor + ) -govAssetClass :: AssetClass -govAssetClass = governorSTAssetClass scripts +govPolicy :: MintingPolicy +govPolicy = MintingPolicy $ scripts ! "agora:governorPolicy" -govValidatorHash :: ValidatorHash -govValidatorHash = governorValidatorHash scripts +govValidator :: Validator +govValidator = Validator $ scripts ! "agora:governorValidator" govSymbol :: CurrencySymbol -govSymbol = governorSTSymbol scripts +govSymbol = mintingPolicySymbol govPolicy + +govAssetClass :: AssetClass +govAssetClass = AssetClass (govSymbol, "") + +govValidatorHash :: ValidatorHash +govValidatorHash = validatorHash govValidator -------------------------------------------------------------------------------- @@ -274,6 +295,6 @@ mkTestCase name ps valid = testPolicy valid name - scripts.compiledGovernorPolicy + govPolicy () (mkMinting mintGST ps govSymbol) diff --git a/agora-specs/Sample/Governor/Mutate.hs b/agora-specs/Sample/Governor/Mutate.hs index f262d12..e60c422 100644 --- a/agora-specs/Sample/Governor/Mutate.hs +++ b/agora-specs/Sample/Governor/Mutate.hs @@ -16,13 +16,12 @@ module Sample.Governor.Mutate ( invalidBundles, ) where -import Agora.Effect.NoOp (noOpValidator) import Agora.Governor (GovernorDatum (..), GovernorRedeemer (MutateGovernor)) import Agora.Proposal (ProposalId (ProposalId), ProposalThresholds (..)) -import Agora.Scripts (AgoraScripts (..)) import Agora.Utils (scriptHashToTokenName) import Data.Default (def) -import Plutarch.Api.V2 (PMintingPolicy, PValidator, mintingPolicySymbol, mkMintingPolicy, mkValidator, validatorHash) +import Data.Map ((!)) +import Plutarch.Api.V2 (PMintingPolicy, mintingPolicySymbol, mkMintingPolicy, validatorHash) import Plutarch.Context ( input, mint, @@ -39,6 +38,7 @@ import PlutusLedgerApi.V2 ( Data, ScriptHash (ScriptHash), TxOutRef (TxOutRef), + Validator (Validator), ValidatorHash, Value, toData, @@ -47,6 +47,7 @@ import Sample.Shared ( agoraScripts, authorityTokenSymbol, govAssetClass, + govValidator, govValidatorHash, minAda, ) @@ -171,11 +172,11 @@ mkGovernorBuilder ps = -------------------------------------------------------------------------------- -mockEffectValidator :: ClosedTerm PValidator -mockEffectValidator = noOpValidator authorityTokenSymbol +mockEffectValidator :: Validator +mockEffectValidator = Validator $ agoraScripts ! "agora:noOpValidator" mockEffectValidatorHash :: ValidatorHash -mockEffectValidatorHash = validatorHash $ mkValidator def mockEffectValidator +mockEffectValidatorHash = validatorHash mockEffectValidator mockAuthScript :: ClosedTerm PMintingPolicy mockAuthScript = plam $ \_ _ -> popaque $ pcon PUnit @@ -236,7 +237,7 @@ mkTestCase name pb (Validity forGov) = testValidator forGov name - agoraScripts.compiledGovernorValidator + govValidator governorInputDatum governorRedeemer (mkSpending mutate pb governorRef) diff --git a/agora-specs/Sample/Proposal/Advance.hs b/agora-specs/Sample/Proposal/Advance.hs index 9bfdcaf..518f751 100644 --- a/agora-specs/Sample/Proposal/Advance.hs +++ b/agora-specs/Sample/Proposal/Advance.hs @@ -63,7 +63,6 @@ import Agora.Proposal.Time ( votingTime ), ) -import Agora.Scripts (AgoraScripts (..)) import Agora.Stake ( StakeDatum (..), ) @@ -107,13 +106,15 @@ import Sample.Proposal.Shared ( stakeTxRef, ) import Sample.Shared ( - agoraScripts, + authorityTokenPolicy, authorityTokenSymbol, govAssetClass, + govValidator, govValidatorHash, governor, minAda, proposalPolicySymbol, + proposalValidator, proposalValidatorHash, signer, stakeAssetClass, @@ -532,7 +533,7 @@ mkTestTree name pb val = testValidator val.forProposalValidator "proposal" - agoraScripts.compiledProposalValidator + proposalValidator proposalInputDatum proposalRedeemer (spend proposalRef) @@ -541,7 +542,7 @@ mkTestTree name pb val = testValidator (fromJust val.forGovernorValidator) "governor" - agoraScripts.compiledGovernorValidator + govValidator governorInputDatum governorRedeemer (spend governorRef) @@ -554,7 +555,7 @@ mkTestTree name pb val = ( testPolicy (fromJust val.forAuthorityTokenPolicy) "authority" - agoraScripts.compiledAuthorityTokenPolicy + authorityTokenPolicy authorityTokenRedeemer (mkMinting advance pb authorityTokenSymbol) ) diff --git a/agora-specs/Sample/Proposal/Cosign.hs b/agora-specs/Sample/Proposal/Cosign.hs index e0be34f..82cdc00 100644 --- a/agora-specs/Sample/Proposal/Cosign.hs +++ b/agora-specs/Sample/Proposal/Cosign.hs @@ -39,7 +39,6 @@ import Agora.Proposal.Time ( ProposalTimingConfig (draftTime), ) import Agora.SafeMoney (GTTag) -import Agora.Scripts (AgoraScripts (..)) import Agora.Stake ( ProposalLock (Cosigned, Created), StakeDatum (..), @@ -74,13 +73,14 @@ import PlutusLedgerApi.V2 ( ) import Sample.Proposal.Shared (proposalTxRef, stakeTxRef) import Sample.Shared ( - agoraScripts, fromDiscrete, governor, minAda, proposalPolicySymbol, + proposalValidator, proposalValidatorHash, stakeAssetClass, + stakeValidator, stakeValidatorHash, ) import Test.Specification ( @@ -333,7 +333,7 @@ mkTestTree name ps val = testValidator val.forProposalValidator "proposal" - agoraScripts.compiledProposalValidator + proposalValidator (mkProposalInputDatum ps) proposalRedeemer (spend proposalRef) @@ -342,7 +342,7 @@ mkTestTree name ps val = testValidator val.forStakeValidator "stake" - agoraScripts.compiledStakeValidator + stakeValidator (mkStakeInputDatum ps) stakeRedeemer (spend stakeRef) diff --git a/agora-specs/Sample/Proposal/Create.hs b/agora-specs/Sample/Proposal/Create.hs index 07922af..78b2b49 100644 --- a/agora-specs/Sample/Proposal/Create.hs +++ b/agora-specs/Sample/Proposal/Create.hs @@ -39,7 +39,6 @@ import Agora.Proposal.Time ( ProposalStartingTime (..), ) import Agora.SafeMoney (GTTag) -import Agora.Scripts (AgoraScripts (..)) import Agora.Stake ( ProposalLock (..), StakeDatum (..), @@ -72,18 +71,20 @@ import PlutusLedgerApi.V2 ( ) import Sample.Proposal.Shared (stakeTxRef) import Sample.Shared ( - agoraScripts, fromDiscrete, govAssetClass, + govValidator, govValidatorHash, governor, minAda, + proposalPolicy, proposalPolicySymbol, proposalStartingTimeFromTimeRange, proposalValidatorHash, signer, signer2, stakeAssetClass, + stakeValidator, stakeValidatorHash, ) import Test.Specification (SpecificationTree, group, testPolicy, testValidator) @@ -457,7 +458,7 @@ mkTestTree testPolicy validForProposalPolicy "proposal" - agoraScripts.compiledProposalPolicy + proposalPolicy proposalPolicyRedeemer (mint proposalPolicySymbol) @@ -465,7 +466,7 @@ mkTestTree testValidator validForGovernorValidator "governor" - agoraScripts.compiledGovernorValidator + govValidator governorInputDatum governorRedeemer (spend governorRef) @@ -474,7 +475,7 @@ mkTestTree testValidator validForStakeValidator "stake" - agoraScripts.compiledStakeValidator + stakeValidator (mkStakeInputDatum ps) stakeRedeemer (spend stakeRef) diff --git a/agora-specs/Sample/Proposal/Unlock.hs b/agora-specs/Sample/Proposal/Unlock.hs index 71bdf16..02f5312 100644 --- a/agora-specs/Sample/Proposal/Unlock.hs +++ b/agora-specs/Sample/Proposal/Unlock.hs @@ -41,7 +41,6 @@ import Agora.Proposal ( ResultTag (..), ) import Agora.Proposal.Time (ProposalStartingTime (ProposalStartingTime), ProposalTimingConfig (..)) -import Agora.Scripts (AgoraScripts (..)) import Agora.Stake ( ProposalLock (..), StakeDatum (..), @@ -72,12 +71,13 @@ import PlutusLedgerApi.V2 ( ) import Sample.Proposal.Shared (stakeTxRef) import Sample.Shared ( - agoraScripts, governor, minAda, proposalPolicySymbol, + proposalValidator, proposalValidatorHash, stakeAssetClass, + stakeValidator, stakeValidatorHash, ) import Test.Specification (SpecificationTree, group, testValidator) @@ -379,7 +379,7 @@ mkTestTree name ps val = group name [stake, proposal] testValidator val.forStakeValidator "stake" - agoraScripts.compiledStakeValidator + stakeValidator (mkStakeInputDatum ps.stakeParameters) stakeRedeemer (spend $ mkStakeRef 1) @@ -388,7 +388,7 @@ mkTestTree name ps val = group name [stake, proposal] testValidator val.forProposalValidator "proposal" - agoraScripts.compiledProposalValidator + proposalValidator (mkProposalInputDatum ps.stakeParameters ps.proposalParameters) proposalRedeemer (spend proposalRef) diff --git a/agora-specs/Sample/Proposal/Vote.hs b/agora-specs/Sample/Proposal/Vote.hs index 7aecebd..69dc337 100644 --- a/agora-specs/Sample/Proposal/Vote.hs +++ b/agora-specs/Sample/Proposal/Vote.hs @@ -42,7 +42,6 @@ import Agora.Proposal.Time ( ProposalStartingTime (ProposalStartingTime), ProposalTimingConfig (draftTime, votingTime), ) -import Agora.Scripts (AgoraScripts (..)) import Agora.Stake ( ProposalLock (Voted), StakeDatum (..), @@ -70,12 +69,13 @@ import PlutusLedgerApi.V2 (Credential (PubKeyCredential), PubKeyHash) import PlutusLedgerApi.V2.Contexts (TxOutRef (TxOutRef)) import Sample.Proposal.Shared (proposalTxRef) import Sample.Shared ( - agoraScripts, governor, minAda, proposalPolicySymbol, + proposalValidator, proposalValidatorHash, stakeAssetClass, + stakeValidator, stakeValidatorHash, ) import Test.Specification (SpecificationTree, group, testValidator) @@ -385,7 +385,7 @@ mkTestTree name ps val = group name $ catMaybes [proposal, stake] testValidator val.forProposalValidator "proposal" - agoraScripts.compiledProposalValidator + proposalValidator proposalInputDatum (mkProposalRedeemer ps.voteParameters) (spend $ mkProposalRef 1) @@ -399,7 +399,7 @@ mkTestTree name ps val = group name $ catMaybes [proposal, stake] testValidator val.forStakeValidator "stake" - agoraScripts.compiledStakeValidator + stakeValidator (mkStakeInputDatum ps.stakeParameters.stakeInputParameters) (mkStakeRedeemer ps.stakeParameters.stakeOutputParameters) (spend stakeRef) diff --git a/agora-specs/Sample/Shared.hs b/agora-specs/Sample/Shared.hs index 8cbb702..6284d70 100644 --- a/agora-specs/Sample/Shared.hs +++ b/agora-specs/Sample/Shared.hs @@ -13,7 +13,6 @@ module Sample.Shared ( signer2, minAda, deterministicTracingConfing, - mkEffect, mkRedeemer, fromDiscrete, @@ -24,6 +23,8 @@ module Sample.Shared ( -- ** Stake stakeAssetClass, + stakePolicy, + stakeValidator, stakeValidatorHash, stakeAddress, stakeSymbol, @@ -39,12 +40,15 @@ module Sample.Shared ( gstUTXORef, -- ** Proposal + proposalPolicy, proposalPolicySymbol, + proposalValidator, proposalValidatorHash, proposalValidatorAddress, proposalStartingTimeFromTimeRange, -- ** Authority + authorityTokenPolicy, authorityTokenSymbol, -- ** Treasury @@ -53,42 +57,37 @@ module Sample.Shared ( gatCs, mockTrEffect, mockTrEffectHash, + trValidator, trCredential, wrongEffHash, ) where import Agora.Bootstrap qualified as Bootstrap -import Agora.Effect.NoOp (noOpValidator) import Agora.Governor (Governor (Governor)) +import Agora.Linker (linker) import Agora.Proposal (ProposalThresholds (..)) import Agora.Proposal.Time ( MaxTimeRangeWidth (..), ProposalStartingTime (ProposalStartingTime), ProposalTimingConfig (..), ) -import Agora.Scripts qualified as Scripts -import Agora.Treasury (treasuryValidator) import Agora.Utils ( - CompiledEffect (CompiledEffect), - CompiledMintingPolicy (getCompiledMintingPolicy), - CompiledValidator (getCompiledValidator), validatorHashToTokenName, ) import Data.Coerce (coerce) import Data.Default.Class (Default (..)) +import Data.Map (Map, (!)) import Data.Tagged (Tagged (..)) +import Data.Text (Text) +import Optics (view) import Plutarch (Config (..), TracingMode (DetTracing)) import Plutarch.Api.V2 ( - PValidator, mintingPolicySymbol, - mkValidator, validatorHash, ) import Plutarch.SafeMoney (Discrete (Discrete)) import PlutusLedgerApi.V1.Address (scriptHashAddress) -import PlutusLedgerApi.V1.Contexts (TxOut (..)) -import PlutusLedgerApi.V1.Scripts (Validator, ValidatorHash (..)) -import PlutusLedgerApi.V1.Value (AssetClass, TokenName) +import PlutusLedgerApi.V1.Value (AssetClass (AssetClass), TokenName, Value) import PlutusLedgerApi.V1.Value qualified as Value ( assetClass, singleton, @@ -101,15 +100,26 @@ import PlutusLedgerApi.V2 ( Interval (..), LowerBound (..), MintingPolicy (..), + OutputDatum (NoOutputDatum), POSIXTimeRange, PubKeyHash, Redeemer (..), + Script, ToData (toBuiltinData), + TxOut ( + TxOut, + txOutAddress, + txOutDatum, + txOutReferenceScript, + txOutValue + ), TxOutRef (TxOutRef), UpperBound (..), - Value, + Validator (Validator), + ValidatorHash (ValidatorHash), ) import PlutusTx qualified +import ScriptExport.ScriptInfo (runLinker) -- Plutarch compiler configauration. -- TODO: add the ability to change this value. Maybe wrap everything in a @@ -128,17 +138,31 @@ governor = Governor oref gt mc "LQ" mc = 20 -agoraScripts :: Scripts.AgoraScripts -agoraScripts = Bootstrap.agoraScripts deterministicTracingConfing governor +agoraScripts :: Map Text Script +agoraScripts = + either + (error . show) + (view #scripts) + ( runLinker + linker + (Bootstrap.agoraScripts deterministicTracingConfing) + governor + ) + +stakePolicy :: MintingPolicy +stakePolicy = MintingPolicy $ agoraScripts ! "agora:stakePolicy" stakeSymbol :: CurrencySymbol -stakeSymbol = Scripts.stakeSTSymbol agoraScripts +stakeSymbol = mintingPolicySymbol stakePolicy stakeAssetClass :: AssetClass -stakeAssetClass = Scripts.stakeSTAssetClass agoraScripts +stakeAssetClass = AssetClass (stakeSymbol, validatorHashToTokenName stakeValidatorHash) + +stakeValidator :: Validator +stakeValidator = Validator $ agoraScripts ! "agora:stakeValidator" stakeValidatorHash :: ValidatorHash -stakeValidatorHash = Scripts.stakeValidatorHash agoraScripts +stakeValidatorHash = validatorHash stakeValidator stakeAddress :: Address stakeAddress = Address (ScriptCredential stakeValidatorHash) Nothing @@ -147,25 +171,28 @@ gstUTXORef :: TxOutRef gstUTXORef = TxOutRef "f28cd7145c24e66fd5bcd2796837aeb19a48a2656e7833c88c62a2d0450bd00d" 0 govPolicy :: MintingPolicy -govPolicy = agoraScripts.compiledGovernorPolicy.getCompiledMintingPolicy +govPolicy = MintingPolicy $ agoraScripts ! "agora:governorPolicy" govValidator :: Validator -govValidator = agoraScripts.compiledGovernorValidator.getCompiledValidator +govValidator = Validator $ agoraScripts ! "agora:governorValidator" govSymbol :: CurrencySymbol govSymbol = mintingPolicySymbol govPolicy govAssetClass :: AssetClass -govAssetClass = Scripts.governorSTAssetClass agoraScripts +govAssetClass = AssetClass (govSymbol, "") govValidatorHash :: ValidatorHash -govValidatorHash = Scripts.governorValidatorHash agoraScripts +govValidatorHash = validatorHash govValidator govValidatorAddress :: Address govValidatorAddress = scriptHashAddress govValidatorHash +proposalPolicy :: MintingPolicy +proposalPolicy = MintingPolicy $ agoraScripts ! "agora:proposalPolicy" + proposalPolicySymbol :: CurrencySymbol -proposalPolicySymbol = Scripts.proposalSTSymbol agoraScripts +proposalPolicySymbol = mintingPolicySymbol proposalPolicy -- | A sample 'PubKeyHash'. signer :: PubKeyHash @@ -175,8 +202,11 @@ signer = "8a30896c4fd5e79843e4ca1bd2cdbaa36f8c0bc3be7401214142019c" signer2 :: PubKeyHash signer2 = "8a30896c4fd5e79843e4ca1bd2cdbaa36f8c0bc3be74012141420192" +proposalValidator :: Validator +proposalValidator = Validator $ agoraScripts ! "agora:proposalValidator" + proposalValidatorHash :: ValidatorHash -proposalValidatorHash = Scripts.proposalValidatoHash agoraScripts +proposalValidatorHash = validatorHash proposalValidator proposalValidatorAddress :: Address proposalValidatorAddress = scriptHashAddress proposalValidatorHash @@ -194,8 +224,11 @@ instance Default ProposalThresholds where , cosign = Tagged 100 } +authorityTokenPolicy :: MintingPolicy +authorityTokenPolicy = MintingPolicy $ agoraScripts ! "agora:authorityTokenPolicy" + authorityTokenSymbol :: CurrencySymbol -authorityTokenSymbol = Scripts.authorityTokenSymbol agoraScripts +authorityTokenSymbol = mintingPolicySymbol authorityTokenPolicy {- | Default value of 'Agora.Governor.GovernorDatum.proposalTimings'. For testing purpose only. @@ -224,9 +257,6 @@ proposalStartingTimeFromTimeRange ProposalStartingTime $ (l + u) `div` 2 proposalStartingTimeFromTimeRange _ = error "Given time range should be finite and closed" -mkEffect :: (PlutusTx.ToData datum) => ClosedTerm PValidator -> CompiledEffect datum -mkEffect v = CompiledEffect $ mkValidator deterministicTracingConfing v - mkRedeemer :: forall redeemer. PlutusTx.ToData redeemer => redeemer -> Redeemer mkRedeemer = Redeemer . toBuiltinData @@ -240,17 +270,18 @@ treasuryOut = TxOut { txOutAddress = Address trCredential Nothing , txOutValue = minAda - , txOutDatumHash = Nothing + , txOutDatum = NoOutputDatum + , txOutReferenceScript = Nothing } {- | Arbitrary 'CurrencySymbol', representing the 'CurrencySymbol' of a valid governance authority token (GAT). -} gatCs :: CurrencySymbol -gatCs = "73475cb40a568e8da8a045ced110137e159f890ac4da883b6b17dc651b3a8049" +gatCs = authorityTokenSymbol trValidator :: Validator -trValidator = mkValidator def (treasuryValidator gatCs) +trValidator = Validator $ agoraScripts ! "agora:treasuryValidator" -- | `ScriptCredential` used for the dummy treasury validator. trCredential :: Credential @@ -262,7 +293,7 @@ gatTn = validatorHashToTokenName $ validatorHash mockTrEffect -- | Mock treasury effect script, used for testing. mockTrEffect :: Validator -mockTrEffect = mkValidator def $ noOpValidator gatCs +mockTrEffect = Validator $ agoraScripts ! "agora:noOpValidator" -- | Mock treasury effect validator hash mockTrEffectHash :: ValidatorHash diff --git a/agora-specs/Sample/Stake/SetDelegate.hs b/agora-specs/Sample/Stake/SetDelegate.hs index c8e7f54..9b8de02 100644 --- a/agora-specs/Sample/Stake/SetDelegate.hs +++ b/agora-specs/Sample/Stake/SetDelegate.hs @@ -20,7 +20,6 @@ module Sample.Stake.SetDelegate ( ) where import Agora.Governor (Governor (gtClassRef)) -import Agora.Scripts (AgoraScripts (..)) import Agora.Stake ( StakeDatum (..), StakeRedeemer (ClearDelegate, DelegateTo), @@ -47,13 +46,13 @@ import PlutusLedgerApi.V2 ( TxOutRef (TxOutRef), ) import Sample.Shared ( - agoraScripts, fromDiscrete, governor, minAda, signer, signer2, stakeAssetClass, + stakeValidator, stakeValidatorHash, ) import Test.Specification (SpecificationTree, testValidator) @@ -159,7 +158,7 @@ mkTestCase name ps valid = testValidator valid name - agoraScripts.compiledStakeValidator + stakeValidator (mkStakeInputDatum ps) (mkStakeRedeemer ps) (setDelegate ps) diff --git a/agora-specs/Spec/Effect/GovernorMutation.hs b/agora-specs/Spec/Effect/GovernorMutation.hs index 27645ee..b367f8c 100644 --- a/agora-specs/Spec/Effect/GovernorMutation.hs +++ b/agora-specs/Spec/Effect/GovernorMutation.hs @@ -1,20 +1,19 @@ module Spec.Effect.GovernorMutation (specs) where -import Agora.Effect.GovernorMutation (mutateGovernorValidator) import Agora.Governor (GovernorDatum (..), GovernorRedeemer (MutateGovernor)) import Agora.Proposal (ProposalId (..)) -import Agora.Scripts (AgoraScripts (..)) import Data.Default.Class (Default (def)) import PlutusLedgerApi.V2 (ScriptContext (ScriptContext), ScriptPurpose (Spending)) import Sample.Effect.GovernorMutation ( effectRef, + effectValidator, govRef, invalidNewGovernorDatum, mkEffectDatum, mkEffectTxInfo, validNewGovernorDatum, ) -import Sample.Shared (agoraScripts, mkEffect) +import Sample.Shared (govValidator) import Test.Specification ( SpecificationTree, effectFailsWith, @@ -32,7 +31,7 @@ specs = "valid new governor datum" [ validatorSucceedsWith "governor validator should pass" - agoraScripts.compiledGovernorValidator + govValidator ( GovernorDatum def (ProposalId 0) @@ -47,7 +46,7 @@ specs = ) , effectSucceedsWith "effect validator should pass" - (mkEffect $ mutateGovernorValidator agoraScripts) + effectValidator (mkEffectDatum validNewGovernorDatum) (ScriptContext (mkEffectTxInfo validNewGovernorDatum) (Spending effectRef)) ] @@ -55,7 +54,7 @@ specs = "invalid new governor datum" [ validatorFailsWith "governor validator should fail" - agoraScripts.compiledGovernorValidator + govValidator ( GovernorDatum def (ProposalId 0) @@ -70,7 +69,7 @@ specs = ) , effectFailsWith "effect validator should fail" - (mkEffect $ mutateGovernorValidator agoraScripts) + effectValidator (mkEffectDatum validNewGovernorDatum) (ScriptContext (mkEffectTxInfo invalidNewGovernorDatum) (Spending effectRef)) ] diff --git a/agora-specs/Spec/Effect/TreasuryWithdrawal.hs b/agora-specs/Spec/Effect/TreasuryWithdrawal.hs index 984a49c..9dc5956 100644 --- a/agora-specs/Spec/Effect/TreasuryWithdrawal.hs +++ b/agora-specs/Spec/Effect/TreasuryWithdrawal.hs @@ -9,13 +9,11 @@ module Spec.Effect.TreasuryWithdrawal (specs) where import Agora.Effect.TreasuryWithdrawal ( TreasuryWithdrawalDatum (TreasuryWithdrawalDatum), - treasuryWithdrawalValidator, ) import PlutusLedgerApi.V1.Value qualified as Value import Sample.Effect.TreasuryWithdrawal ( buildReceiversOutputFromDatum, buildScriptContext, - currSymbol, inputCollateral, inputGAT, inputTreasury, @@ -24,8 +22,8 @@ import Sample.Effect.TreasuryWithdrawal ( outputUser, treasuries, users, + validator, ) -import Sample.Shared (mkEffect) import Test.Specification ( SpecificationTree, effectFailsWith, @@ -40,7 +38,7 @@ specs = "effect" [ effectSucceedsWith "Simple" - (mkEffect $ treasuryWithdrawalValidator currSymbol) + validator datum1 ( buildScriptContext [ inputGAT @@ -52,7 +50,7 @@ specs = ) , effectSucceedsWith "Simple with multiple treasuries " - (mkEffect $ treasuryWithdrawalValidator currSymbol) + validator datum1 ( buildScriptContext [ inputGAT @@ -69,7 +67,7 @@ specs = ) , effectSucceedsWith "Mixed Assets" - (mkEffect $ treasuryWithdrawalValidator currSymbol) + validator datum2 ( buildScriptContext [ inputGAT @@ -84,7 +82,7 @@ specs = ) , effectFailsWith "Pay to uknown 3rd party" - (mkEffect $ treasuryWithdrawalValidator currSymbol) + validator datum2 ( buildScriptContext [ inputGAT @@ -100,7 +98,7 @@ specs = ) , effectFailsWith "Missing receiver" - (mkEffect $ treasuryWithdrawalValidator currSymbol) + validator datum2 ( buildScriptContext [ inputGAT @@ -115,7 +113,7 @@ specs = ) , effectFailsWith "Unauthorized treasury" - (mkEffect $ treasuryWithdrawalValidator currSymbol) + validator datum3 ( buildScriptContext [ inputGAT @@ -127,7 +125,7 @@ specs = ) , effectFailsWith "Prevent transactions besides the withdrawal" - (mkEffect $ treasuryWithdrawalValidator currSymbol) + validator datum3 ( buildScriptContext [ inputGAT diff --git a/agora-specs/Spec/Stake.hs b/agora-specs/Spec/Stake.hs index ec22daa..7e62929 100644 --- a/agora-specs/Spec/Stake.hs +++ b/agora-specs/Spec/Stake.hs @@ -9,7 +9,6 @@ Tests for Stake policy and validator -} module Spec.Stake (specs) where -import Agora.Scripts (AgoraScripts (..)) import Agora.Stake ( StakeDatum (StakeDatum), StakeRedeemer (DepositWithdraw), @@ -17,7 +16,7 @@ import Agora.Stake ( import Data.Bool (Bool (..)) import Data.Maybe (Maybe (..)) import PlutusLedgerApi.V1 (Credential (PubKeyCredential)) -import Sample.Shared (agoraScripts) +import Sample.Shared (stakePolicy, stakeValidator) import Sample.Stake ( DepositWithdrawExample ( DepositWithdrawExample, @@ -50,17 +49,17 @@ specs = "policy" [ policySucceedsWith "stakeCreation" - agoraScripts.compiledStakePolicy + stakePolicy () Stake.stakeCreation , policyFailsWith "stakeCreationWrongDatum" - agoraScripts.compiledStakePolicy + stakePolicy () Stake.stakeCreationWrongDatum , policyFailsWith "stakeCreationUnsigned" - agoraScripts.compiledStakePolicy + stakePolicy () Stake.stakeCreationUnsigned ] @@ -68,19 +67,19 @@ specs = "validator" [ validatorSucceedsWith "stakeDepositWithdraw deposit" - agoraScripts.compiledStakeValidator + stakeValidator (StakeDatum 100_000 (PubKeyCredential signer) Nothing []) (DepositWithdraw 100_000) (Stake.stakeDepositWithdraw $ DepositWithdrawExample {startAmount = 100_000, delta = 100_000}) , validatorSucceedsWith "stakeDepositWithdraw withdraw" - agoraScripts.compiledStakeValidator + stakeValidator (StakeDatum 100_000 (PubKeyCredential signer) Nothing []) (DepositWithdraw $ negate 100_000) (Stake.stakeDepositWithdraw $ DepositWithdrawExample {startAmount = 100_000, delta = negate 100_000}) , validatorFailsWith "stakeDepositWithdraw negative GT" - agoraScripts.compiledStakeValidator + stakeValidator (StakeDatum 100_000 (PubKeyCredential signer) Nothing []) (DepositWithdraw 1_000_000) (Stake.stakeDepositWithdraw $ DepositWithdrawExample {startAmount = 100_000, delta = negate 1_000_000}) diff --git a/agora-specs/Spec/Treasury.hs b/agora-specs/Spec/Treasury.hs index a76cd0b..f840757 100644 --- a/agora-specs/Spec/Treasury.hs +++ b/agora-specs/Spec/Treasury.hs @@ -21,22 +21,17 @@ Tests need to fail when: -} module Spec.Treasury (specs) where -import Agora.Treasury ( - treasuryValidator, - ) -import Agora.Utils (CompiledValidator (CompiledValidator)) -import Plutarch.Api.V2 (mkValidator) import PlutusLedgerApi.V1.Credential ( StakingCredential (StakingHash), ) import PlutusLedgerApi.V1.Value qualified as Value (singleton) -import PlutusLedgerApi.V2 (DCert (DCertDelegRegKey)) +import PlutusLedgerApi.V2 (DCert (DCertDelegRegKey), Validator) import PlutusLedgerApi.V2.Contexts ( ScriptContext (scriptContextPurpose, scriptContextTxInfo), ScriptPurpose (Certifying, Minting, Rewarding), TxInfo (txInfoInputs, txInfoMint), ) -import Sample.Shared (deterministicTracingConfing, trCredential) +import Sample.Shared (trCredential, trValidator) import Sample.Treasury ( gatCs, gatTn, @@ -51,11 +46,8 @@ import Test.Specification ( validatorSucceedsWith, ) -compiledTreasuryValidator :: CompiledValidator () () -compiledTreasuryValidator = - CompiledValidator $ - mkValidator deterministicTracingConfing $ - treasuryValidator gatCs +compiledTreasuryValidator :: Validator +compiledTreasuryValidator = trValidator specs :: [SpecificationTree] specs = diff --git a/agora-testlib/Test/Specification.hs b/agora-testlib/Test/Specification.hs index f74ed66..1ba300e 100644 --- a/agora-testlib/Test/Specification.hs +++ b/agora-testlib/Test/Specification.hs @@ -49,26 +49,23 @@ module Test.Specification ( toTestTree, ) where -import Agora.Utils ( - CompiledEffect (..), - CompiledMintingPolicy (..), - CompiledValidator (..), - ) import Control.Composition ((.**), (.***)) import Data.Coerce (coerce) import Data.Text qualified as Text import Plutarch.Evaluate (evalScript) import PlutusLedgerApi.V1.Scripts ( - Context (..), + Context (Context), applyMintingPolicyScript, applyValidator, ) import PlutusLedgerApi.V2 ( Datum (..), + MintingPolicy, Redeemer (Redeemer), Script, ScriptContext, ToData (toBuiltinData), + Validator, ) import PlutusTx.IsData qualified as PlutusTx (ToData) import Test.Tasty (TestTree, testGroup) @@ -191,21 +188,21 @@ mkDatum = Datum . toBuiltinData applyMintingPolicy' :: (PlutusTx.ToData redeemer) => - CompiledMintingPolicy redeemer -> + MintingPolicy -> redeemer -> ScriptContext -> Script applyMintingPolicy' policy redeemer scriptContext = applyMintingPolicyScript (mkContext scriptContext) - policy.getCompiledMintingPolicy + policy (mkRedeemer redeemer) applyValidator' :: ( PlutusTx.ToData datum , PlutusTx.ToData redeemer ) => - CompiledValidator datum redeemer -> + Validator -> datum -> redeemer -> ScriptContext -> @@ -213,7 +210,7 @@ applyValidator' :: applyValidator' validator datum redeemer scriptContext = applyValidator (mkContext scriptContext) - validator.getCompiledValidator + validator (mkDatum datum) (mkRedeemer redeemer) @@ -221,7 +218,7 @@ applyValidator' validator datum redeemer scriptContext = policySucceedsWith :: (PlutusTx.ToData redeemer) => String -> - CompiledMintingPolicy redeemer -> + MintingPolicy -> redeemer -> ScriptContext -> SpecificationTree @@ -232,7 +229,7 @@ policySucceedsWith tag = policyFailsWith :: (PlutusTx.ToData redeemer) => String -> - CompiledMintingPolicy redeemer -> + MintingPolicy -> redeemer -> ScriptContext -> SpecificationTree @@ -245,7 +242,7 @@ validatorSucceedsWith :: , PlutusTx.ToData redeemer ) => String -> - CompiledValidator datum redeemer -> + Validator -> datum -> redeemer -> ScriptContext -> @@ -259,7 +256,7 @@ validatorFailsWith :: , PlutusTx.ToData redeemer ) => String -> - CompiledValidator datum redeemer -> + Validator -> datum -> redeemer -> ScriptContext -> @@ -272,7 +269,7 @@ effectSucceedsWith :: ( PlutusTx.ToData datum ) => String -> - CompiledEffect datum -> + Validator -> datum -> ScriptContext -> SpecificationTree @@ -283,7 +280,7 @@ effectFailsWith :: ( PlutusTx.ToData datum ) => String -> - CompiledEffect datum -> + Validator -> datum -> ScriptContext -> SpecificationTree @@ -296,7 +293,7 @@ testValidator :: -- | Is this test case expected to succeed? Bool -> String -> - CompiledValidator datum redeemer -> + Validator -> datum -> redeemer -> ScriptContext -> @@ -313,7 +310,7 @@ testPolicy :: -- | Is this test case expected to succeed? Bool -> String -> - CompiledMintingPolicy redeemer -> + MintingPolicy -> redeemer -> ScriptContext -> SpecificationTree diff --git a/agora.cabal b/agora.cabal index 717cf1c..9c89711 100644 --- a/agora.cabal +++ b/agora.cabal @@ -18,10 +18,6 @@ common lang -Wmissing-deriving-strategies -Wno-name-shadowing -Wunused-foralls -fprint-explicit-foralls -fprint-explicit-kinds -Wunused-do-bind - mixins: - base hiding (Prelude), - pprelude (PPrelude as Prelude) - default-extensions: NoStarIsType BangPatterns @@ -90,7 +86,7 @@ common deps build-depends: , aeson , ansi-terminal - , base >=4.14 && <5 + , base >=4.14 && <5 , base-compat , base16 , bytestring @@ -100,16 +96,20 @@ common deps , containers , data-default , data-default-class + , filepath , generics-sop , liqwid-plutarch-extra + , liqwid-script-export + , optics , plutarch , plutarch-extra , plutarch-numeric , plutarch-safe-money - , plutarch-script-export , plutus-core , plutus-ledger-api , plutus-tx + , ply-core + , ply-plutarch , pprelude , prettyprinter , recursion-schemes @@ -118,7 +118,10 @@ common deps , template-haskell , text +common plutarch-prelude mixins: + base hiding (Prelude), + pprelude (PPrelude as Prelude) common test-deps build-depends: @@ -142,7 +145,7 @@ common exe-opts ghc-options: -threaded -rtsopts -with-rtsopts=-N -O0 library - import: lang, deps + import: lang, deps, plutarch-prelude exposed-modules: Agora.Aeson.Orphans Agora.AuthorityToken @@ -154,12 +157,12 @@ library Agora.Effect.TreasuryWithdrawal Agora.Governor Agora.Governor.Scripts + Agora.Linker Agora.Plutarch.Orphans Agora.Proposal Agora.Proposal.Scripts Agora.Proposal.Time Agora.SafeMoney - Agora.Scripts Agora.Stake Agora.Stake.Redeemers Agora.Stake.Scripts @@ -178,7 +181,7 @@ library pprelude , plutarch library agora-testlib - import: lang, deps, test-deps + import: lang, deps, plutarch-prelude, test-deps exposed-modules: Test.Specification Test.Util @@ -186,7 +189,7 @@ library agora-testlib hs-source-dirs: agora-testlib library agora-specs - import: lang, deps, test-deps + import: lang, deps, plutarch-prelude, test-deps exposed-modules: Property.Generator Property.Governor @@ -217,7 +220,7 @@ library agora-specs build-depends: agora-testlib test-suite agora-test - import: lang, deps, test-deps + import: lang, deps, plutarch-prelude, test-deps type: exitcode-stdio-1.0 main-is: Spec.hs hs-source-dirs: agora-test @@ -226,7 +229,7 @@ test-suite agora-test , agora-testlib benchmark agora-bench - import: lang, deps + import: lang, deps, plutarch-prelude hs-source-dirs: agora-bench main-is: Main.hs other-modules: @@ -248,11 +251,14 @@ executable agora-scripts hs-source-dirs: agora-scripts other-modules: build-depends: + , aeson-pretty , agora , gitrev + mixins: base + executable agora-purescript-bridge - import: lang, deps, exe-opts + import: lang, deps, plutarch-prelude, exe-opts main-is: Bridge.hs hs-source-dirs: agora-purescript-bridge other-modules: diff --git a/agora/Agora/AuthorityToken.hs b/agora/Agora/AuthorityToken.hs index 8c9f4ec..864e172 100644 --- a/agora/Agora/AuthorityToken.hs +++ b/agora/Agora/AuthorityToken.hs @@ -9,7 +9,6 @@ module Agora.AuthorityToken ( authorityTokenPolicy, authorityTokensValidIn, singleAuthorityTokenBurned, - AuthorityToken (..), ) where import Plutarch.Api.V1 ( @@ -29,34 +28,13 @@ import Plutarch.Api.V2 ( PTxInfo (PTxInfo), PTxOut (PTxOut), ) -import Plutarch.Extra.AssetClass (passetClass, passetClassValueOf) +import Plutarch.Extra.AssetClass (PAssetClass, passetClass, passetClassValueOf) import "liqwid-plutarch-extra" Plutarch.Extra.List (plookupAssoc) import Plutarch.Extra.ScriptContext (pisTokenSpent) import Plutarch.Extra.Sum (PSum (PSum)) import "liqwid-plutarch-extra" Plutarch.Extra.TermCont (pguardC, pletC, pletFieldsC, pmatchC) import Plutarch.Extra.Traversable (pfoldMap) import Plutarch.Extra.Value (psymbolValueOf) -import PlutusLedgerApi.V1.Value (AssetClass (AssetClass)) - --------------------------------------------------------------------------------- - -{- | An AuthorityToken represents a proof that a particular token - spent in the same transaction the AuthorityToken was minted. - In effect, this means that the validator that locked such a token - must have approved the transaction in which an AuthorityToken is minted. - Said validator should be made aware of an AuthorityToken token's existence - in order to prevent incorrect minting. - - @since 0.1.0 --} -newtype AuthorityToken = AuthorityToken - { authority :: AssetClass - -- ^ Token that must move in order for minting this to be valid. - } - deriving stock - ( -- | @since 0.1.0 - Generic - ) -------------------------------------------------------------------------------- @@ -72,7 +50,7 @@ newtype AuthorityToken = AuthorityToken As of version 1.0.0, this has been weakened in order to be compatible with RATs. - @since 0.1.0 + @since 1.0.0 -} authorityTokensValidIn :: forall (s :: S). Term s (PCurrencySymbol :--> PTxOut :--> PBool) authorityTokensValidIn = phoistAcyclic $ @@ -143,20 +121,27 @@ singleAuthorityTokenBurned gatCs inputs mint = unTermCont $ do {- | Policy given 'AuthorityToken' params. + == Authority Token + + An AuthorityToken represents a proof that a particular token + spent in the same transaction the AuthorityToken was minted. + In effect, this means that the validator that locked such a token + must have approved the transaction in which an AuthorityToken is minted. + Said validator should be made aware of an AuthorityToken token's existence + in order to prevent incorrect minting. + @since 0.1.0 -} -authorityTokenPolicy :: AuthorityToken -> ClosedTerm PMintingPolicy -authorityTokenPolicy params = - plam $ \_redeemer ctx' -> +authorityTokenPolicy :: ClosedTerm (PAssetClass :--> PMintingPolicy) +authorityTokenPolicy = + plam $ \atAssetClass _redeemer ctx' -> pmatch ctx' $ \(PScriptContext ctx') -> unTermCont $ do ctx <- pletFieldsC @'["txInfo", "purpose"] ctx' PTxInfo txInfo' <- pmatchC $ pfromData ctx.txInfo txInfo <- pletFieldsC @'["inputs", "mint", "outputs"] txInfo' let inputs = txInfo.inputs mintedValue = pfromData txInfo.mint - AssetClass (govCs, govTn) = params.authority - govAc = passetClass # pconstant govCs # pconstant govTn - govTokenSpent = pisTokenSpent # govAc # inputs + govTokenSpent = pisTokenSpent # atAssetClass # inputs PMinting ownSymbol' <- pmatchC $ pfromData ctx.purpose diff --git a/agora/Agora/Bootstrap.hs b/agora/Agora/Bootstrap.hs index 152a128..b411a6b 100644 --- a/agora/Agora/Bootstrap.hs +++ b/agora/Agora/Bootstrap.hs @@ -6,66 +6,52 @@ -} module Agora.Bootstrap (agoraScripts) where -import Agora.AuthorityToken (AuthorityToken (AuthorityToken), authorityTokenPolicy) +import Agora.AuthorityToken (authorityTokenPolicy) +import Agora.Effect.GovernorMutation (mutateGovernorValidator) +import Agora.Effect.NoOp (noOpValidator) import Agora.Effect.TreasuryWithdrawal (treasuryWithdrawalValidator) -import Agora.Governor (Governor, gstOutRef, gtClassRef, maximumCosigners) import Agora.Governor.Scripts (governorPolicy, governorValidator) import Agora.Proposal.Scripts (proposalPolicy, proposalValidator) -import Agora.Scripts (AgoraScripts (AgoraScripts)) -import Agora.Scripts qualified as Scripts import Agora.Stake.Scripts (stakePolicy, stakeValidator) import Agora.Treasury (treasuryValidator) -import Agora.Utils ( - CompiledMintingPolicy (CompiledMintingPolicy), - CompiledValidator (CompiledValidator), - ) +import Data.Map (fromList) +import Data.Text (Text, unpack) import Plutarch (Config) -import Plutarch.Api.V2 ( - mintingPolicySymbol, - mkMintingPolicy, - mkValidator, - ) -import PlutusLedgerApi.V1.Value (AssetClass (AssetClass)) +import Plutarch.Extra.AssetClass (PAssetClass) +import PlutusLedgerApi.V1.Value (AssetClass) +import Ply (TypedScriptEnvelope) +import Ply.Plutarch.Class (PlyArgOf) +import Ply.Plutarch.TypedWriter (TypedWriter, mkEnvelope) +import ScriptExport.ScriptInfo (RawScriptExport (..)) -{- | Parameterize and precompiled core scripts, given the - 'Agora.Governor.Governor' parameters and plutarch configurations. +type instance PlyArgOf PAssetClass = AssetClass - @since 0.2.0 +{- | Parameterize core scripts, given the 'Agora.Governor.Governor' + parameters and plutarch configurations. + + @since 1.0.0 -} -agoraScripts :: Config -> Governor -> AgoraScripts -agoraScripts conf gov = scripts +agoraScripts :: Config -> RawScriptExport +agoraScripts conf = + RawScriptExport $ + fromList + [ envelope "agora:governorPolicy" governorPolicy + , envelope "agora:governorValidator" governorValidator + , envelope "agora:stakePolicy" stakePolicy + , envelope "agora:stakeValidator" stakeValidator + , envelope "agora:proposalPolicy" proposalPolicy + , envelope "agora:proposalValidator" proposalValidator + , envelope "agora:treasuryValidator" treasuryValidator + , envelope "agora:authorityTokenPolicy" authorityTokenPolicy + , envelope "agora:noOpValidator" noOpValidator + , envelope "agora:treasuryWithdrawalValidator" treasuryWithdrawalValidator + , envelope "agora:mutateGovernorValidator" mutateGovernorValidator + ] where - mkMintingPolicy' = mkMintingPolicy conf - mkValidator' = mkValidator conf - - compiledGovernorPolicy = mkMintingPolicy' $ governorPolicy gov.gstOutRef - compiledGovernorValidator = mkValidator' $ governorValidator scripts - governorSymbol = mintingPolicySymbol compiledGovernorPolicy - governorAssetClass = AssetClass (governorSymbol, "") - - authority = AuthorityToken governorAssetClass - compiledAuthorityPolicy = mkMintingPolicy' $ authorityTokenPolicy authority - authorityTokenSymbol = mintingPolicySymbol compiledAuthorityPolicy - - compiledProposalPolicy = mkMintingPolicy' $ proposalPolicy governorAssetClass - compiledProposalValidator = mkValidator' $ proposalValidator scripts gov.maximumCosigners - - compiledStakePolicy = mkMintingPolicy' $ stakePolicy gov.gtClassRef - compiledStakeValidator = mkValidator' $ stakeValidator scripts gov.gtClassRef - - compiledTreasuryValidator = mkValidator' $ treasuryValidator authorityTokenSymbol - - compiledTreasuryWithdrawalEffect = mkValidator' $ treasuryWithdrawalValidator authorityTokenSymbol - - scripts = - AgoraScripts - { Scripts.compiledGovernorPolicy = CompiledMintingPolicy compiledGovernorPolicy - , Scripts.compiledGovernorValidator = CompiledValidator compiledGovernorValidator - , Scripts.compiledStakePolicy = CompiledMintingPolicy compiledStakePolicy - , Scripts.compiledStakeValidator = CompiledValidator compiledStakeValidator - , Scripts.compiledProposalPolicy = CompiledMintingPolicy compiledProposalPolicy - , Scripts.compiledProposalValidator = CompiledValidator compiledProposalValidator - , Scripts.compiledTreasuryValidator = CompiledValidator compiledTreasuryValidator - , Scripts.compiledAuthorityTokenPolicy = CompiledMintingPolicy compiledAuthorityPolicy - , Scripts.compiledTreasuryWithdrawalEffect = CompiledValidator compiledTreasuryWithdrawalEffect - } + envelope :: + forall (pt :: S -> Type). + TypedWriter pt => + Text -> + ClosedTerm pt -> + (Text, TypedScriptEnvelope) + envelope d t = (d, either (error . unpack) id $ mkEnvelope conf d t) diff --git a/agora/Agora/Effect.hs b/agora/Agora/Effect.hs index 70b2c7f..0bd0a5c 100644 --- a/agora/Agora/Effect.hs +++ b/agora/Agora/Effect.hs @@ -18,8 +18,6 @@ import Plutarch.Api.V2 ( PValidator, ) import "liqwid-plutarch-extra" Plutarch.Extra.TermCont (pguardC, pletC, pletFieldsC, pmatchC, ptryFromC) -import Plutarch.TryFrom () -import PlutusLedgerApi.V1.Value (CurrencySymbol) {- | Helper "template" for creating effect validator. @@ -27,21 +25,20 @@ import PlutusLedgerApi.V1.Value (CurrencySymbol) an effect is implemented. In such situations, it's okay to not use this helper. - @since 0.1.0 + @since 1.0.0 -} makeEffect :: - forall (datum :: PType). + forall (datum :: PType) (s :: S). (PTryFrom PData datum, PIsData datum) => - CurrencySymbol -> - ( forall (s :: S). - Term s PCurrencySymbol -> + ( Term s PCurrencySymbol -> Term s datum -> Term s PTxOutRef -> Term s (PAsData PTxInfo) -> Term s POpaque ) -> - ClosedTerm PValidator -makeEffect gatCs' f = + Term s PCurrencySymbol -> + Term s PValidator +makeEffect f atSymbol = plam $ \datum _redeemer ctx' -> unTermCont $ do ctx <- pletFieldsC @'["txInfo", "purpose"] ctx' @@ -64,10 +61,9 @@ makeEffect gatCs' f = txOutRef' <- pletC (pfield @"_0" # txOutRef) txInfo <- pletFieldsC @'["mint", "inputs"] ctx.txInfo - gatCs <- pletC $ pconstant gatCs' pguardC "A single authority token has been burned" $ - singleAuthorityTokenBurned gatCs txInfo.inputs txInfo.mint + singleAuthorityTokenBurned atSymbol txInfo.inputs txInfo.mint -- run effect function - pure $ f gatCs datum' txOutRef' ctx.txInfo + pure $ f atSymbol datum' txOutRef' ctx.txInfo diff --git a/agora/Agora/Effect/GovernorMutation.hs b/agora/Agora/Effect/GovernorMutation.hs index 7ca6cbc..195c7f4 100644 --- a/agora/Agora/Effect/GovernorMutation.hs +++ b/agora/Agora/Effect/GovernorMutation.hs @@ -26,8 +26,8 @@ import Agora.Governor ( PGovernorRedeemer, ) import Agora.Plutarch.Orphans () -import Agora.Scripts (AgoraScripts, authorityTokenSymbol, governorSTSymbol, governorValidatorHash) import Agora.Utils (pfromSingleton, ptryFromRedeemer) +import Plutarch.Api.V1 (PCurrencySymbol, PValidatorHash) import Plutarch.Api.V2 ( PScriptPurpose (PSpending), PTxOutRef, @@ -140,85 +140,88 @@ deriving anyclass instance PTryFrom PData PMutateGovernorDatum * It has valid governor state datum. * The datum is exactly the same as the 'newDatum'. - @since 0.1.0 + @since 1.0.0 -} mutateGovernorValidator :: - -- | Lazy precompiled scripts. This is beacuse we need the symbol of GST. - AgoraScripts -> - ClosedTerm PValidator -mutateGovernorValidator as = makeEffect (authorityTokenSymbol as) $ - \_gatCs (effectDatum :: Term _ PMutateGovernorDatum) _ txInfo -> unTermCont $ do - effectDatumF <- pletAllC effectDatum - txInfoF <- pletFieldsC @'["inputs", "outputs", "datums", "redeemers"] txInfo + ClosedTerm + ( PValidatorHash + :--> PCurrencySymbol + :--> PCurrencySymbol + :--> PValidator + ) +mutateGovernorValidator = + plam $ \govValidatorHash gtSymbol -> makeEffect @PMutateGovernorDatum $ + \_gatCs (effectDatum :: Term _ PMutateGovernorDatum) _ txInfo -> unTermCont $ do + effectDatumF <- pletAllC effectDatum + txInfoF <- pletFieldsC @'["inputs", "outputs", "datums", "redeemers"] txInfo - ---------------------------------------------------------------------------- + ---------------------------------------------------------------------------- - scriptInputs <- - pletC $ - pfilter + scriptInputs <- + pletC $ + pfilter + # plam + ( \inInfo -> + pisScriptAddress + #$ pfield @"address" + #$ pfield @"resolved" # inInfo + ) + # pfromData txInfoF.inputs + + -- Only two script inputs are alloed: one from the effect script, another from the governor. + pguardC "Only self and governor script inputs are allowed" $ + plength # scriptInputs #== 2 + + pguardC "Governor input should present" $ + pany # plam - ( \inInfo -> - pisScriptAddress - #$ pfield @"address" - #$ pfield @"resolved" # inInfo + ( flip pletAll $ \inputF -> + let governorAddress = + paddressFromValidatorHash + # govValidatorHash + # pdnothing + + isGovernorInput = + foldl1 + (#&&) + [ ptraceIfFalse "Can only modify the pinned governor" $ + inputF.outRef #== effectDatumF.governorRef + , ptraceIfFalse "Governor UTxO should carry GST" $ + psymbolValueOf + # gtSymbol + # (pfield @"value" # inputF.resolved) + #== 1 + , ptraceIfFalse "Governor validator run" $ + pfield @"address" # inputF.resolved + #== governorAddress + ] + in isGovernorInput ) - # pfromData txInfoF.inputs + # scriptInputs - -- Only two script inputs are alloed: one from the effect script, another from the governor. - pguardC "Only self and governor script inputs are allowed" $ - plength # scriptInputs #== 2 + let governorRedeemer = + pfromData $ + passertPJust # "Govenor redeemer should be resolved" + #$ ptryFromRedeemer @(PAsData PGovernorRedeemer) + # mkRecordConstr PSpending (#_0 .= effectDatumF.governorRef) + # txInfoF.redeemers - pguardC "Governor input should present" $ - pany - # plam - ( flip pletAll $ \inputF -> - let gstSymbol = pconstant $ governorSTSymbol as - governorAddress = - paddressFromValidatorHash - # pconstant (governorValidatorHash as) - # pdnothing + pguardC "Spend governor with redeemer MutateGovernor" $ + governorRedeemer #== pconstant MutateGovernor - isGovernorInput = - foldl1 - (#&&) - [ ptraceIfFalse "Can only modify the pinned governor" $ - inputF.outRef #== effectDatumF.governorRef - , ptraceIfFalse "Governor UTxO should carry GST" $ - psymbolValueOf - # gstSymbol - # (pfield @"value" # inputF.resolved) - #== 1 - , ptraceIfFalse "Governor validator run" $ - pfield @"address" # inputF.resolved - #== governorAddress - ] - in isGovernorInput - ) - # scriptInputs + ---------------------------------------------------------------------------- - let governorRedeemer = - pfromData $ - passertPJust # "Govenor redeemer should be resolved" - #$ ptryFromRedeemer @(PAsData PGovernorRedeemer) - # mkRecordConstr PSpending (#_0 .= effectDatumF.governorRef) - # txInfoF.redeemers + let governorOutput = + ptrace "Only governor output is allowed" $ + pfromSingleton # pfromData txInfoF.outputs - pguardC "Spend governor with redeemer MutateGovernor" $ - governorRedeemer #== pconstant MutateGovernor + governorOutputDatum = + ptrace "Resolve governor outoput datum" $ + pfromOutputDatum @PGovernorDatum + # (pfield @"datum" # governorOutput) + # txInfoF.datums - ---------------------------------------------------------------------------- + pguardC "New governor datum correct" $ + governorOutputDatum #== effectDatumF.newDatum - let governorOutput = - ptrace "Only governor output is allowed" $ - pfromSingleton # pfromData txInfoF.outputs - - governorOutputDatum = - ptrace "Resolve governor outoput datum" $ - pfromOutputDatum @PGovernorDatum - # (pfield @"datum" # governorOutput) - # txInfoF.datums - - pguardC "New governor datum correct" $ - governorOutputDatum #== effectDatumF.newDatum - - return $ popaque $ pconstant () + return $ popaque $ pconstant () diff --git a/agora/Agora/Effect/NoOp.hs b/agora/Agora/Effect/NoOp.hs index ac9952d..6b79621 100644 --- a/agora/Agora/Effect/NoOp.hs +++ b/agora/Agora/Effect/NoOp.hs @@ -9,9 +9,9 @@ module Agora.Effect.NoOp (noOpValidator, PNoOp) where import Agora.Effect (makeEffect) import Agora.Plutarch.Orphans () +import Plutarch.Api.V1 (PCurrencySymbol) import Plutarch.Api.V2 (PValidator) import Plutarch.Orphans () -import PlutusLedgerApi.V1.Value (CurrencySymbol) {- | Dummy datum for NoOp effect. @@ -38,8 +38,9 @@ instance PTryFrom PData (PAsData PNoOp) {- | Dummy effect which can only burn its GAT. - @since 0.1.0 + @since 1.0.0 -} -noOpValidator :: CurrencySymbol -> ClosedTerm PValidator -noOpValidator curr = makeEffect curr $ - \_ (_datum :: Term s (PAsData PNoOp)) _ _ -> popaque (pconstant ()) +noOpValidator :: ClosedTerm (PCurrencySymbol :--> PValidator) +noOpValidator = plam $ + makeEffect $ + \_ (_datum :: Term s (PAsData PNoOp)) _ _ -> popaque (pconstant ()) diff --git a/agora/Agora/Effect/TreasuryWithdrawal.hs b/agora/Agora/Effect/TreasuryWithdrawal.hs index a42e0a2..fb962b6 100644 --- a/agora/Agora/Effect/TreasuryWithdrawal.hs +++ b/agora/Agora/Effect/TreasuryWithdrawal.hs @@ -18,6 +18,7 @@ import Agora.Plutarch.Orphans () import Agora.Utils (pdelete) import Plutarch.Api.V1 ( PCredential, + PCurrencySymbol, PValue, ptuple, ) @@ -38,7 +39,7 @@ import Plutarch.Extra.ScriptContext (pisPubKey) import "liqwid-plutarch-extra" Plutarch.Extra.TermCont (pguardC, pletC, pletFieldsC) import Plutarch.Lift (PConstantDecl, PUnsafeLiftDecl (PLifted)) import PlutusLedgerApi.V1.Credential (Credential) -import PlutusLedgerApi.V1.Value (CurrencySymbol, Value) +import PlutusLedgerApi.V1.Value (Value) import PlutusTx qualified {- | Datum that encodes behavior of Treasury Withdrawal effect. @@ -128,61 +129,64 @@ instance PTryFrom PData PTreasuryWithdrawalDatum - The number of outputs themselves - @since 0.1.0 + @since 1.0.0 -} -treasuryWithdrawalValidator :: forall {s :: S}. CurrencySymbol -> Term s PValidator -treasuryWithdrawalValidator currSymbol = makeEffect currSymbol $ - \_cs (datum :: Term _ PTreasuryWithdrawalDatum) effectInputRef txInfo -> unTermCont $ do - datumF <- pletAllC datum - txInfoF <- pletFieldsC @'["outputs", "inputs"] txInfo +treasuryWithdrawalValidator :: + forall (s :: S). + Term s (PCurrencySymbol :--> PValidator) +treasuryWithdrawalValidator = plam $ + makeEffect $ + \_cs (datum :: Term _ PTreasuryWithdrawalDatum) effectInputRef txInfo -> unTermCont $ do + datumF <- pletAllC datum + txInfoF <- pletFieldsC @'["outputs", "inputs"] txInfo - let validateInput :: Term _ (PTxInInfo :--> PBool) - validateInput = plam $ \input -> unTermCont $ do - inputF <- pletAllC input + let validateInput :: Term _ (PTxInInfo :--> PBool) + validateInput = plam $ \input -> unTermCont $ do + inputF <- pletAllC input - cred <- - pletC $ - pfield @"credential" - #$ pfield @"address" # inputF.resolved + cred <- + pletC $ + pfield @"credential" + #$ pfield @"address" # inputF.resolved - pure $ - foldl1 - (#||) - [ ptraceIfTrue "Effect input" $ inputF.outRef #== effectInputRef - , ptraceIfTrue "Treasury input" $ pelem # cred # datumF.treasuries - , ptraceIfTrue "Collateral input" $ pisPubKey # pfromData cred - ] + pure $ + foldl1 + (#||) + [ ptraceIfTrue "Effect input" $ inputF.outRef #== effectInputRef + , ptraceIfTrue "Treasury input" $ pelem # cred # datumF.treasuries + , ptraceIfTrue "Collateral input" $ pisPubKey # pfromData cred + ] - validateOutput :: - Term - _ - ( PBuiltinList (PAsData (PTuple PCredential (PValue 'Sorted 'Positive))) - :--> PTxOut - :--> PBuiltinList (PAsData (PTuple PCredential (PValue 'Sorted 'Positive))) - ) - validateOutput = plam $ \receivers output -> unTermCont $ do - outputF <- pletFieldsC @'["address", "value"] output - cred <- pletC $ pfield @"credential" # pfromData outputF.address + validateOutput :: + Term + _ + ( PBuiltinList (PAsData (PTuple PCredential (PValue 'Sorted 'Positive))) + :--> PTxOut + :--> PBuiltinList (PAsData (PTuple PCredential (PValue 'Sorted 'Positive))) + ) + validateOutput = plam $ \receivers output -> unTermCont $ do + outputF <- pletFieldsC @'["address", "value"] output + cred <- pletC $ pfield @"credential" # pfromData outputF.address - let credValue = pdata $ ptuple # cred # outputF.value + let credValue = pdata $ ptuple # cred # outputF.value - shouldSendToTreasury = - pif - (pelem # cred # datumF.treasuries) - receivers - (ptraceError "Invalid receiver") + shouldSendToTreasury = + pif + (pelem # cred # datumF.treasuries) + receivers + (ptraceError "Invalid receiver") - pure $ - pmatch (pdelete # credValue # receivers) $ \case - PJust updatedReceivers -> - ptrace "Receiver output" updatedReceivers - PNothing -> - ptrace "Treasury output" shouldSendToTreasury + pure $ + pmatch (pdelete # credValue # receivers) $ \case + PJust updatedReceivers -> + ptrace "Receiver output" updatedReceivers + PNothing -> + ptrace "Treasury output" shouldSendToTreasury - pguardC "All input are valid" $ - pall # validateInput # txInfoF.inputs + pguardC "All input are valid" $ + pall # validateInput # txInfoF.inputs - pguardC "All receiver get correct output" $ - pnull #$ pfoldl # validateOutput # datumF.receivers # txInfoF.outputs + pguardC "All receiver get correct output" $ + pnull #$ pfoldl # validateOutput # datumF.receivers # txInfoF.outputs - pure . popaque $ pconstant () + pure . popaque $ pconstant () diff --git a/agora/Agora/Governor.hs b/agora/Agora/Governor.hs index 88fc009..e1f8e97 100644 --- a/agora/Agora/Governor.hs +++ b/agora/Agora/Governor.hs @@ -23,6 +23,7 @@ module Agora.Governor ( pisGovernorDatumValid, ) where +import Agora.Aeson.Orphans () import Agora.Proposal ( PProposalId (PProposalId), PProposalThresholds, @@ -39,6 +40,7 @@ import Agora.Proposal.Time ( pisProposalTimingConfigValid, ) import Agora.SafeMoney (GTTag) +import Data.Aeson qualified as Aeson import Data.Tagged (Tagged) import Plutarch.DataRepr ( DerivePConstantViaData (DerivePConstantViaData), @@ -140,6 +142,12 @@ data Governor = Governor , -- | @since 0.2.0 Show ) + deriving anyclass + ( -- | @since 1.0.0 + Aeson.ToJSON + , -- | @since 1.0.0 + Aeson.FromJSON + ) -------------------------------------------------------------------------------- diff --git a/agora/Agora/Governor/Scripts.hs b/agora/Agora/Governor/Scripts.hs index f5833d7..adc070f 100644 --- a/agora/Agora/Governor/Scripts.hs +++ b/agora/Agora/Governor/Scripts.hs @@ -36,14 +36,6 @@ import Agora.Proposal ( pwinner, ) import Agora.Proposal.Time (validateProposalStartingTime) -import Agora.Scripts ( - AgoraScripts, - authorityTokenSymbol, - governorSTSymbol, - proposalSTSymbol, - proposalValidatoHash, - stakeSTSymbol, - ) import Agora.Stake ( PStakeDatum (..), pnumCreatedProposals, @@ -51,14 +43,16 @@ import Agora.Stake ( import Agora.Utils ( plistEqualsBy, pscriptHashToTokenName, - validatorHashToAddress, ) +import Plutarch.Api.V1 (PCurrencySymbol) import Plutarch.Api.V1.AssocMap (plookup) import Plutarch.Api.V1.AssocMap qualified as AssocMap import Plutarch.Api.V2 ( + PAddress, PMintingPolicy, PScriptPurpose (PMinting, PSpending), PTxOut, + PTxOutRef, PValidator, ) import Plutarch.Extra.AssetClass (passetClass, passetClassValueOf) @@ -84,7 +78,6 @@ import "liqwid-plutarch-extra" Plutarch.Extra.TermCont ( ptryFromC, ) import Plutarch.Extra.Value (psymbolValueOf) -import PlutusLedgerApi.V1 (TxOutRef) -------------------------------------------------------------------------------- @@ -113,11 +106,11 @@ import PlutusLedgerApi.V1 (TxOutRef) NOTE: It's user's responsibility to make sure the token is sent to the corresponding governor validator. We /can't/ really check this in the policy, otherwise we create a cyclic reference issue. - @since 0.1.0 + @since 1.0.0 -} -governorPolicy :: TxOutRef -> ClosedTerm PMintingPolicy -governorPolicy initialSpend = - plam $ \_ ctx -> unTermCont $ do +governorPolicy :: ClosedTerm (PTxOutRef :--> PMintingPolicy) +governorPolicy = + plam $ \initialSpend _ ctx -> unTermCont $ do PMinting ((pfield @"_0" #) -> gstSymbol) <- pmatchC (pfromData $ pfield @"purpose" # ctx) @@ -134,7 +127,7 @@ governorPolicy initialSpend = txInfo pguardC "Referenced utxo should be spent" $ - pisUTXOSpent # pconstant initialSpend # txInfoF.inputs + pisUTXOSpent # initialSpend # txInfoF.inputs pguardC "Exactly one token should be minted" $ let vMap = pfromData $ pto txInfoF.mint @@ -249,19 +242,29 @@ governorPolicy initialSpend = - Exactly one GAT is burnt in the transaction. - Said GAT is tagged by the effect. - @since 0.1.0 + == Arguments + + Following arguments should be provided(in this order): + 1. proposal validator address + 2. state ST symbol + 3. governor ST symbol + 4. proposal ST symbol + 5. authority token symbol. + + @since 1.0.0 -} governorValidator :: -- | Lazy precompiled scripts. - AgoraScripts -> - ClosedTerm PValidator -governorValidator as = - plam $ \datum redeemer ctx -> unTermCont $ do - pstSymbol <- pletC $ pconstant $ proposalSTSymbol as - atSymbol <- pletC $ pconstant $ authorityTokenSymbol as - - ---------------------------------------------------------------------------- - + ClosedTerm + ( PAddress + :--> PCurrencySymbol + :--> PCurrencySymbol + :--> PCurrencySymbol + :--> PCurrencySymbol + :--> PValidator + ) +governorValidator = + plam $ \proposalValidatorAddress sstSymbol gstSymbol pstSymbol atSymbol datum redeemer ctx -> unTermCont $ do ctxF <- pletAllC ctx txInfo <- pletC $ pfromData ctxF.txInfo txInfoF <- @@ -301,9 +304,7 @@ governorValidator as = #$ pfindJust # plam ( flip pletAll $ \outputF -> - let gstSymbol = pconstant $ governorSTSymbol as - - isGovernorUTxO = + let isGovernorUTxO = foldl1 (#&&) [ ptraceIfFalse "Own by governor validator" $ @@ -330,9 +331,7 @@ governorValidator as = pletC $ plam $ flip (pletFields @'["value", "datum"]) $ \txOutF -> - let sstSymbol = pconstant $ stakeSTSymbol as - - isStakeUTxO = + let isStakeUTxO = psymbolValueOf # sstSymbol # txOutF.value #== 1 @@ -349,12 +348,7 @@ governorValidator as = pletC $ plam $ flip (pletFields @'["value", "datum", "address"]) $ \txOutF -> - let proposalValidatorAddress = - pconstant $ - validatorHashToAddress $ - proposalValidatoHash as - - isProposalUTxO = + let isProposalUTxO = txOutF.address #== pdata proposalValidatorAddress #&& psymbolValueOf # pstSymbol # txOutF.value #== 1 diff --git a/agora/Agora/Linker.hs b/agora/Agora/Linker.hs new file mode 100644 index 0000000..ce65614 --- /dev/null +++ b/agora/Agora/Linker.hs @@ -0,0 +1,109 @@ +{-# OPTIONS_GHC -Wno-unticked-promoted-constructors #-} + +module Agora.Linker (linker) where + +import Agora.Governor (Governor (gstOutRef, gtClassRef, maximumCosigners)) +import Agora.Utils (validatorHashToAddress, validatorHashToTokenName) +import Data.Map (fromList) +import Data.Tagged (untag) +import Plutarch.Api.V2 (mintingPolicySymbol, validatorHash) +import PlutusLedgerApi.V1 (Address, CurrencySymbol, TxOutRef, ValidatorHash) +import PlutusLedgerApi.V1.Value (AssetClass (AssetClass)) +import Ply ( + ScriptRole (MintingPolicyRole, ValidatorRole), + toMintingPolicy, + toScript, + toValidator, + (#), + ) +import ScriptExport.ScriptInfo ( + Linker, + ScriptExport (..), + fetchTS, + getParam, + ) +import Prelude hiding ((#)) + +{- | Links parameterized Agora scripts given parameters. + + @since 1.0.0 +-} +linker :: Linker Governor (ScriptExport Governor) +linker = do + govPol <- fetchTS @MintingPolicyRole @'[TxOutRef] "agora:governorPolicy" + govVal <- fetchTS @ValidatorRole @'[Address, CurrencySymbol, CurrencySymbol, CurrencySymbol, CurrencySymbol] "agora:governorValidator" + stkPol <- fetchTS @MintingPolicyRole @'[AssetClass] "agora:stakePolicy" + stkVal <- fetchTS @ValidatorRole @'[CurrencySymbol, AssetClass, AssetClass] "agora:stakeValidator" + prpPol <- fetchTS @MintingPolicyRole @'[AssetClass] "agora:proposalPolicy" + prpVal <- fetchTS @ValidatorRole @'[AssetClass, CurrencySymbol, CurrencySymbol, Integer] "agora:proposalValidator" + treVal <- fetchTS @ValidatorRole @'[CurrencySymbol] "agora:treasuryValidator" + atkPol <- fetchTS @MintingPolicyRole @'[AssetClass] "agora:authorityTokenPolicy" + noOpVal <- fetchTS @ValidatorRole @'[CurrencySymbol] "agora:noOpValidator" + treaWithdrawalVal <- fetchTS @ValidatorRole @'[CurrencySymbol] "agora:treasuryWithdrawalValidator" + mutateGovVal <- fetchTS @ValidatorRole @'[ValidatorHash, CurrencySymbol, CurrencySymbol] "agora:mutateGovernorValidator" + + governor <- getParam + + let govPol' = govPol # governor.gstOutRef + govVal' = + govVal + # propValAddress + # sstSymbol + # gstSymbol + # pstSymbol + # atSymbol + gstSymbol = + mintingPolicySymbol $ + toMintingPolicy + govPol' + gstAssetClass = + AssetClass (gstSymbol, "") + govValHash = validatorHash $ toValidator govVal' + + at = gstAssetClass + atPol' = atkPol # at + atSymbol = mintingPolicySymbol $ toMintingPolicy atPol' + + propPol' = prpPol # gstAssetClass + propVal' = + prpVal + # sstAssetClass + # gstSymbol + # pstSymbol + # governor.maximumCosigners + propValAddress = + validatorHashToAddress $ validatorHash $ toValidator propVal' + pstSymbol = mintingPolicySymbol $ toMintingPolicy propPol' + pstAssetClass = AssetClass (pstSymbol, "") + + stakPol' = stkPol # untag governor.gtClassRef + stakVal' = stkVal # sstSymbol # pstAssetClass # untag governor.gtClassRef + sstSymbol = mintingPolicySymbol $ toMintingPolicy stakPol' + stakValTokenName = + validatorHashToTokenName $ validatorHash $ toValidator stakVal' + sstAssetClass = AssetClass (sstSymbol, stakValTokenName) + + treaVal' = treVal # atSymbol + + noOpVal' = noOpVal # atSymbol + treaWithdrawalVal' = treaWithdrawalVal # atSymbol + mutateGovVal' = mutateGovVal # govValHash # gstSymbol # atSymbol + + return $ + ScriptExport + { scripts = + fromList + [ ("agora:governorPolicy", toScript govPol') + , ("agora:governorValidator", toScript govVal') + , ("agora:stakePolicy", toScript stakPol') + , ("agora:stakeValidator", toScript stakVal') + , ("agora:proposalPolicy", toScript propPol') + , ("agora:proposalValidator", toScript propVal') + , ("agora:treasuryValidator", toScript treaVal') + , ("agora:authorityTokenPolicy", toScript atPol') + , ("agora:noOpValidator", toScript noOpVal') + , ("agora:treasuryWithdrawalValidator", toScript treaWithdrawalVal') + , ("agora:mutateGovernorValidator", toScript mutateGovVal') + ] + , information = governor + } diff --git a/agora/Agora/Proposal/Scripts.hs b/agora/Agora/Proposal/Scripts.hs index 4d9549a..72b9066 100644 --- a/agora/Agora/Proposal/Scripts.hs +++ b/agora/Agora/Proposal/Scripts.hs @@ -26,7 +26,6 @@ import Agora.Proposal.Time ( isLockingPeriod, isVotingPeriod, ) -import Agora.Scripts (AgoraScripts, governorSTSymbol, proposalSTSymbol, stakeSTAssetClass) import Agora.Stake ( PStakeDatum, pextractVoteOption, @@ -40,7 +39,7 @@ import Agora.Utils ( plistEqualsBy, pmapMaybe, ) -import Plutarch.Api.V1 (PCredential) +import Plutarch.Api.V1 (PCredential, PCurrencySymbol) import Plutarch.Api.V1.AssocMap (plookup) import Plutarch.Api.V2 ( PMintingPolicy, @@ -51,7 +50,7 @@ import Plutarch.Api.V2 ( PTxOut, PValidator, ) -import Plutarch.Extra.AssetClass (passetClass, passetClassValueOf) +import Plutarch.Extra.AssetClass (PAssetClass, passetClass, passetClassValueOf) import Plutarch.Extra.Category (PCategory (pidentity)) import Plutarch.Extra.Comonad (pextract) import Plutarch.Extra.Field (pletAll, pletAllC) @@ -84,7 +83,6 @@ import Plutarch.Extra.Traversable (pfoldMap) import Plutarch.Extra.Value (psymbolValueOf) import Plutarch.SafeMoney (PDiscrete (PDiscrete)) import Plutarch.Unsafe (punsafeCoerce) -import PlutusLedgerApi.V1.Value (AssetClass (AssetClass)) {- | Policy for Proposals. @@ -104,14 +102,16 @@ import PlutusLedgerApi.V1.Value (AssetClass (AssetClass)) - This policy cannot be burned. - @since 0.1.0 + == Arguments + + Following arguments should be provided(in this order): + 1. The assetclass of GST, see 'Agora.Governor.Scripts.governorPolicy'. + + @since 1.0.0 -} -proposalPolicy :: - -- | The assetclass of GST, see 'Agora.Governor.Scripts.governorPolicy'. - AssetClass -> - ClosedTerm PMintingPolicy -proposalPolicy (AssetClass (govCs, govTn)) = - plam $ \_redeemer ctx' -> unTermCont $ do +proposalPolicy :: ClosedTerm (PAssetClass :--> PMintingPolicy) +proposalPolicy = + plam $ \gtAssetClass _redeemer ctx' -> unTermCont $ do PScriptContext ctx' <- pmatchC ctx' ctx <- pletAllC ctx' PTxInfo txInfo' <- pmatchC $ pfromData ctx.txInfo @@ -125,7 +125,7 @@ proposalPolicy (AssetClass (govCs, govTn)) = pguardC "Governance state-thread token must move" $ pisTokenSpent - # (passetClass # pconstant govCs # pconstant govTn) + # gtAssetClass # txInfo.inputs pguardC "Minted exactly one proposal ST" $ @@ -199,16 +199,26 @@ instance DerivePlutusType PStakeInputsContext where (see 'Agora.Proposal.AdvanceProposal' docs). - 'Agora.Proposal.Unlock' is always valid. - @since 0.1.0 + == Arguments + + Following arguments should be provided(in this order): + 1. stake ST assetclass + 2. governor ST symbol + 3. proposal ST symbol + 4. maximum number of cosigners + + @since 1.0.0 -} proposalValidator :: - -- | Lazy precompiled scripts. - AgoraScripts -> - -- | See 'Agora.Governor.Governor.maximumCosigners'. - Integer -> - ClosedTerm PValidator -proposalValidator as maximumCosigners = - plam $ \datum redeemer ctx -> unTermCont $ do + ClosedTerm + ( PAssetClass + :--> PCurrencySymbol + :--> PCurrencySymbol + :--> PInteger + :--> PValidator + ) +proposalValidator = + plam $ \sstClass gstSymbol pstSymbol maximumCosigners datum redeemer ctx -> unTermCont $ do ctxF <- pletAllC ctx txInfo <- pletC $ pfromData ctxF.txInfo @@ -259,9 +269,7 @@ proposalValidator as maximumCosigners = #$ pfindJust # plam ( flip pletAll $ \outputF -> - let pstSymbol = pconstant $ proposalSTSymbol as - - isProposalUTxO = + let isProposalUTxO = foldl1 (#&&) [ ptraceIfFalse "Own by proposal validator" $ @@ -285,13 +293,6 @@ proposalValidator as maximumCosigners = # pfromData txInfoF.outputs -------------------------------------------------------------------------- - let AssetClass (sstSymbol, sstName) = stakeSTAssetClass as - - sstAssetClass <- - pletC $ - passetClass - # pconstant sstSymbol - # pconstant sstName -- Handle stake inputs/outputs. @@ -304,7 +305,7 @@ proposalValidator as maximumCosigners = -- A stake UTxO is a UTxO that carries SST. passetClassValueOf # txOutF.value - # sstAssetClass + # sstClass #== 1 stake = @@ -424,7 +425,7 @@ proposalValidator as maximumCosigners = # proposalInputDatumF.cosigners pguardC "Less cosigners than maximum limit" $ - plength # updatedSigs #< pconstant maximumCosigners + plength # updatedSigs #< maximumCosigners pguardC "Meet minimum GT requirement" $ pfromData thresholdsF.cosign #<= stakeF.stakedAmount @@ -701,8 +702,7 @@ proposalValidator as maximumCosigners = pguardC "Proposal status set to Finished" $ proposalOutputStatus #== pconstant Finished - let gstSymbol = pconstant $ governorSTSymbol as - gstMoved = + let gstMoved = pany # plam ( \( (pfield @"value" #) diff --git a/agora/Agora/Scripts.hs b/agora/Agora/Scripts.hs deleted file mode 100644 index 933401a..0000000 --- a/agora/Agora/Scripts.hs +++ /dev/null @@ -1,142 +0,0 @@ -{- | Module : Agora.Scripts - Maintainer : connor@mlabs.city - Description: Precompiled core scripts and utilities - - Precompiled core scripts and utilities --} -module Agora.Scripts ( - AgoraScripts (..), - governorSTSymbol, - governorSTAssetClass, - governorValidatorHash, - proposalSTSymbol, - proposalSTAssetClass, - proposalValidatoHash, - stakeSTSymbol, - stakeSTAssetClass, - stakeValidatorHash, - authorityTokenSymbol, - treasuryValidatorHash, -) where - -import Agora.Effect.TreasuryWithdrawal (TreasuryWithdrawalDatum) -import Agora.Governor (GovernorDatum, GovernorRedeemer) -import Agora.Proposal (ProposalDatum, ProposalRedeemer) -import Agora.Stake (StakeDatum, StakeRedeemer) -import Agora.Utils ( - CompiledMintingPolicy (getCompiledMintingPolicy), - CompiledValidator (getCompiledValidator), - validatorHashToTokenName, - ) -import Plutarch.Api.V2 (mintingPolicySymbol, validatorHash) -import PlutusLedgerApi.V1.Value (AssetClass (AssetClass)) -import PlutusLedgerApi.V2 (CurrencySymbol, ValidatorHash) - -{- | Precompiled core scripts. - - Including: - - - Governor policy - - Governor validator - - Proposal policy - - Proposal validator - - Stake policy - - Stake validator - - Treasury validator - - Authority token policy - - @since 0.2.0 --} -data AgoraScripts = AgoraScripts - { compiledGovernorPolicy :: CompiledMintingPolicy () - , compiledGovernorValidator :: CompiledValidator GovernorDatum GovernorRedeemer - , compiledStakePolicy :: CompiledMintingPolicy () - , compiledStakeValidator :: CompiledValidator StakeDatum StakeRedeemer - , compiledProposalPolicy :: CompiledMintingPolicy () - , compiledProposalValidator :: CompiledValidator ProposalDatum ProposalRedeemer - , compiledTreasuryValidator :: CompiledValidator () () - , compiledAuthorityTokenPolicy :: CompiledMintingPolicy () - , compiledTreasuryWithdrawalEffect :: CompiledValidator () TreasuryWithdrawalDatum - } - -{- | Get the currency symbol of the governor state token. - - @since 0.2.0 --} -governorSTSymbol :: AgoraScripts -> CurrencySymbol -governorSTSymbol = mintingPolicySymbol . (.getCompiledMintingPolicy) . (.compiledGovernorPolicy) - -{- | Get the asset class of the governor state token. - - @since 0.2.0 --} -governorSTAssetClass :: AgoraScripts -> AssetClass -governorSTAssetClass as = AssetClass (governorSTSymbol as, "") - -{- | Get the script hash of the governor validator. - - @since 0.2.0 --} -governorValidatorHash :: AgoraScripts -> ValidatorHash -governorValidatorHash = validatorHash . (.getCompiledValidator) . (.compiledGovernorValidator) - -{- | Get the currency symbol of the propsoal state token. - - @since 0.2.0 --} -proposalSTSymbol :: AgoraScripts -> CurrencySymbol -proposalSTSymbol as = mintingPolicySymbol $ (.getCompiledMintingPolicy) as.compiledProposalPolicy - -{- | Get the asset class of the governor state token. - - @since 0.2.0 --} -proposalSTAssetClass :: AgoraScripts -> AssetClass -proposalSTAssetClass as = AssetClass (proposalSTSymbol as, "") - -{- | Get the script hash of the proposal validator. - - @since 0.2.0 --} -proposalValidatoHash :: AgoraScripts -> ValidatorHash -proposalValidatoHash = validatorHash . (.getCompiledValidator) . (.compiledProposalValidator) - -{- | Get the script hash of the governor validator. - - @since 0.2.0 --} -stakeSTSymbol :: AgoraScripts -> CurrencySymbol -stakeSTSymbol = mintingPolicySymbol . (.getCompiledMintingPolicy) . (.compiledStakePolicy) - -{- | Get the asset class of the stake state token. - - Note that this token is tagged with the hash of the stake validator. - See 'Agora.Stake.Script.stakePolicy'. - - @since 0.2.0 --} -stakeSTAssetClass :: AgoraScripts -> AssetClass -stakeSTAssetClass as = - let tn = validatorHashToTokenName $ stakeValidatorHash as - in AssetClass (stakeSTSymbol as, tn) - -{- | Get the script hash of the stake validator. - - @since 0.2.0 --} -stakeValidatorHash :: AgoraScripts -> ValidatorHash -stakeValidatorHash = validatorHash . (.getCompiledValidator) . (.compiledStakeValidator) - -{- | Get the currency symbol of the authority token. - - @since 0.2.0 --} -authorityTokenSymbol :: AgoraScripts -> CurrencySymbol -authorityTokenSymbol = mintingPolicySymbol . (.getCompiledMintingPolicy) . (.compiledAuthorityTokenPolicy) - -{- | Get the script hash of the treasury validator. - - @since 0.2.0 --} -treasuryValidatorHash :: AgoraScripts -> ValidatorHash -treasuryValidatorHash = validatorHash . (.getCompiledValidator) . (.compiledTreasuryValidator) diff --git a/agora/Agora/Stake/Scripts.hs b/agora/Agora/Stake/Scripts.hs index 62077ab..2f4913c 100644 --- a/agora/Agora/Stake/Scripts.hs +++ b/agora/Agora/Stake/Scripts.hs @@ -13,12 +13,6 @@ module Agora.Stake.Scripts ( import Agora.Credential (authorizationContext, pauthorizedBy) import Agora.Proposal (PProposalDatum, PProposalRedeemer) -import Agora.SafeMoney (GTTag) -import Agora.Scripts ( - AgoraScripts, - proposalSTAssetClass, - stakeSTSymbol, - ) import Agora.Stake ( PProposalContext ( PNewProposal, @@ -62,16 +56,13 @@ import Agora.Stake.Redeemers ( pretractVote, ) import Agora.Utils (passert, pmapMaybe) -import Data.Tagged (Tagged (Tagged)) import Plutarch.Api.V1 ( - KeyGuarantees (Sorted), PCredential (PPubKeyCredential, PScriptCredential), + PCurrencySymbol, PTokenName, ) import Plutarch.Api.V1.AssocMap (plookup) -import Plutarch.Api.V1.Value (PValue) import Plutarch.Api.V2 ( - AmountGuarantees, PMintingPolicy, PScriptPurpose (PMinting, PSpending), PTxInfo, @@ -79,7 +70,7 @@ import Plutarch.Api.V2 ( PValidator, ) import Plutarch.Extra.AssetClass ( - passetClass, + PAssetClass, passetClassValueOf, pvalueOf, ) @@ -114,10 +105,8 @@ import Plutarch.Extra.Value ( import Plutarch.Num (PNum (pnegate)) import Plutarch.SafeMoney ( pvalueDiscrete, - pvalueDiscrete', ) import Plutarch.Unsafe (punsafeCoerce) -import PlutusLedgerApi.V1.Value (AssetClass (AssetClass)) import Prelude hiding (Num ((+))) {- | Policy for Stake state threads. @@ -137,14 +126,18 @@ import Prelude hiding (Num ((+))) - Check that exactly one state thread is burned. - Check that datum at state thread is valid and not locked. - @since 0.1.0 + == Arguments + + Following arguments should be provided(in this order): + 1. governor ST assetclass + + @since 1.0.0 -} stakePolicy :: -- | The (governance) token that a Stake can store. - Tagged GTTag AssetClass -> - ClosedTerm PMintingPolicy -stakePolicy gtClassRef = - plam $ \_redeemer ctx' -> unTermCont $ do + ClosedTerm (PAssetClass :--> PMintingPolicy) +stakePolicy = + plam $ \gstClass _redeemer ctx' -> unTermCont $ do ctx <- pletFieldsC @'["txInfo", "purpose"] ctx' txInfo <- pletC $ ctx.txInfo let _a :: Term _ PTxInfo @@ -226,7 +219,7 @@ stakePolicy gtClassRef = let hasExpectedStake = ptraceIfFalse "Stake ouput has expected amount of stake token" $ - pvalueDiscrete' gtClassRef # outputF.value #== datumF.stakedAmount + pvalueDiscrete # gstClass # outputF.value #== datumF.stakedAmount let ownerSignsTransaction = ptraceIfFalse "Stake Owner should sign the transaction" $ pauthorizedBy @@ -243,338 +236,319 @@ stakePolicy gtClassRef = {- | Create a stake validator, given the implementation of stake redeemers. + == Arguments + + Following arguments should be provided(in this order): + 1. stake ST symbol + 2. proposal ST assetclass + 3. governor ST assetclass + @since 1.0.0 -} mkStakeValidator :: StakeRedeemerImpl -> - AgoraScripts -> - Tagged GTTag AssetClass -> - ClosedTerm PValidator -mkStakeValidator - impl - as - (Tagged (AssetClass (gtSym, gtTn))) = - plam $ \_datum redeemer ctx -> unTermCont $ do - let sstValueOf :: - ( forall (ag :: AmountGuarantees) (s :: S). - Term s (PValue 'Sorted ag :--> PInteger) - ) - sstValueOf = - phoistAcyclic $ - psymbolValueOf # pconstant (stakeSTSymbol as) - - -------------------------------------------------------------------------- - - ctxF <- pletFieldsC @'["txInfo", "purpose"] ctx - txInfo <- pletC $ pfromData ctxF.txInfo - txInfoF <- - pletFieldsC - @'[ "inputs" - , "referenceInputs" - , "outputs" - , "mint" - , "validRange" - , "signatories" - , "redeemers" - , "datums" - ] - txInfo - - -------------------------------------------------------------------------- - - PSpending stakeInputRef <- pmatchC $ pfromData ctxF.purpose - - let validatedInput = - pfield @"resolved" - #$ passertPJust - # "Malformed script context: validated input not found" - #$ pfindTxInByTxOutRef - # (pfield @"_0" # stakeInputRef) - # txInfoF.inputs - - stakeValidatorCredential = - pfield @"credential" - #$ pfield @"address" # validatedInput - - -------------------------------------------------------------------------- - - -- Returns stake datum if the given UTxO is a stake UTxO. - getStakeDatum :: Term _ (PTxOut :--> PMaybe PStakeDatum) <- - pletC $ - plam $ - flip (pletFields @'["value", "datum", "address"]) $ \txOutF -> - pmatch - ( pcompareBy # pfromOrd - # (sstValueOf # txOutF.value) - # 1 - ) - $ \case - -- > 1 - PGT -> ptraceError "More than one SST in one UTxO" - -- 1 - PEQ -> - let ownerCredential = pfield @"credential" # txOutF.address - - isOwnedByStakeValidator = - ownerCredential #== stakeValidatorCredential - - datum = - ptrace "Resolve stake datum" $ - pfromData $ - pfromOutputDatum @(PAsData PStakeDatum) - # txOutF.datum - # txInfoF.datums - in passert - "Should owned by stake validator" - isOwnedByStakeValidator - (pjust # datum) - -- 0 - PLT -> pnothing - - -------------------------------------------------------------------------- - - -- Find all stake inputs. - - stakeInputDatums <- - pletC $ - pmapMaybe - # plam ((getStakeDatum #) . (pfield @"resolved" #)) - # pfromData txInfoF.inputs - - -------------------------------------------------------------------------- - - -- Assemble the signature context. - - firstStakeInputDatumF <- - pletFieldsC @'["owner", "delegatedTo"] $ - phead # stakeInputDatums - - restOfStakeInputDatums <- pletC $ ptail # stakeInputDatums - - authorizedBy <- pletC $ pauthorizedBy # authorizationContext txInfoF - - PPair allHaveSameOwner allHaveSameDelegatee <- - pmatchC $ - pfoldr - # plam - ( \d p -> unTermCont $ do - dF <- pletFieldsC @'["owner", "delegatedTo"] d - - pure $ - pmatch p $ \(PPair allHaveSameOwner allHaveSameDelegatee) -> - let allHaveSameOwner' = - allHaveSameOwner - #&& dF.owner #== firstStakeInputDatumF.owner - allHaveSameDelegatee' = - allHaveSameDelegatee - #&& dF.delegatedTo #== firstStakeInputDatumF.delegatedTo - in pcon $ PPair allHaveSameOwner' allHaveSameDelegatee' - ) - # pcon (PPair (pconstant True) (pconstant True)) - # restOfStakeInputDatums - - let ownerSignsTransaction = - allHaveSameOwner - #&& authorizedBy # firstStakeInputDatumF.owner - - delegateSignsTransaction = - allHaveSameDelegatee - #&& pmaybeData - # pconstant False - # plam ((authorizedBy #) . pfromData) - # pfromData firstStakeInputDatumF.delegatedTo - - signedBy = - pif - ownerSignsTransaction - (pcon PSignedByOwner) - $ pif - delegateSignsTransaction - (pcon PSignedByDelegate) - $ pcon PUnknownSig - - sigContext <- - pletC $ - pcon $ - PSigContext - firstStakeInputDatumF.owner - firstStakeInputDatumF.delegatedTo - signedBy - - -------------------------------------------------------------------------- - - -- Find all stake outputs. - - let gtAssetClass = passetClass # pconstant gtSym # pconstant gtTn - - -- First step of validating stake outputs. We make sure that every stake - -- output UTxO carries correct amount of GTs specified by its datum. - -- - -- Note that non-GT assets are treated transparently. - stakeOutputDatums <- - pletC $ - pmapMaybe - # plam - ( \output -> - let validateGT = plam $ \stakeDatum -> - let expected = pfield @"stakedAmount" # stakeDatum - - actual = - pvalueDiscrete - # gtAssetClass - # (pfield @"value" # output) - in pif - (expected #== actual) - stakeDatum - (ptraceError "Unmatched GT value") - in pfmap - # validateGT - # (getStakeDatum # output) - ) - # pfromData txInfoF.outputs - - -------------------------------------------------------------------------- - - mintedST <- pletC $ sstValueOf # txInfoF.mint - - pguardC "No new SST minted" $ - foldl1 - (#||) - [ ptraceIfTrue "All stakes burnt" $ - mintedST #< 0 #&& pnull # stakeOutputDatums - , ptraceIfTrue "Nothing burnt" $ - mintedST #== 0 + ClosedTerm (PCurrencySymbol :--> PAssetClass :--> PAssetClass :--> PValidator) +mkStakeValidator impl = + plam $ \sstSymbol pstClass gstClass _datum redeemer ctx -> unTermCont $ do + ctxF <- pletFieldsC @'["txInfo", "purpose"] ctx + txInfo <- pletC $ pfromData ctxF.txInfo + txInfoF <- + pletFieldsC + @'[ "inputs" + , "referenceInputs" + , "outputs" + , "mint" + , "validRange" + , "signatories" + , "redeemers" + , "datums" ] + txInfo - -------------------------------------------------------------------------- + -------------------------------------------------------------------------- - -- Assemble the proposal context. + PSpending stakeInputRef <- pmatchC $ pfromData ctxF.purpose - let AssetClass (propCs, propTn) = proposalSTAssetClass as + let validatedInput = + pfield @"resolved" + #$ passertPJust + # "Malformed script context: validated input not found" + #$ pfindTxInByTxOutRef + # (pfield @"_0" # stakeInputRef) + # txInfoF.inputs - proposalSTClass <- - pletC $ - passetClass - # pconstant propCs - # pconstant propTn + stakeValidatorCredential = + pfield @"credential" + #$ pfield @"address" # validatedInput - getProposalDatum <- pletC $ + -------------------------------------------------------------------------- + + -- Returns stake datum if the given UTxO is a stake UTxO. + getStakeDatum :: Term _ (PTxOut :--> PMaybe PStakeDatum) <- + pletC $ plam $ - flip pletAll $ \txOutF -> - let isProposalUTxO = - passetClassValueOf - # txOutF.value - # proposalSTClass #== 1 - proposalDatum = - pfromData $ - pfromOutputDatum @(PAsData PProposalDatum) - # txOutF.datum - # txInfoF.datums - in pif isProposalUTxO (pjust # proposalDatum) pnothing + flip (pletFields @'["value", "datum", "address"]) $ \txOutF -> + pmatch + ( pcompareBy # pfromOrd + # (psymbolValueOf # sstSymbol # txOutF.value) + # 1 + ) + $ \case + -- > 1 + PGT -> ptraceError "More than one SST in one UTxO" + -- 1 + PEQ -> + let ownerCredential = pfield @"credential" # txOutF.address - let pstMinted = - passetClassValueOf # txInfoF.mint # proposalSTClass #== 1 + isOwnedByStakeValidator = + ownerCredential #== stakeValidatorCredential - newProposalContext = - pcon $ - PNewProposal $ - pfield @"proposalId" - #$ passertPJust # "Proposal output should present" - #$ pfindJust # getProposalDatum # pfromData txInfoF.outputs + datum = + ptrace "Resolve stake datum" $ + pfromData $ + pfromOutputDatum @(PAsData PStakeDatum) + # txOutF.datum + # txInfoF.datums + in passert + "Should owned by stake validator" + isOwnedByStakeValidator + (pjust # datum) + -- 0 + PLT -> pnothing - spendProposalContext = - let getProposalRedeemer = plam $ \ref -> - flip (ptryFrom @PProposalRedeemer) fst $ - pto $ - passertPJust - # "Malformed script context: propsoal input not found in redeemer map" - #$ plookup - # pcon - ( PSpending $ - pdcons @_0 - # pdata ref - # pdnil - ) - # txInfoF.redeemers + -------------------------------------------------------------------------- - getContext = plam $ - flip pletAll $ \inInfoF -> - pfmap - # plam - ( \proposalDatum -> - let id = pfield @"proposalId" # proposalDatum - status = pfield @"status" # proposalDatum - redeemer = getProposalRedeemer # inInfoF.outRef - in pcon $ PSpendProposal id status redeemer - ) - #$ getProposalDatum - # pfromData inInfoF.resolved + -- Find all stake inputs. - contexts = - pmapMaybe @PList # getContext # pfromData txInfoF.inputs - in -- Can only handle one proposal at a time. - precList - ( \_ h t -> - pif - (pnull # t) - (pjust # h) - (ptraceError "Ambiguous proposal") - ) - (const pnothing) - # contexts + stakeInputDatums <- + pletC $ + pmapMaybe + # plam ((getStakeDatum #) . (pfield @"resolved" #)) + # pfromData txInfoF.inputs - noProposalContext = pcon PNoProposal + -------------------------------------------------------------------------- - proposalContext <- - pletC $ + -- Assemble the signature context. + + firstStakeInputDatumF <- + pletFieldsC @'["owner", "delegatedTo"] $ + phead # stakeInputDatums + + restOfStakeInputDatums <- pletC $ ptail # stakeInputDatums + + authorizedBy <- pletC $ pauthorizedBy # authorizationContext txInfoF + + PPair allHaveSameOwner allHaveSameDelegatee <- + pmatchC $ + pfoldr + # plam + ( \d p -> unTermCont $ do + dF <- pletFieldsC @'["owner", "delegatedTo"] d + + pure $ + pmatch p $ \(PPair allHaveSameOwner allHaveSameDelegatee) -> + let allHaveSameOwner' = + allHaveSameOwner + #&& dF.owner #== firstStakeInputDatumF.owner + allHaveSameDelegatee' = + allHaveSameDelegatee + #&& dF.delegatedTo #== firstStakeInputDatumF.delegatedTo + in pcon $ PPair allHaveSameOwner' allHaveSameDelegatee' + ) + # pcon (PPair (pconstant True) (pconstant True)) + # restOfStakeInputDatums + + let ownerSignsTransaction = + allHaveSameOwner + #&& authorizedBy # firstStakeInputDatumF.owner + + delegateSignsTransaction = + allHaveSameDelegatee + #&& pmaybeData + # pconstant False + # plam ((authorizedBy #) . pfromData) + # pfromData firstStakeInputDatumF.delegatedTo + + signedBy = pif - pstMinted - newProposalContext - (pfromMaybe # noProposalContext # spendProposalContext) + ownerSignsTransaction + (pcon PSignedByOwner) + $ pif + delegateSignsTransaction + (pcon PSignedByDelegate) + $ pcon PUnknownSig - -------------------------------------------------------------------------- + sigContext <- + pletC $ + pcon $ + PSigContext + firstStakeInputDatumF.owner + firstStakeInputDatumF.delegatedTo + signedBy - -- Assemeble the redeemer handler context. + -------------------------------------------------------------------------- - mkRedeemerhandlerContext <- pletC $ - plam $ \redeemerContext -> + -- Find all stake outputs. + -- First step of validating stake outputs. We make sure that every stake + -- output UTxO carries correct amount of GTs specified by its datum. + -- + -- Note that non-GT assets are treated transparently. + stakeOutputDatums <- + pletC $ + pmapMaybe + # plam + ( \output -> + let validateGT = plam $ \stakeDatum -> + let expected = pfield @"stakedAmount" # stakeDatum + + actual = + pvalueDiscrete + # gstClass + # (pfield @"value" # output) + in pif + (expected #== actual) + stakeDatum + (ptraceError "Unmatched GT value") + in pfmap + # validateGT + # (getStakeDatum # output) + ) + # pfromData txInfoF.outputs + + -------------------------------------------------------------------------- + + mintedST <- pletC $ psymbolValueOf # sstSymbol # txInfoF.mint + + pguardC "No new SST minted" $ + foldl1 + (#||) + [ ptraceIfTrue "All stakes burnt" $ + mintedST #< 0 #&& pnull # stakeOutputDatums + , ptraceIfTrue "Nothing burnt" $ + mintedST #== 0 + ] + + -------------------------------------------------------------------------- + + -- Assemble the proposal context. + + getProposalDatum <- pletC $ + plam $ + flip pletAll $ \txOutF -> + let isProposalUTxO = + passetClassValueOf + # txOutF.value + # pstClass #== 1 + proposalDatum = + pfromData $ + pfromOutputDatum @(PAsData PProposalDatum) + # txOutF.datum + # txInfoF.datums + in pif isProposalUTxO (pjust # proposalDatum) pnothing + + let pstMinted = + passetClassValueOf # txInfoF.mint # pstClass #== 1 + + newProposalContext = pcon $ - PStakeRedeemerHandlerContext - stakeInputDatums - stakeOutputDatums - redeemerContext - sigContext - proposalContext - txInfo + PNewProposal $ + pfield @"proposalId" + #$ passertPJust # "Proposal output should present" + #$ pfindJust # getProposalDatum # pfromData txInfoF.outputs - noMetadataContext <- - pletC $ - mkRedeemerhandlerContext - #$ pcon - $ PNoMetadata + spendProposalContext = + let getProposalRedeemer = plam $ \ref -> + flip (ptryFrom @PProposalRedeemer) fst $ + pto $ + passertPJust + # "Malformed script context: propsoal input not found in redeemer map" + #$ plookup + # pcon + ( PSpending $ + pdcons @_0 + # pdata ref + # pdnil + ) + # txInfoF.redeemers - -------------------------------------------------------------------------- + getContext = plam $ + flip pletAll $ \inInfoF -> + pfmap + # plam + ( \proposalDatum -> + let id = pfield @"proposalId" # proposalDatum + status = pfield @"status" # proposalDatum + redeemer = getProposalRedeemer # inInfoF.outRef + in pcon $ PSpendProposal id status redeemer + ) + #$ getProposalDatum + # pfromData inInfoF.resolved - -- Call the redeemer handler. + contexts = + pmapMaybe @PList # getContext # pfromData txInfoF.inputs + in -- Can only handle one proposal at a time. + precList + ( \_ h t -> + pif + (pnull # t) + (pjust # h) + (ptraceError "Ambiguous proposal") + ) + (const pnothing) + # contexts - stakeRedeemer <- fst <$> ptryFromC redeemer + noProposalContext = pcon PNoProposal - pure $ - popaque $ - pmatch stakeRedeemer $ \case - PDestroy _ -> runStakeRedeemerHandler impl.onDestroy # noMetadataContext - PPermitVote _ -> runStakeRedeemerHandler impl.onPermitVote # noMetadataContext - PRetractVotes _ -> runStakeRedeemerHandler impl.onRetractVote # noMetadataContext - PClearDelegate _ -> runStakeRedeemerHandler impl.onClearDelegate # noMetadataContext - PDelegateTo ((pfield @"pkh" #) -> pkh) -> - runStakeRedeemerHandler impl.onDelegateTo - #$ mkRedeemerhandlerContext - #$ pcon - $ PSetDelegateTo pkh - PDepositWithdraw ((pfield @"delta" #) -> delta) -> - runStakeRedeemerHandler impl.onDepositWithdraw #$ mkRedeemerhandlerContext - #$ pcon - $ PDepositWithdrawDelta delta + proposalContext <- + pletC $ + pif + pstMinted + newProposalContext + (pfromMaybe # noProposalContext # spendProposalContext) + + -------------------------------------------------------------------------- + + -- Assemeble the redeemer handler context. + + mkRedeemerhandlerContext <- pletC $ + plam $ \redeemerContext -> + pcon $ + PStakeRedeemerHandlerContext + stakeInputDatums + stakeOutputDatums + redeemerContext + sigContext + proposalContext + txInfo + + noMetadataContext <- + pletC $ + mkRedeemerhandlerContext + #$ pcon + $ PNoMetadata + + -------------------------------------------------------------------------- + + -- Call the redeemer handler. + + stakeRedeemer <- fst <$> ptryFromC redeemer + + pure $ + popaque $ + pmatch stakeRedeemer $ \case + PDestroy _ -> runStakeRedeemerHandler impl.onDestroy # noMetadataContext + PPermitVote _ -> runStakeRedeemerHandler impl.onPermitVote # noMetadataContext + PRetractVotes _ -> runStakeRedeemerHandler impl.onRetractVote # noMetadataContext + PClearDelegate _ -> runStakeRedeemerHandler impl.onClearDelegate # noMetadataContext + PDelegateTo ((pfield @"pkh" #) -> pkh) -> + runStakeRedeemerHandler impl.onDelegateTo + #$ mkRedeemerhandlerContext + #$ pcon + $ PSetDelegateTo pkh + PDepositWithdraw ((pfield @"delta" #) -> delta) -> + runStakeRedeemerHandler impl.onDepositWithdraw #$ mkRedeemerhandlerContext + #$ pcon + $ PDepositWithdrawDelta delta {- | Validator intended for Stake UTXOs to be locked by. @@ -617,14 +591,16 @@ mkStakeValidator - The stakes must not be locked. - Tx must be signed by the owner. - @since 0.1.0 + == Arguments + + Following arguments should be provided(in this order): + 1. stake ST symbol + 2. proposal ST assetclass + 3. governor ST assetclass + + @since 1.0.0 -} -stakeValidator :: - -- | Lazy precompiled scripts. - AgoraScripts -> - -- | See 'Agora.Governor.Governor.gtClassRef'. - Tagged GTTag AssetClass -> - ClosedTerm PValidator +stakeValidator :: ClosedTerm (PCurrencySymbol :--> PAssetClass :--> PAssetClass :--> PValidator) stakeValidator = mkStakeValidator $ StakeRedeemerImpl diff --git a/agora/Agora/Treasury.hs b/agora/Agora/Treasury.hs index b9085da..77ac360 100644 --- a/agora/Agora/Treasury.hs +++ b/agora/Agora/Treasury.hs @@ -13,22 +13,23 @@ module Agora.Treasury ( ) where import Agora.AuthorityToken (singleAuthorityTokenBurned) -import Plutarch.Api.V1.Value (PValue) +import Plutarch.Api.V1.Value (PCurrencySymbol, PValue) import Plutarch.Api.V2 (PScriptPurpose (PSpending), PValidator) -import "liqwid-plutarch-extra" Plutarch.Extra.TermCont (pguardC, pletC, pletFieldsC, pmatchC) -import Plutarch.TryFrom () -import PlutusLedgerApi.V1.Value (CurrencySymbol) +import "liqwid-plutarch-extra" Plutarch.Extra.TermCont (pguardC, pletFieldsC, pmatchC) {- | Validator ensuring that transactions consuming the treasury do so in a valid manner. + == Arguments + + Following arguments should be provided(in this order): + 1. authority token symbol + @since 0.1.0 -} treasuryValidator :: - -- | Governance Authority Token that can unlock this validator. - CurrencySymbol -> - ClosedTerm PValidator -treasuryValidator gatCs' = plam $ \_ _ ctx' -> unTermCont $ do + ClosedTerm (PCurrencySymbol :--> PValidator) +treasuryValidator = plam $ \atSymbol _ _ ctx' -> unTermCont $ do -- plet required fields from script context. ctx <- pletFieldsC @["txInfo", "purpose"] ctx' @@ -40,9 +41,7 @@ treasuryValidator gatCs' = plam $ \_ _ ctx' -> unTermCont $ do let mint :: Term _ (PValue _ _) mint = txInfo.mint - gatCs <- pletC $ pconstant gatCs' - pguardC "A single authority token has been burned" $ - singleAuthorityTokenBurned gatCs txInfo.inputs mint + singleAuthorityTokenBurned atSymbol txInfo.inputs mint pure . popaque $ pconstant () diff --git a/agora/Agora/Utils.hs b/agora/Agora/Utils.hs index a877d14..be892d7 100644 --- a/agora/Agora/Utils.hs +++ b/agora/Agora/Utils.hs @@ -12,9 +12,6 @@ module Agora.Utils ( validatorHashToAddress, pltAsData, withBuiltinPairAsData, - CompiledValidator (..), - CompiledMintingPolicy (..), - CompiledEffect (..), pvalidatorHashToTokenName, pscriptHashToTokenName, scriptHashToTokenName, @@ -49,10 +46,8 @@ import Plutarch.Unsafe (punsafeCoerce) import PlutusLedgerApi.V2 ( Address (Address), Credential (ScriptCredential), - MintingPolicy, ScriptHash (ScriptHash), TokenName (TokenName), - Validator, ValidatorHash (ValidatorHash), ) @@ -128,30 +123,6 @@ withBuiltinPairAsData f p = b = pfromData $ psndBuiltin # p in f a b -{- | Type-safe wrapper for compiled plutus validator. - - @since 0.2.0 --} -newtype CompiledValidator (datum :: Type) (redeemer :: Type) = CompiledValidator - { getCompiledValidator :: Validator - } - -{- | Type-safe wrapper for compiled plutus miting policy. - - @since 0.2.0 --} -newtype CompiledMintingPolicy (redeemer :: Type) = CompiledMintingPolicy - { getCompiledMintingPolicy :: MintingPolicy - } - -{- | Type-safe wrapper for compiled plutus effect. - - @since 0.2.0 --} -newtype CompiledEffect (datum :: Type) = CompiledEffect - { getCompiledEffect :: Validator - } - -- | @since 1.0.0 plistEqualsBy :: forall diff --git a/bench.csv b/bench.csv index f31f6c7..1d7b174 100644 --- a/bench.csv +++ b/bench.csv @@ -1,475 +1,475 @@ name,cpu,mem,size -Agora/Effects/Treasury Withdrawal Effect/effect/Simple,216491233,584406,3879 -Agora/Effects/Treasury Withdrawal Effect/effect/Simple with multiple treasuries ,307752363,787074,4311 -Agora/Effects/Treasury Withdrawal Effect/effect/Mixed Assets,300492604,786706,4249 -Agora/Effects/Governor Mutation Effect/validator/valid new governor datum/governor validator should pass,124118615,348863,11354 -Agora/Effects/Governor Mutation Effect/validator/valid new governor datum/effect validator should pass,141875305,374153,4680 -Agora/Stake/policy/stakeCreation,56986696,165703,3256 -Agora/Stake/validator/stakeDepositWithdraw deposit,149771578,425074,7399 -Agora/Stake/validator/stakeDepositWithdraw withdraw,149771578,425074,7391 -Agora/Stake/validator/set delegate/override existing delegate,178447216,494959,7530 -Agora/Stake/validator/set delegate/remove existing delegate,169112220,471571,7460 -Agora/Stake/validator/set delegate/set delegate to something,176018228,487859,7460 -Agora/Proposal/policy (proposal creation)/legal/proposal,34052826,101718,2046 -Agora/Proposal/policy (proposal creation)/legal/governor,277583164,731983,11807 -Agora/Proposal/policy (proposal creation)/legal/stake,310973429,839152,8182 -Agora/Proposal/policy (proposal creation)/illegal/invalid next proposal id/proposal,34052826,101718,2046 -Agora/Proposal/policy (proposal creation)/illegal/invalid next proposal id/stake,310973429,839152,8182 -Agora/Proposal/policy (proposal creation)/illegal/use other's stake/proposal,34052826,101718,2015 -Agora/Proposal/policy (proposal creation)/illegal/use other's stake/governor,277583164,731983,11776 -Agora/Proposal/policy (proposal creation)/illegal/altered stake/proposal,34052826,101718,2046 -Agora/Proposal/policy (proposal creation)/illegal/invalid stake locks/proposal,34052826,101718,2054 -Agora/Proposal/policy (proposal creation)/illegal/invalid stake locks/governor,277583164,731983,11815 -Agora/Proposal/policy (proposal creation)/illegal/has reached maximum proposals limit/proposal,34052826,101718,2067 -Agora/Proposal/policy (proposal creation)/illegal/has reached maximum proposals limit/stake,323671865,875368,8213 -Agora/Proposal/policy (proposal creation)/illegal/loose time range/proposal,34052826,101718,2046 -Agora/Proposal/policy (proposal creation)/illegal/loose time range/stake,310973429,839152,8182 -Agora/Proposal/policy (proposal creation)/illegal/open time range/proposal,34052826,101718,2042 -Agora/Proposal/policy (proposal creation)/illegal/open time range/stake,310973429,839152,8178 -Agora/Proposal/policy (proposal creation)/illegal/invalid proposal status/VotingReady/proposal,34052826,101718,2046 -Agora/Proposal/policy (proposal creation)/illegal/invalid proposal status/VotingReady/stake,310973429,839152,8182 -Agora/Proposal/policy (proposal creation)/illegal/invalid proposal status/Locked/proposal,34052826,101718,2046 -Agora/Proposal/policy (proposal creation)/illegal/invalid proposal status/Locked/stake,310973429,839152,8182 -Agora/Proposal/policy (proposal creation)/illegal/invalid proposal status/Finished/proposal,34052826,101718,2046 -Agora/Proposal/policy (proposal creation)/illegal/invalid proposal status/Finished/stake,310973429,839152,8182 -Agora/Proposal/validator/cosignature/legal/proposal,199710414,564260,11385 -Agora/Proposal/validator/cosignature/legal/stake,263738828,736793,8026 -Agora/Proposal/validator/cosignature/illegal/insufficient staked amount/stake,263738828,736793,8026 -Agora/Proposal/validator/cosignature/illegal/proposal locks not updated/proposal,199710414,564260,11379 -Agora/Proposal/validator/cosignature/illegal/duplicate cosigners/stake,270088046,754901,8043 -Agora/Proposal/validator/cosignature/illegal/cosigners not updated/stake,263738828,736793,7992 -Agora/Proposal/validator/cosignature/illegal/cosign after draft/(negative test)/stake,263738828,736793,8026 -Agora/Proposal/validator/cosignature/illegal/cosign after draft/(negative test)/stake,263738828,736793,8026 -Agora/Proposal/validator/cosignature/illegal/cosign after draft/(negative test)/stake,263738828,736793,8026 -Agora/Proposal/validator/voting/legal/different number of stakes/1 stakes/by owner/proposal,214112405,611164,11237 -Agora/Proposal/validator/voting/legal/different number of stakes/1 stakes/by owner/stake,275392572,770760,7889 -Agora/Proposal/validator/voting/legal/different number of stakes/1 stakes/by delegatee/proposal,214112405,611164,11237 -Agora/Proposal/validator/voting/legal/different number of stakes/1 stakes/by delegatee/stake,282219467,787916,7889 -Agora/Proposal/validator/voting/legal/different number of stakes/3 stakes/by owner/proposal,319042607,904612,12452 -Agora/Proposal/validator/voting/legal/different number of stakes/3 stakes/by owner/stake,574886168,1552272,9104 -Agora/Proposal/validator/voting/legal/different number of stakes/3 stakes/by delegatee/proposal,319042607,904612,12452 -Agora/Proposal/validator/voting/legal/different number of stakes/3 stakes/by delegatee/stake,581713063,1569428,9104 -Agora/Proposal/validator/voting/legal/different number of stakes/5 stakes/by owner/proposal,423972809,1198060,13667 -Agora/Proposal/validator/voting/legal/different number of stakes/5 stakes/by owner/stake,874379764,2333784,10319 -Agora/Proposal/validator/voting/legal/different number of stakes/5 stakes/by delegatee/proposal,423972809,1198060,13667 -Agora/Proposal/validator/voting/legal/different number of stakes/5 stakes/by delegatee/stake,881206659,2350940,10319 -Agora/Proposal/validator/voting/legal/different number of stakes/7 stakes/by owner/proposal,528903011,1491508,14881 -Agora/Proposal/validator/voting/legal/different number of stakes/7 stakes/by owner/stake,1173873360,3115296,11533 -Agora/Proposal/validator/voting/legal/different number of stakes/7 stakes/by delegatee/proposal,528903011,1491508,14881 -Agora/Proposal/validator/voting/legal/different number of stakes/7 stakes/by delegatee/stake,1180700255,3132452,11533 -Agora/Proposal/validator/voting/legal/different number of stakes/9 stakes/by owner/proposal,633833213,1784956,16096 -Agora/Proposal/validator/voting/legal/different number of stakes/9 stakes/by owner/stake,1473366956,3896808,12748 -Agora/Proposal/validator/voting/legal/different number of stakes/9 stakes/by delegatee/proposal,633833213,1784956,16096 -Agora/Proposal/validator/voting/legal/different number of stakes/9 stakes/by delegatee/stake,1480193851,3913964,12748 -Agora/Proposal/validator/voting/legal/transparent non-GT tokens/proposal,214112405,611164,11237 -Agora/Proposal/validator/voting/legal/transparent non-GT tokens/stake,275392572,770760,7889 -Agora/Proposal/validator/voting/illegal/vote for nonexistent outcome/stake,275392572,770760,7894 -Agora/Proposal/validator/voting/illegal/unauthorized tx/proposal,214112405,611164,11237 -Agora/Proposal/validator/voting/illegal/more than one proposals/stake,275392572,770760,7894 -Agora/Proposal/validator/voting/illegal/locks not added/proposal,423972809,1198060,13637 -Agora/Proposal/validator/voting/illegal/attempt to burn stakes/proposal,400905954,1146440,12608 -Agora/Proposal/validator/voting/illegal/insufficient staked amount/stake,275392572,770760,7866 -Agora/Proposal/validator/voting/illegal/insufficient staked amount/stake,874379764,2333784,10231 -Agora/Proposal/validator/advancing/with 1 cosigners and 1 effects/legal/to next state/from Draft to VotingReady/proposal,241755556,683567,11851 -Agora/Proposal/validator/advancing/with 1 cosigners and 1 effects/legal/to next state/from VotingReady to Locked/proposal,222134383,620301,11614 -Agora/Proposal/validator/advancing/with 1 cosigners and 1 effects/legal/to next state/from Locked to Finished/proposal,236239047,649043,12885 -Agora/Proposal/validator/advancing/with 1 cosigners and 1 effects/legal/to next state/from Locked to Finished/governor,401301925,1085610,12822 -Agora/Proposal/validator/advancing/with 1 cosigners and 1 effects/legal/to next state/from Locked to Finished/authority,15755485,47872,3307 -Agora/Proposal/validator/advancing/with 1 cosigners and 1 effects/legal/to next state/from Draft to VotingReady/proposal,237944266,671339,11572 -Agora/Proposal/validator/advancing/with 1 cosigners and 1 effects/legal/to next state/from VotingReady to Locked/proposal,218323093,608073,11335 -Agora/Proposal/validator/advancing/with 1 cosigners and 1 effects/legal/to next state/from Locked to Finished/proposal,232427757,636815,12427 -Agora/Proposal/validator/advancing/with 1 cosigners and 1 effects/legal/to next state/from Locked to Finished/governor,399047347,1078104,12457 -Agora/Proposal/validator/advancing/with 1 cosigners and 1 effects/legal/to next state/from Locked to Finished/authority,80911114,217260,2942 -Agora/Proposal/validator/advancing/with 1 cosigners and 1 effects/legal/to failed state/from Draft to Finished/proposal,212003769,595862,11607 -Agora/Proposal/validator/advancing/with 1 cosigners and 1 effects/legal/to failed state/from VotingReady to Finished/proposal,210329785,586268,11608 -Agora/Proposal/validator/advancing/with 1 cosigners and 1 effects/legal/to failed state/from Locked to Finished/proposal,223217730,618674,11608 -Agora/Proposal/validator/advancing/with 1 cosigners and 1 effects/legal/to failed state/from Draft to Finished/proposal,208192479,583634,11328 -Agora/Proposal/validator/advancing/with 1 cosigners and 1 effects/legal/to failed state/from VotingReady to Finished/proposal,206518495,574040,11329 -Agora/Proposal/validator/advancing/with 1 cosigners and 1 effects/legal/to failed state/from Locked to Finished/proposal,219406440,606446,11329 -Agora/Proposal/validator/advancing/with 1 cosigners and 1 effects/illegal/advance finished proposals/(negative test)/authority,15755485,47872,3307 -Agora/Proposal/validator/advancing/with 1 cosigners and 1 effects/illegal/advance finished proposals/(negative test)/authority,80911114,217260,2942 -Agora/Proposal/validator/advancing/with 1 cosigners and 1 effects/illegal/to next state too late/from Locked/governor,401301925,1085610,12822 -Agora/Proposal/validator/advancing/with 1 cosigners and 1 effects/illegal/to next state too late/from Locked/authority,15755485,47872,3307 -Agora/Proposal/validator/advancing/with 1 cosigners and 1 effects/illegal/to next state too late/from Locked/governor,399047347,1078104,12457 -Agora/Proposal/validator/advancing/with 1 cosigners and 1 effects/illegal/to next state too late/from Locked/authority,80911114,217260,2942 -Agora/Proposal/validator/advancing/with 1 cosigners and 1 effects/illegal/forget to mint GATs/proposal,232427757,636815,11781 -Agora/Proposal/validator/advancing/with 1 cosigners and 1 effects/illegal/mint GATs for wrong validators/proposal,232427757,636815,12427 -Agora/Proposal/validator/advancing/with 1 cosigners and 1 effects/illegal/mint GATs for wrong validators/authority,80911114,217260,2942 -Agora/Proposal/validator/advancing/with 1 cosigners and 1 effects/illegal/mint GATs with bad token name/proposal,232427757,636815,12459 -Agora/Proposal/validator/advancing/with 1 cosigners and 1 effects/illegal/mint GATs with bad token name/authority,12079326,37748,2974 -Agora/Proposal/validator/advancing/with 1 cosigners and 1 effects/illegal/wrong GAT datum/proposal,232427757,636815,12421 -Agora/Proposal/validator/advancing/with 1 cosigners and 1 effects/illegal/wrong GAT datum/authority,80911114,217260,2936 -Agora/Proposal/validator/advancing/with 1 cosigners and 1 effects/illegal/invalid governor output datum/proposal,232427757,636815,12427 -Agora/Proposal/validator/advancing/with 1 cosigners and 1 effects/illegal/invalid governor output datum/authority,80911114,217260,2942 -Agora/Proposal/validator/advancing/with 1 cosigners and 2 effects/legal/to next state/from Draft to VotingReady/proposal,315980276,887869,12767 -Agora/Proposal/validator/advancing/with 1 cosigners and 2 effects/legal/to next state/from VotingReady to Locked/proposal,300053989,834591,12530 -Agora/Proposal/validator/advancing/with 1 cosigners and 2 effects/legal/to next state/from Locked to Finished/proposal,310463767,853345,13801 -Agora/Proposal/validator/advancing/with 1 cosigners and 2 effects/legal/to next state/from Locked to Finished/governor,443037153,1202842,13433 -Agora/Proposal/validator/advancing/with 1 cosigners and 2 effects/legal/to next state/from Locked to Finished/authority,15755485,47872,3918 -Agora/Proposal/validator/advancing/with 1 cosigners and 2 effects/legal/to next state/from Draft to VotingReady/proposal,308357696,863413,12206 -Agora/Proposal/validator/advancing/with 1 cosigners and 2 effects/legal/to next state/from VotingReady to Locked/proposal,292431409,810135,11969 -Agora/Proposal/validator/advancing/with 1 cosigners and 2 effects/legal/to next state/from Locked to Finished/proposal,302841187,828889,13062 -Agora/Proposal/validator/advancing/with 1 cosigners and 2 effects/legal/to next state/from Locked to Finished/governor,439027962,1189222,12881 -Agora/Proposal/validator/advancing/with 1 cosigners and 2 effects/legal/to next state/from Locked to Finished/authority,80911114,217260,3366 -Agora/Proposal/validator/advancing/with 1 cosigners and 2 effects/legal/to failed state/from Draft to Finished/proposal,286228489,800164,12523 -Agora/Proposal/validator/advancing/with 1 cosigners and 2 effects/legal/to failed state/from VotingReady to Finished/proposal,284554505,790570,12524 -Agora/Proposal/validator/advancing/with 1 cosigners and 2 effects/legal/to failed state/from Locked to Finished/proposal,297442450,822976,12524 -Agora/Proposal/validator/advancing/with 1 cosigners and 2 effects/legal/to failed state/from Draft to Finished/proposal,278605909,775708,11962 -Agora/Proposal/validator/advancing/with 1 cosigners and 2 effects/legal/to failed state/from VotingReady to Finished/proposal,276931925,766114,11963 -Agora/Proposal/validator/advancing/with 1 cosigners and 2 effects/legal/to failed state/from Locked to Finished/proposal,289819870,798520,11963 -Agora/Proposal/validator/advancing/with 1 cosigners and 2 effects/illegal/advance finished proposals/(negative test)/authority,15755485,47872,3918 -Agora/Proposal/validator/advancing/with 1 cosigners and 2 effects/illegal/advance finished proposals/(negative test)/authority,80911114,217260,3366 -Agora/Proposal/validator/advancing/with 1 cosigners and 2 effects/illegal/to next state too late/from Locked/governor,443037153,1202842,13433 -Agora/Proposal/validator/advancing/with 1 cosigners and 2 effects/illegal/to next state too late/from Locked/authority,15755485,47872,3918 -Agora/Proposal/validator/advancing/with 1 cosigners and 2 effects/illegal/to next state too late/from Locked/governor,439027962,1189222,12881 -Agora/Proposal/validator/advancing/with 1 cosigners and 2 effects/illegal/to next state too late/from Locked/authority,80911114,217260,3366 -Agora/Proposal/validator/advancing/with 1 cosigners and 2 effects/illegal/forget to mint GATs/proposal,302841187,828889,12416 -Agora/Proposal/validator/advancing/with 1 cosigners and 2 effects/illegal/mint GATs for wrong validators/proposal,302841187,828889,13062 -Agora/Proposal/validator/advancing/with 1 cosigners and 2 effects/illegal/mint GATs for wrong validators/authority,80911114,217260,3366 -Agora/Proposal/validator/advancing/with 1 cosigners and 2 effects/illegal/mint GATs with bad token name/proposal,302841187,828889,13094 -Agora/Proposal/validator/advancing/with 1 cosigners and 2 effects/illegal/mint GATs with bad token name/authority,12079326,37748,3398 -Agora/Proposal/validator/advancing/with 1 cosigners and 2 effects/illegal/wrong GAT datum/proposal,302841187,828889,13056 -Agora/Proposal/validator/advancing/with 1 cosigners and 2 effects/illegal/wrong GAT datum/authority,80911114,217260,3360 -Agora/Proposal/validator/advancing/with 1 cosigners and 2 effects/illegal/invalid governor output datum/proposal,302841187,828889,13062 -Agora/Proposal/validator/advancing/with 1 cosigners and 2 effects/illegal/invalid governor output datum/authority,80911114,217260,3366 -Agora/Proposal/validator/advancing/with 1 cosigners and 5 effects/legal/to next state/from Draft to VotingReady/proposal,538654436,1500775,15514 -Agora/Proposal/validator/advancing/with 1 cosigners and 5 effects/legal/to next state/from VotingReady to Locked/proposal,533812807,1477461,15277 -Agora/Proposal/validator/advancing/with 1 cosigners and 5 effects/legal/to next state/from Locked to Finished/proposal,533137927,1466251,16548 -Agora/Proposal/validator/advancing/with 1 cosigners and 5 effects/legal/to next state/from Locked to Finished/governor,568242837,1554538,15264 -Agora/Proposal/validator/advancing/with 1 cosigners and 5 effects/legal/to next state/from Locked to Finished/authority,15755485,47872,5749 -Agora/Proposal/validator/advancing/with 1 cosigners and 5 effects/legal/to next state/from Draft to VotingReady/proposal,519597986,1439635,14113 -Agora/Proposal/validator/advancing/with 1 cosigners and 5 effects/legal/to next state/from VotingReady to Locked/proposal,514756357,1416321,13876 -Agora/Proposal/validator/advancing/with 1 cosigners and 5 effects/legal/to next state/from Locked to Finished/proposal,514081477,1405111,14969 -Agora/Proposal/validator/advancing/with 1 cosigners and 5 effects/legal/to next state/from Locked to Finished/governor,558969807,1522576,14152 -Agora/Proposal/validator/advancing/with 1 cosigners and 5 effects/legal/to next state/from Locked to Finished/authority,80911114,217260,4637 -Agora/Proposal/validator/advancing/with 1 cosigners and 5 effects/legal/to failed state/from Draft to Finished/proposal,508902649,1413070,15270 -Agora/Proposal/validator/advancing/with 1 cosigners and 5 effects/legal/to failed state/from VotingReady to Finished/proposal,507228665,1403476,15271 -Agora/Proposal/validator/advancing/with 1 cosigners and 5 effects/legal/to failed state/from Locked to Finished/proposal,520116610,1435882,15271 -Agora/Proposal/validator/advancing/with 1 cosigners and 5 effects/legal/to failed state/from Draft to Finished/proposal,489846199,1351930,13869 -Agora/Proposal/validator/advancing/with 1 cosigners and 5 effects/legal/to failed state/from VotingReady to Finished/proposal,488172215,1342336,13870 -Agora/Proposal/validator/advancing/with 1 cosigners and 5 effects/legal/to failed state/from Locked to Finished/proposal,501060160,1374742,13870 -Agora/Proposal/validator/advancing/with 1 cosigners and 5 effects/illegal/advance finished proposals/(negative test)/authority,15755485,47872,5749 -Agora/Proposal/validator/advancing/with 1 cosigners and 5 effects/illegal/advance finished proposals/(negative test)/authority,80911114,217260,4637 -Agora/Proposal/validator/advancing/with 1 cosigners and 5 effects/illegal/to next state too late/from Locked/governor,568242837,1554538,15264 -Agora/Proposal/validator/advancing/with 1 cosigners and 5 effects/illegal/to next state too late/from Locked/authority,15755485,47872,5749 -Agora/Proposal/validator/advancing/with 1 cosigners and 5 effects/illegal/to next state too late/from Locked/governor,558969807,1522576,14152 -Agora/Proposal/validator/advancing/with 1 cosigners and 5 effects/illegal/to next state too late/from Locked/authority,80911114,217260,4637 -Agora/Proposal/validator/advancing/with 1 cosigners and 5 effects/illegal/forget to mint GATs/proposal,514081477,1405111,14323 -Agora/Proposal/validator/advancing/with 1 cosigners and 5 effects/illegal/mint GATs for wrong validators/proposal,514081477,1405111,14969 -Agora/Proposal/validator/advancing/with 1 cosigners and 5 effects/illegal/mint GATs for wrong validators/authority,80911114,217260,4637 -Agora/Proposal/validator/advancing/with 1 cosigners and 5 effects/illegal/mint GATs with bad token name/proposal,514081477,1405111,15001 -Agora/Proposal/validator/advancing/with 1 cosigners and 5 effects/illegal/mint GATs with bad token name/authority,12079326,37748,4669 -Agora/Proposal/validator/advancing/with 1 cosigners and 5 effects/illegal/wrong GAT datum/proposal,514081477,1405111,14963 -Agora/Proposal/validator/advancing/with 1 cosigners and 5 effects/illegal/wrong GAT datum/authority,80911114,217260,4631 -Agora/Proposal/validator/advancing/with 1 cosigners and 5 effects/illegal/invalid governor output datum/proposal,514081477,1405111,14969 -Agora/Proposal/validator/advancing/with 1 cosigners and 5 effects/illegal/invalid governor output datum/authority,80911114,217260,4637 -Agora/Proposal/validator/advancing/with 5 cosigners and 1 effects/legal/to next state/from Draft to VotingReady/proposal,418041446,1190051,13352 -Agora/Proposal/validator/advancing/with 5 cosigners and 1 effects/legal/to next state/from VotingReady to Locked/proposal,252485103,704029,12025 -Agora/Proposal/validator/advancing/with 5 cosigners and 1 effects/legal/to next state/from Locked to Finished/proposal,266589767,732771,13295 -Agora/Proposal/validator/advancing/with 5 cosigners and 1 effects/legal/to next state/from Locked to Finished/governor,416175221,1127474,13095 -Agora/Proposal/validator/advancing/with 5 cosigners and 1 effects/legal/to next state/from Locked to Finished/authority,15755485,47872,3580 -Agora/Proposal/validator/advancing/with 5 cosigners and 1 effects/legal/to next state/from Draft to VotingReady/proposal,414230156,1177823,13071 -Agora/Proposal/validator/advancing/with 5 cosigners and 1 effects/legal/to next state/from VotingReady to Locked/proposal,248673813,691801,11744 -Agora/Proposal/validator/advancing/with 5 cosigners and 1 effects/legal/to next state/from Locked to Finished/proposal,262778477,720543,12836 -Agora/Proposal/validator/advancing/with 5 cosigners and 1 effects/legal/to next state/from Locked to Finished/governor,413920643,1119968,12730 -Agora/Proposal/validator/advancing/with 5 cosigners and 1 effects/legal/to next state/from Locked to Finished/authority,80911114,217260,3215 -Agora/Proposal/validator/advancing/with 5 cosigners and 1 effects/legal/to failed state/from Draft to Finished/proposal,242354489,679590,12017 -Agora/Proposal/validator/advancing/with 5 cosigners and 1 effects/legal/to failed state/from VotingReady to Finished/proposal,240680505,669996,12018 -Agora/Proposal/validator/advancing/with 5 cosigners and 1 effects/legal/to failed state/from Locked to Finished/proposal,253568450,702402,12018 -Agora/Proposal/validator/advancing/with 5 cosigners and 1 effects/legal/to failed state/from Draft to Finished/proposal,238543199,667362,11737 -Agora/Proposal/validator/advancing/with 5 cosigners and 1 effects/legal/to failed state/from VotingReady to Finished/proposal,236869215,657768,11738 -Agora/Proposal/validator/advancing/with 5 cosigners and 1 effects/legal/to failed state/from Locked to Finished/proposal,249757160,690174,11738 -Agora/Proposal/validator/advancing/with 5 cosigners and 1 effects/illegal/advance finished proposals/(negative test)/authority,15755485,47872,3580 -Agora/Proposal/validator/advancing/with 5 cosigners and 1 effects/illegal/advance finished proposals/(negative test)/authority,80911114,217260,3215 -Agora/Proposal/validator/advancing/with 5 cosigners and 1 effects/illegal/to next state too late/from Locked/governor,416175221,1127474,13095 -Agora/Proposal/validator/advancing/with 5 cosigners and 1 effects/illegal/to next state too late/from Locked/authority,15755485,47872,3580 -Agora/Proposal/validator/advancing/with 5 cosigners and 1 effects/illegal/to next state too late/from Locked/governor,413920643,1119968,12730 -Agora/Proposal/validator/advancing/with 5 cosigners and 1 effects/illegal/to next state too late/from Locked/authority,80911114,217260,3215 -Agora/Proposal/validator/advancing/with 5 cosigners and 1 effects/illegal/forget to mint GATs/proposal,262778477,720543,12191 -Agora/Proposal/validator/advancing/with 5 cosigners and 1 effects/illegal/mint GATs for wrong validators/proposal,262778477,720543,12836 -Agora/Proposal/validator/advancing/with 5 cosigners and 1 effects/illegal/mint GATs for wrong validators/authority,80911114,217260,3215 -Agora/Proposal/validator/advancing/with 5 cosigners and 1 effects/illegal/mint GATs with bad token name/proposal,262778477,720543,12868 -Agora/Proposal/validator/advancing/with 5 cosigners and 1 effects/illegal/mint GATs with bad token name/authority,12079326,37748,3247 -Agora/Proposal/validator/advancing/with 5 cosigners and 1 effects/illegal/wrong GAT datum/proposal,262778477,720543,12830 -Agora/Proposal/validator/advancing/with 5 cosigners and 1 effects/illegal/wrong GAT datum/authority,80911114,217260,3209 -Agora/Proposal/validator/advancing/with 5 cosigners and 1 effects/illegal/invalid governor output datum/proposal,262778477,720543,12836 -Agora/Proposal/validator/advancing/with 5 cosigners and 1 effects/illegal/invalid governor output datum/authority,80911114,217260,3215 -Agora/Proposal/validator/advancing/with 5 cosigners and 2 effects/legal/to next state/from Draft to VotingReady/proposal,492266166,1394353,14267 -Agora/Proposal/validator/advancing/with 5 cosigners and 2 effects/legal/to next state/from VotingReady to Locked/proposal,330404709,918319,12940 -Agora/Proposal/validator/advancing/with 5 cosigners and 2 effects/legal/to next state/from Locked to Finished/proposal,340814487,937073,14211 -Agora/Proposal/validator/advancing/with 5 cosigners and 2 effects/legal/to next state/from Locked to Finished/governor,457910449,1244706,13706 -Agora/Proposal/validator/advancing/with 5 cosigners and 2 effects/legal/to next state/from Locked to Finished/authority,15755485,47872,4191 -Agora/Proposal/validator/advancing/with 5 cosigners and 2 effects/legal/to next state/from Draft to VotingReady/proposal,484643586,1369897,13707 -Agora/Proposal/validator/advancing/with 5 cosigners and 2 effects/legal/to next state/from VotingReady to Locked/proposal,322782129,893863,12379 -Agora/Proposal/validator/advancing/with 5 cosigners and 2 effects/legal/to next state/from Locked to Finished/proposal,333191907,912617,13472 -Agora/Proposal/validator/advancing/with 5 cosigners and 2 effects/legal/to next state/from Locked to Finished/governor,453901258,1231086,13154 -Agora/Proposal/validator/advancing/with 5 cosigners and 2 effects/legal/to next state/from Locked to Finished/authority,80911114,217260,3639 -Agora/Proposal/validator/advancing/with 5 cosigners and 2 effects/legal/to failed state/from Draft to Finished/proposal,316579209,883892,12933 -Agora/Proposal/validator/advancing/with 5 cosigners and 2 effects/legal/to failed state/from VotingReady to Finished/proposal,314905225,874298,12934 -Agora/Proposal/validator/advancing/with 5 cosigners and 2 effects/legal/to failed state/from Locked to Finished/proposal,327793170,906704,12934 -Agora/Proposal/validator/advancing/with 5 cosigners and 2 effects/legal/to failed state/from Draft to Finished/proposal,308956629,859436,12372 -Agora/Proposal/validator/advancing/with 5 cosigners and 2 effects/legal/to failed state/from VotingReady to Finished/proposal,307282645,849842,12373 -Agora/Proposal/validator/advancing/with 5 cosigners and 2 effects/legal/to failed state/from Locked to Finished/proposal,320170590,882248,12373 -Agora/Proposal/validator/advancing/with 5 cosigners and 2 effects/illegal/advance finished proposals/(negative test)/authority,15755485,47872,4191 -Agora/Proposal/validator/advancing/with 5 cosigners and 2 effects/illegal/advance finished proposals/(negative test)/authority,80911114,217260,3639 -Agora/Proposal/validator/advancing/with 5 cosigners and 2 effects/illegal/to next state too late/from Locked/governor,457910449,1244706,13706 -Agora/Proposal/validator/advancing/with 5 cosigners and 2 effects/illegal/to next state too late/from Locked/authority,15755485,47872,4191 -Agora/Proposal/validator/advancing/with 5 cosigners and 2 effects/illegal/to next state too late/from Locked/governor,453901258,1231086,13154 -Agora/Proposal/validator/advancing/with 5 cosigners and 2 effects/illegal/to next state too late/from Locked/authority,80911114,217260,3639 -Agora/Proposal/validator/advancing/with 5 cosigners and 2 effects/illegal/forget to mint GATs/proposal,333191907,912617,12826 -Agora/Proposal/validator/advancing/with 5 cosigners and 2 effects/illegal/mint GATs for wrong validators/proposal,333191907,912617,13472 -Agora/Proposal/validator/advancing/with 5 cosigners and 2 effects/illegal/mint GATs for wrong validators/authority,80911114,217260,3639 -Agora/Proposal/validator/advancing/with 5 cosigners and 2 effects/illegal/mint GATs with bad token name/proposal,333191907,912617,13504 -Agora/Proposal/validator/advancing/with 5 cosigners and 2 effects/illegal/mint GATs with bad token name/authority,12079326,37748,3671 -Agora/Proposal/validator/advancing/with 5 cosigners and 2 effects/illegal/wrong GAT datum/proposal,333191907,912617,13466 -Agora/Proposal/validator/advancing/with 5 cosigners and 2 effects/illegal/wrong GAT datum/authority,80911114,217260,3633 -Agora/Proposal/validator/advancing/with 5 cosigners and 2 effects/illegal/invalid governor output datum/proposal,333191907,912617,13472 -Agora/Proposal/validator/advancing/with 5 cosigners and 2 effects/illegal/invalid governor output datum/authority,80911114,217260,3639 -Agora/Proposal/validator/advancing/with 5 cosigners and 5 effects/legal/to next state/from Draft to VotingReady/proposal,714940326,2007259,17013 -Agora/Proposal/validator/advancing/with 5 cosigners and 5 effects/legal/to next state/from VotingReady to Locked/proposal,564163527,1561189,15686 -Agora/Proposal/validator/advancing/with 5 cosigners and 5 effects/legal/to next state/from Locked to Finished/proposal,563488647,1549979,16957 -Agora/Proposal/validator/advancing/with 5 cosigners and 5 effects/legal/to next state/from Locked to Finished/governor,583116133,1596402,15537 -Agora/Proposal/validator/advancing/with 5 cosigners and 5 effects/legal/to next state/from Locked to Finished/authority,15755485,47872,6022 -Agora/Proposal/validator/advancing/with 5 cosigners and 5 effects/legal/to next state/from Draft to VotingReady/proposal,695883876,1946119,15613 -Agora/Proposal/validator/advancing/with 5 cosigners and 5 effects/legal/to next state/from VotingReady to Locked/proposal,545107077,1500049,14285 -Agora/Proposal/validator/advancing/with 5 cosigners and 5 effects/legal/to next state/from Locked to Finished/proposal,544432197,1488839,15378 -Agora/Proposal/validator/advancing/with 5 cosigners and 5 effects/legal/to next state/from Locked to Finished/governor,573843103,1564440,14425 -Agora/Proposal/validator/advancing/with 5 cosigners and 5 effects/legal/to next state/from Locked to Finished/authority,80911114,217260,4910 -Agora/Proposal/validator/advancing/with 5 cosigners and 5 effects/legal/to failed state/from Draft to Finished/proposal,539253369,1496798,15679 -Agora/Proposal/validator/advancing/with 5 cosigners and 5 effects/legal/to failed state/from VotingReady to Finished/proposal,537579385,1487204,15680 -Agora/Proposal/validator/advancing/with 5 cosigners and 5 effects/legal/to failed state/from Locked to Finished/proposal,550467330,1519610,15680 -Agora/Proposal/validator/advancing/with 5 cosigners and 5 effects/legal/to failed state/from Draft to Finished/proposal,520196919,1435658,14278 -Agora/Proposal/validator/advancing/with 5 cosigners and 5 effects/legal/to failed state/from VotingReady to Finished/proposal,518522935,1426064,14279 -Agora/Proposal/validator/advancing/with 5 cosigners and 5 effects/legal/to failed state/from Locked to Finished/proposal,531410880,1458470,14279 -Agora/Proposal/validator/advancing/with 5 cosigners and 5 effects/illegal/advance finished proposals/(negative test)/authority,15755485,47872,6022 -Agora/Proposal/validator/advancing/with 5 cosigners and 5 effects/illegal/advance finished proposals/(negative test)/authority,80911114,217260,4910 -Agora/Proposal/validator/advancing/with 5 cosigners and 5 effects/illegal/to next state too late/from Locked/governor,583116133,1596402,15537 -Agora/Proposal/validator/advancing/with 5 cosigners and 5 effects/illegal/to next state too late/from Locked/authority,15755485,47872,6022 -Agora/Proposal/validator/advancing/with 5 cosigners and 5 effects/illegal/to next state too late/from Locked/governor,573843103,1564440,14425 -Agora/Proposal/validator/advancing/with 5 cosigners and 5 effects/illegal/to next state too late/from Locked/authority,80911114,217260,4910 -Agora/Proposal/validator/advancing/with 5 cosigners and 5 effects/illegal/forget to mint GATs/proposal,544432197,1488839,14732 -Agora/Proposal/validator/advancing/with 5 cosigners and 5 effects/illegal/mint GATs for wrong validators/proposal,544432197,1488839,15378 -Agora/Proposal/validator/advancing/with 5 cosigners and 5 effects/illegal/mint GATs for wrong validators/authority,80911114,217260,4910 -Agora/Proposal/validator/advancing/with 5 cosigners and 5 effects/illegal/mint GATs with bad token name/proposal,544432197,1488839,15410 -Agora/Proposal/validator/advancing/with 5 cosigners and 5 effects/illegal/mint GATs with bad token name/authority,12079326,37748,4942 -Agora/Proposal/validator/advancing/with 5 cosigners and 5 effects/illegal/wrong GAT datum/proposal,544432197,1488839,15372 -Agora/Proposal/validator/advancing/with 5 cosigners and 5 effects/illegal/wrong GAT datum/authority,80911114,217260,4904 -Agora/Proposal/validator/advancing/with 5 cosigners and 5 effects/illegal/invalid governor output datum/proposal,544432197,1488839,15378 -Agora/Proposal/validator/advancing/with 5 cosigners and 5 effects/illegal/invalid governor output datum/authority,80911114,217260,4910 -Agora/Proposal/validator/advancing/with 10 cosigners and 1 effects/legal/to next state/from Draft to VotingReady/proposal,653562252,1868847,15228 -Agora/Proposal/validator/advancing/with 10 cosigners and 1 effects/legal/to next state/from VotingReady to Locked/proposal,290423503,808689,12536 -Agora/Proposal/validator/advancing/with 10 cosigners and 1 effects/legal/to next state/from Locked to Finished/proposal,304528167,837431,13807 -Agora/Proposal/validator/advancing/with 10 cosigners and 1 effects/legal/to next state/from Locked to Finished/governor,434766841,1179804,13437 -Agora/Proposal/validator/advancing/with 10 cosigners and 1 effects/legal/to next state/from Locked to Finished/authority,15755485,47872,3922 -Agora/Proposal/validator/advancing/with 10 cosigners and 1 effects/legal/to next state/from Draft to VotingReady/proposal,649750962,1856619,14949 -Agora/Proposal/validator/advancing/with 10 cosigners and 1 effects/legal/to next state/from VotingReady to Locked/proposal,286612213,796461,12256 -Agora/Proposal/validator/advancing/with 10 cosigners and 1 effects/legal/to next state/from Locked to Finished/proposal,300716877,825203,13348 -Agora/Proposal/validator/advancing/with 10 cosigners and 1 effects/legal/to next state/from Locked to Finished/governor,432512263,1172298,13071 -Agora/Proposal/validator/advancing/with 10 cosigners and 1 effects/legal/to next state/from Locked to Finished/authority,80911114,217260,3556 -Agora/Proposal/validator/advancing/with 10 cosigners and 1 effects/legal/to failed state/from Draft to Finished/proposal,280292889,784250,12529 -Agora/Proposal/validator/advancing/with 10 cosigners and 1 effects/legal/to failed state/from VotingReady to Finished/proposal,278618905,774656,12530 -Agora/Proposal/validator/advancing/with 10 cosigners and 1 effects/legal/to failed state/from Locked to Finished/proposal,291506850,807062,12530 -Agora/Proposal/validator/advancing/with 10 cosigners and 1 effects/legal/to failed state/from Draft to Finished/proposal,276481599,772022,12249 -Agora/Proposal/validator/advancing/with 10 cosigners and 1 effects/legal/to failed state/from VotingReady to Finished/proposal,274807615,762428,12250 -Agora/Proposal/validator/advancing/with 10 cosigners and 1 effects/legal/to failed state/from Locked to Finished/proposal,287695560,794834,12250 -Agora/Proposal/validator/advancing/with 10 cosigners and 1 effects/illegal/advance finished proposals/(negative test)/authority,15755485,47872,3922 -Agora/Proposal/validator/advancing/with 10 cosigners and 1 effects/illegal/advance finished proposals/(negative test)/authority,80911114,217260,3556 -Agora/Proposal/validator/advancing/with 10 cosigners and 1 effects/illegal/to next state too late/from Locked/governor,434766841,1179804,13437 -Agora/Proposal/validator/advancing/with 10 cosigners and 1 effects/illegal/to next state too late/from Locked/authority,15755485,47872,3922 -Agora/Proposal/validator/advancing/with 10 cosigners and 1 effects/illegal/to next state too late/from Locked/governor,432512263,1172298,13071 -Agora/Proposal/validator/advancing/with 10 cosigners and 1 effects/illegal/to next state too late/from Locked/authority,80911114,217260,3556 -Agora/Proposal/validator/advancing/with 10 cosigners and 1 effects/illegal/forget to mint GATs/proposal,300716877,825203,12703 -Agora/Proposal/validator/advancing/with 10 cosigners and 1 effects/illegal/mint GATs for wrong validators/proposal,300716877,825203,13348 -Agora/Proposal/validator/advancing/with 10 cosigners and 1 effects/illegal/mint GATs for wrong validators/authority,80911114,217260,3556 -Agora/Proposal/validator/advancing/with 10 cosigners and 1 effects/illegal/mint GATs with bad token name/proposal,300716877,825203,13381 -Agora/Proposal/validator/advancing/with 10 cosigners and 1 effects/illegal/mint GATs with bad token name/authority,12079326,37748,3588 -Agora/Proposal/validator/advancing/with 10 cosigners and 1 effects/illegal/wrong GAT datum/proposal,300716877,825203,13342 -Agora/Proposal/validator/advancing/with 10 cosigners and 1 effects/illegal/wrong GAT datum/authority,80911114,217260,3550 -Agora/Proposal/validator/advancing/with 10 cosigners and 1 effects/illegal/invalid governor output datum/proposal,300716877,825203,13348 -Agora/Proposal/validator/advancing/with 10 cosigners and 1 effects/illegal/invalid governor output datum/authority,80911114,217260,3556 -Agora/Proposal/validator/advancing/with 10 cosigners and 2 effects/legal/to next state/from Draft to VotingReady/proposal,727786972,2073149,16144 -Agora/Proposal/validator/advancing/with 10 cosigners and 2 effects/legal/to next state/from VotingReady to Locked/proposal,368343109,1022979,13451 -Agora/Proposal/validator/advancing/with 10 cosigners and 2 effects/legal/to next state/from Locked to Finished/proposal,378752887,1041733,14722 -Agora/Proposal/validator/advancing/with 10 cosigners and 2 effects/legal/to next state/from Locked to Finished/governor,476502069,1297036,14047 -Agora/Proposal/validator/advancing/with 10 cosigners and 2 effects/legal/to next state/from Locked to Finished/authority,15755485,47872,4532 -Agora/Proposal/validator/advancing/with 10 cosigners and 2 effects/legal/to next state/from Draft to VotingReady/proposal,720164392,2048693,15584 -Agora/Proposal/validator/advancing/with 10 cosigners and 2 effects/legal/to next state/from VotingReady to Locked/proposal,360720529,998523,12892 -Agora/Proposal/validator/advancing/with 10 cosigners and 2 effects/legal/to next state/from Locked to Finished/proposal,371130307,1017277,13984 -Agora/Proposal/validator/advancing/with 10 cosigners and 2 effects/legal/to next state/from Locked to Finished/governor,472492878,1283416,13495 -Agora/Proposal/validator/advancing/with 10 cosigners and 2 effects/legal/to next state/from Locked to Finished/authority,80911114,217260,3980 -Agora/Proposal/validator/advancing/with 10 cosigners and 2 effects/legal/to failed state/from Draft to Finished/proposal,354517609,988552,13444 -Agora/Proposal/validator/advancing/with 10 cosigners and 2 effects/legal/to failed state/from VotingReady to Finished/proposal,352843625,978958,13445 -Agora/Proposal/validator/advancing/with 10 cosigners and 2 effects/legal/to failed state/from Locked to Finished/proposal,365731570,1011364,13445 -Agora/Proposal/validator/advancing/with 10 cosigners and 2 effects/legal/to failed state/from Draft to Finished/proposal,346895029,964096,12885 -Agora/Proposal/validator/advancing/with 10 cosigners and 2 effects/legal/to failed state/from VotingReady to Finished/proposal,345221045,954502,12886 -Agora/Proposal/validator/advancing/with 10 cosigners and 2 effects/legal/to failed state/from Locked to Finished/proposal,358108990,986908,12886 -Agora/Proposal/validator/advancing/with 10 cosigners and 2 effects/illegal/advance finished proposals/(negative test)/authority,15755485,47872,4532 -Agora/Proposal/validator/advancing/with 10 cosigners and 2 effects/illegal/advance finished proposals/(negative test)/authority,80911114,217260,3980 -Agora/Proposal/validator/advancing/with 10 cosigners and 2 effects/illegal/to next state too late/from Locked/governor,476502069,1297036,14047 -Agora/Proposal/validator/advancing/with 10 cosigners and 2 effects/illegal/to next state too late/from Locked/authority,15755485,47872,4532 -Agora/Proposal/validator/advancing/with 10 cosigners and 2 effects/illegal/to next state too late/from Locked/governor,472492878,1283416,13495 -Agora/Proposal/validator/advancing/with 10 cosigners and 2 effects/illegal/to next state too late/from Locked/authority,80911114,217260,3980 -Agora/Proposal/validator/advancing/with 10 cosigners and 2 effects/illegal/forget to mint GATs/proposal,371130307,1017277,13339 -Agora/Proposal/validator/advancing/with 10 cosigners and 2 effects/illegal/mint GATs for wrong validators/proposal,371130307,1017277,13984 -Agora/Proposal/validator/advancing/with 10 cosigners and 2 effects/illegal/mint GATs for wrong validators/authority,80911114,217260,3980 -Agora/Proposal/validator/advancing/with 10 cosigners and 2 effects/illegal/mint GATs with bad token name/proposal,371130307,1017277,14016 -Agora/Proposal/validator/advancing/with 10 cosigners and 2 effects/illegal/mint GATs with bad token name/authority,12079326,37748,4012 -Agora/Proposal/validator/advancing/with 10 cosigners and 2 effects/illegal/wrong GAT datum/proposal,371130307,1017277,13978 -Agora/Proposal/validator/advancing/with 10 cosigners and 2 effects/illegal/wrong GAT datum/authority,80911114,217260,3974 -Agora/Proposal/validator/advancing/with 10 cosigners and 2 effects/illegal/invalid governor output datum/proposal,371130307,1017277,13984 -Agora/Proposal/validator/advancing/with 10 cosigners and 2 effects/illegal/invalid governor output datum/authority,80911114,217260,3980 -Agora/Proposal/validator/advancing/with 10 cosigners and 5 effects/legal/to next state/from Draft to VotingReady/proposal,950461132,2686055,18891 -Agora/Proposal/validator/advancing/with 10 cosigners and 5 effects/legal/to next state/from VotingReady to Locked/proposal,602101927,1665849,16198 -Agora/Proposal/validator/advancing/with 10 cosigners and 5 effects/legal/to next state/from Locked to Finished/proposal,601427047,1654639,17469 -Agora/Proposal/validator/advancing/with 10 cosigners and 5 effects/legal/to next state/from Locked to Finished/governor,601707753,1648732,15878 -Agora/Proposal/validator/advancing/with 10 cosigners and 5 effects/legal/to next state/from Locked to Finished/authority,15755485,47872,6363 -Agora/Proposal/validator/advancing/with 10 cosigners and 5 effects/legal/to next state/from Draft to VotingReady/proposal,931404682,2624915,17490 -Agora/Proposal/validator/advancing/with 10 cosigners and 5 effects/legal/to next state/from VotingReady to Locked/proposal,583045477,1604709,14798 -Agora/Proposal/validator/advancing/with 10 cosigners and 5 effects/legal/to next state/from Locked to Finished/proposal,582370597,1593499,15890 -Agora/Proposal/validator/advancing/with 10 cosigners and 5 effects/legal/to next state/from Locked to Finished/governor,592434723,1616770,14766 -Agora/Proposal/validator/advancing/with 10 cosigners and 5 effects/legal/to next state/from Locked to Finished/authority,80911114,217260,5251 -Agora/Proposal/validator/advancing/with 10 cosigners and 5 effects/legal/to failed state/from Draft to Finished/proposal,577191769,1601458,16191 -Agora/Proposal/validator/advancing/with 10 cosigners and 5 effects/legal/to failed state/from VotingReady to Finished/proposal,575517785,1591864,16192 -Agora/Proposal/validator/advancing/with 10 cosigners and 5 effects/legal/to failed state/from Locked to Finished/proposal,588405730,1624270,16192 -Agora/Proposal/validator/advancing/with 10 cosigners and 5 effects/legal/to failed state/from Draft to Finished/proposal,558135319,1540318,14791 -Agora/Proposal/validator/advancing/with 10 cosigners and 5 effects/legal/to failed state/from VotingReady to Finished/proposal,556461335,1530724,14792 -Agora/Proposal/validator/advancing/with 10 cosigners and 5 effects/legal/to failed state/from Locked to Finished/proposal,569349280,1563130,14792 -Agora/Proposal/validator/advancing/with 10 cosigners and 5 effects/illegal/advance finished proposals/(negative test)/authority,15755485,47872,6363 -Agora/Proposal/validator/advancing/with 10 cosigners and 5 effects/illegal/advance finished proposals/(negative test)/authority,80911114,217260,5251 -Agora/Proposal/validator/advancing/with 10 cosigners and 5 effects/illegal/to next state too late/from Locked/governor,601707753,1648732,15878 -Agora/Proposal/validator/advancing/with 10 cosigners and 5 effects/illegal/to next state too late/from Locked/authority,15755485,47872,6363 -Agora/Proposal/validator/advancing/with 10 cosigners and 5 effects/illegal/to next state too late/from Locked/governor,592434723,1616770,14766 -Agora/Proposal/validator/advancing/with 10 cosigners and 5 effects/illegal/to next state too late/from Locked/authority,80911114,217260,5251 -Agora/Proposal/validator/advancing/with 10 cosigners and 5 effects/illegal/forget to mint GATs/proposal,582370597,1593499,15244 -Agora/Proposal/validator/advancing/with 10 cosigners and 5 effects/illegal/mint GATs for wrong validators/proposal,582370597,1593499,15890 -Agora/Proposal/validator/advancing/with 10 cosigners and 5 effects/illegal/mint GATs for wrong validators/authority,80911114,217260,5251 -Agora/Proposal/validator/advancing/with 10 cosigners and 5 effects/illegal/mint GATs with bad token name/proposal,582370597,1593499,15922 -Agora/Proposal/validator/advancing/with 10 cosigners and 5 effects/illegal/mint GATs with bad token name/authority,12079326,37748,5283 -Agora/Proposal/validator/advancing/with 10 cosigners and 5 effects/illegal/wrong GAT datum/proposal,582370597,1593499,15884 -Agora/Proposal/validator/advancing/with 10 cosigners and 5 effects/illegal/wrong GAT datum/authority,80911114,217260,5245 -Agora/Proposal/validator/advancing/with 10 cosigners and 5 effects/illegal/invalid governor output datum/proposal,582370597,1593499,15890 -Agora/Proposal/validator/advancing/with 10 cosigners and 5 effects/illegal/invalid governor output datum/authority,80911114,217260,5251 -Agora/Proposal/validator/unlocking/legal/with 1 stakes/voter: retract votes while voting/stake,286583408,781140,8111 -Agora/Proposal/validator/unlocking/legal/with 1 stakes/voter: retract votes while voting/proposal,211726371,599872,11464 -Agora/Proposal/validator/unlocking/legal/with 1 stakes/voter: retract votes while voting by delegatee/stake,293410303,798296,8111 -Agora/Proposal/validator/unlocking/legal/with 1 stakes/voter: retract votes while voting by delegatee/proposal,211726371,599872,11464 -Agora/Proposal/validator/unlocking/legal/with 1 stakes/voter/creator: retract votes while voting/stake,297089663,811742,8127 -Agora/Proposal/validator/unlocking/legal/with 1 stakes/voter/creator: retract votes while voting/proposal,218061775,618286,11475 -Agora/Proposal/validator/unlocking/legal/with 1 stakes/creator: remove creator lock after voting/stake,287584665,784347,8114 -Agora/Proposal/validator/unlocking/legal/with 1 stakes/creator: remove creator lock after voting/proposal,182085595,516679,11468 -Agora/Proposal/validator/unlocking/legal/with 1 stakes/Voter: remove lock after voting/stake,287714386,783544,8116 -Agora/Proposal/validator/unlocking/legal/with 1 stakes/Voter: remove lock after voting/proposal,183123872,519477,11469 -Agora/Proposal/validator/unlocking/legal/with 3 stakes/voter: retract votes while voting/stake,606983718,1573538,9456 -Agora/Proposal/validator/unlocking/legal/with 3 stakes/voter: retract votes while voting/proposal,321452619,905880,12809 -Agora/Proposal/validator/unlocking/legal/with 3 stakes/voter: retract votes while voting by delegatee/stake,613810613,1590694,9456 -Agora/Proposal/validator/unlocking/legal/with 3 stakes/voter: retract votes while voting by delegatee/proposal,321452619,905880,12809 -Agora/Proposal/validator/unlocking/legal/with 3 stakes/voter/creator: retract votes while voting/stake,638502483,1665344,9494 -Agora/Proposal/validator/unlocking/legal/with 3 stakes/voter/creator: retract votes while voting/proposal,340458831,961122,12842 -Agora/Proposal/validator/unlocking/legal/with 3 stakes/creator: remove creator lock after voting/stake,607725533,1578351,9457 -Agora/Proposal/validator/unlocking/legal/with 3 stakes/creator: remove creator lock after voting/proposal,248010757,696223,12811 -Agora/Proposal/validator/unlocking/legal/with 3 stakes/Voter: remove lock after voting/stake,608114696,1575942,9461 -Agora/Proposal/validator/unlocking/legal/with 3 stakes/Voter: remove lock after voting/proposal,251125588,704617,12814 -Agora/Proposal/validator/unlocking/legal/with 5 stakes/voter: retract votes while voting/stake,947030684,2397376,10802 -Agora/Proposal/validator/unlocking/legal/with 5 stakes/voter: retract votes while voting/proposal,431178867,1211888,14155 -Agora/Proposal/validator/unlocking/legal/with 5 stakes/voter: retract votes while voting by delegatee/stake,953857579,2414532,10802 -Agora/Proposal/validator/unlocking/legal/with 5 stakes/voter: retract votes while voting by delegatee/proposal,431178867,1211888,14155 -Agora/Proposal/validator/unlocking/legal/with 5 stakes/voter/creator: retract votes while voting/stake,999561959,2550386,10862 -Agora/Proposal/validator/unlocking/legal/with 5 stakes/voter/creator: retract votes while voting/proposal,462855887,1303958,14210 -Agora/Proposal/validator/unlocking/legal/with 5 stakes/creator: remove creator lock after voting/stake,947513057,2403795,10801 -Agora/Proposal/validator/unlocking/legal/with 5 stakes/creator: remove creator lock after voting/proposal,313935919,875767,14155 -Agora/Proposal/validator/unlocking/legal/with 5 stakes/Voter: remove lock after voting/stake,948161662,2399780,10807 -Agora/Proposal/validator/unlocking/legal/with 5 stakes/Voter: remove lock after voting/proposal,319127304,889757,14160 -Agora/Proposal/validator/unlocking/legal/with 7 stakes/voter: retract votes while voting/stake,1306724306,3252654,12147 -Agora/Proposal/validator/unlocking/legal/with 7 stakes/voter: retract votes while voting/proposal,540905115,1517896,15500 -Agora/Proposal/validator/unlocking/legal/with 7 stakes/voter: retract votes while voting by delegatee/stake,1313551201,3269810,12147 -Agora/Proposal/validator/unlocking/legal/with 7 stakes/voter: retract votes while voting by delegatee/proposal,540905115,1517896,15500 -Agora/Proposal/validator/unlocking/legal/with 7 stakes/voter/creator: retract votes while voting/stake,1380268091,3466868,12229 -Agora/Proposal/validator/unlocking/legal/with 7 stakes/voter/creator: retract votes while voting/proposal,585252943,1646794,15577 -Agora/Proposal/validator/unlocking/legal/with 7 stakes/creator: remove creator lock after voting/stake,1306947237,3260679,12144 -Agora/Proposal/validator/unlocking/legal/with 7 stakes/creator: remove creator lock after voting/proposal,379861081,1055311,15498 -Agora/Proposal/validator/unlocking/legal/with 7 stakes/Voter: remove lock after voting/stake,1307855284,3255058,12152 -Agora/Proposal/validator/unlocking/legal/with 7 stakes/Voter: remove lock after voting/proposal,387129020,1074897,15505 -Agora/Proposal/validator/unlocking/legal/with 9 stakes/voter: retract votes while voting/stake,1686064584,4139372,13492 -Agora/Proposal/validator/unlocking/legal/with 9 stakes/voter: retract votes while voting/proposal,650631363,1823904,16845 -Agora/Proposal/validator/unlocking/legal/with 9 stakes/voter: retract votes while voting by delegatee/stake,1692891479,4156528,13492 -Agora/Proposal/validator/unlocking/legal/with 9 stakes/voter: retract votes while voting by delegatee/proposal,650631363,1823904,16845 -Agora/Proposal/validator/unlocking/legal/with 9 stakes/voter/creator: retract votes while voting/stake,1780620879,4414790,13596 -Agora/Proposal/validator/unlocking/legal/with 9 stakes/voter/creator: retract votes while voting/proposal,707649999,1989630,16944 -Agora/Proposal/validator/unlocking/legal/with 9 stakes/creator: remove creator lock after voting/stake,1686028073,4149003,13487 -Agora/Proposal/validator/unlocking/legal/with 9 stakes/creator: remove creator lock after voting/proposal,445786243,1234855,16841 -Agora/Proposal/validator/unlocking/legal/with 9 stakes/Voter: remove lock after voting/stake,1687195562,4141776,13497 -Agora/Proposal/validator/unlocking/legal/with 9 stakes/Voter: remove lock after voting/proposal,455130736,1260037,16850 -Agora/Proposal/validator/unlocking/legal/with 11 stakes/voter: retract votes while voting/stake,2085051518,5057530,14838 -Agora/Proposal/validator/unlocking/legal/with 11 stakes/voter: retract votes while voting/proposal,760357611,2129912,18191 -Agora/Proposal/validator/unlocking/legal/with 11 stakes/voter: retract votes while voting by delegatee/stake,2091878413,5074686,14838 -Agora/Proposal/validator/unlocking/legal/with 11 stakes/voter: retract votes while voting by delegatee/proposal,760357611,2129912,18191 -Agora/Proposal/validator/unlocking/legal/with 11 stakes/voter/creator: retract votes while voting/stake,2200620323,5394152,14965 -Agora/Proposal/validator/unlocking/legal/with 11 stakes/voter/creator: retract votes while voting/proposal,830047055,2332466,18313 -Agora/Proposal/validator/unlocking/legal/with 11 stakes/creator: remove creator lock after voting/stake,2084755565,5068767,14831 -Agora/Proposal/validator/unlocking/legal/with 11 stakes/creator: remove creator lock after voting/proposal,511711405,1414399,18185 -Agora/Proposal/validator/unlocking/legal/with 11 stakes/Voter: remove lock after voting/stake,2086182496,5059934,14843 -Agora/Proposal/validator/unlocking/legal/with 11 stakes/Voter: remove lock after voting/proposal,523132452,1445177,18196 -Agora/Proposal/validator/unlocking/illegal/with 1 stakes/retract votes while not voting/(negative test)/stake,286017919,779938,8111 -Agora/Proposal/validator/unlocking/illegal/with 1 stakes/retract votes while not voting/(negative test)/stake,287148897,782342,8111 -Agora/Proposal/validator/unlocking/illegal/with 1 stakes/retract votes while not voting/(negative test)/stake,287714386,783544,8111 -Agora/Proposal/validator/unlocking/illegal/with 1 stakes/remove creator too early/(negative test)/proposal,180389128,513073,11468 -Agora/Proposal/validator/unlocking/illegal/with 1 stakes/remove creator too early/(negative test)/proposal,184593979,524334,11468 -Agora/Proposal/validator/unlocking/illegal/with 1 stakes/remove creator too early/(negative test)/proposal,181520106,515477,11468 -Agora/Proposal/validator/unlocking/illegal/with 1 stakes/unlock an irrelevant stake/stake,296230945,814266,8133 -Agora/Proposal/validator/unlocking/illegal/with 1 stakes/creator: retract votes/stake,284930762,783569,8115 -Agora/Proposal/validator/unlocking/illegal/with 1 stakes/change output stake value/proposal,211726371,599872,11461 -Agora/Proposal/validator/unlocking/illegal/with 3 stakes/retract votes while not voting/(negative test)/stake,606418229,1572336,9456 -Agora/Proposal/validator/unlocking/illegal/with 3 stakes/retract votes while not voting/(negative test)/stake,607549207,1574740,9456 -Agora/Proposal/validator/unlocking/illegal/with 3 stakes/retract votes while not voting/(negative test)/stake,608114696,1575942,9456 -Agora/Proposal/validator/unlocking/illegal/with 3 stakes/remove creator too early/(negative test)/proposal,246314290,692617,12811 -Agora/Proposal/validator/unlocking/illegal/with 3 stakes/remove creator too early/(negative test)/proposal,250519141,703878,12811 -Agora/Proposal/validator/unlocking/illegal/with 3 stakes/remove creator too early/(negative test)/proposal,247445268,695021,12811 -Agora/Proposal/validator/unlocking/illegal/with 3 stakes/unlock an irrelevant stake/stake,621191337,1649336,9512 -Agora/Proposal/validator/unlocking/illegal/with 3 stakes/creator: retract votes/stake,587290788,1557245,9470 -Agora/Proposal/validator/unlocking/illegal/with 3 stakes/change output stake value/proposal,321452619,905880,12800 -Agora/Proposal/validator/unlocking/illegal/with 5 stakes/retract votes while not voting/(negative test)/stake,946465195,2396174,10802 -Agora/Proposal/validator/unlocking/illegal/with 5 stakes/retract votes while not voting/(negative test)/stake,947596173,2398578,10802 -Agora/Proposal/validator/unlocking/illegal/with 5 stakes/retract votes while not voting/(negative test)/stake,948161662,2399780,10802 -Agora/Proposal/validator/unlocking/illegal/with 5 stakes/remove creator too early/(negative test)/proposal,312239452,872161,14155 -Agora/Proposal/validator/unlocking/illegal/with 5 stakes/remove creator too early/(negative test)/proposal,316444303,883422,14155 -Agora/Proposal/validator/unlocking/illegal/with 5 stakes/remove creator too early/(negative test)/proposal,313370430,874565,14155 -Agora/Proposal/validator/unlocking/illegal/with 5 stakes/unlock an irrelevant stake/stake,946151729,2484406,10892 -Agora/Proposal/validator/unlocking/illegal/with 5 stakes/creator: retract votes/stake,889650814,2330921,10826 -Agora/Proposal/validator/unlocking/illegal/with 5 stakes/change output stake value/proposal,431178867,1211888,14140 -Agora/Proposal/validator/unlocking/illegal/with 7 stakes/retract votes while not voting/(negative test)/stake,1306158817,3251452,12147 -Agora/Proposal/validator/unlocking/illegal/with 7 stakes/retract votes while not voting/(negative test)/stake,1307289795,3253856,12147 -Agora/Proposal/validator/unlocking/illegal/with 7 stakes/retract votes while not voting/(negative test)/stake,1307855284,3255058,12147 -Agora/Proposal/validator/unlocking/illegal/with 7 stakes/remove creator too early/(negative test)/proposal,378164614,1051705,15498 -Agora/Proposal/validator/unlocking/illegal/with 7 stakes/remove creator too early/(negative test)/proposal,382369465,1062966,15498 -Agora/Proposal/validator/unlocking/illegal/with 7 stakes/remove creator too early/(negative test)/proposal,379295592,1054109,15498 -Agora/Proposal/validator/unlocking/illegal/with 7 stakes/unlock an irrelevant stake/stake,1271112121,3319476,12271 -Agora/Proposal/validator/unlocking/illegal/with 7 stakes/creator: retract votes/stake,1192010840,3104597,12181 -Agora/Proposal/validator/unlocking/illegal/with 7 stakes/change output stake value/proposal,540905115,1517896,15479 -Agora/Proposal/validator/unlocking/illegal/with 9 stakes/retract votes while not voting/(negative test)/stake,1685499095,4138170,13492 -Agora/Proposal/validator/unlocking/illegal/with 9 stakes/retract votes while not voting/(negative test)/stake,1686630073,4140574,13492 -Agora/Proposal/validator/unlocking/illegal/with 9 stakes/retract votes while not voting/(negative test)/stake,1687195562,4141776,13492 -Agora/Proposal/validator/unlocking/illegal/with 9 stakes/remove creator too early/(negative test)/proposal,444089776,1231249,16841 -Agora/Proposal/validator/unlocking/illegal/with 9 stakes/remove creator too early/(negative test)/proposal,448294627,1242510,16841 -Agora/Proposal/validator/unlocking/illegal/with 9 stakes/remove creator too early/(negative test)/proposal,445220754,1233653,16841 -Agora/Proposal/validator/unlocking/illegal/with 9 stakes/unlock an irrelevant stake/stake,1596072513,4154546,13651 -Agora/Proposal/validator/unlocking/illegal/with 9 stakes/creator: retract votes/stake,1494370866,3878273,13536 -Agora/Proposal/validator/unlocking/illegal/with 9 stakes/change output stake value/proposal,650631363,1823904,16818 -Agora/Proposal/validator/unlocking/illegal/with 11 stakes/retract votes while not voting/(negative test)/stake,2084486029,5056328,14838 -Agora/Proposal/validator/unlocking/illegal/with 11 stakes/retract votes while not voting/(negative test)/stake,2085617007,5058732,14838 -Agora/Proposal/validator/unlocking/illegal/with 11 stakes/retract votes while not voting/(negative test)/stake,2086182496,5059934,14838 -Agora/Proposal/validator/unlocking/illegal/with 11 stakes/remove creator too early/(negative test)/proposal,510014938,1410793,18185 -Agora/Proposal/validator/unlocking/illegal/with 11 stakes/remove creator too early/(negative test)/proposal,514219789,1422054,18185 -Agora/Proposal/validator/unlocking/illegal/with 11 stakes/remove creator too early/(negative test)/proposal,511145916,1413197,18185 -Agora/Proposal/validator/unlocking/illegal/with 11 stakes/unlock an irrelevant stake/stake,1921032905,4989616,15031 -Agora/Proposal/validator/unlocking/illegal/with 11 stakes/creator: retract votes/stake,1796730892,4651949,14893 -Agora/Proposal/validator/unlocking/illegal/with 11 stakes/change output stake value/proposal,760357611,2129912,18158 +Agora/Effects/Treasury Withdrawal Effect/effect/Simple,216491233,584406,3880 +Agora/Effects/Treasury Withdrawal Effect/effect/Simple with multiple treasuries ,307752363,787074,4312 +Agora/Effects/Treasury Withdrawal Effect/effect/Mixed Assets,300492604,786706,4250 +Agora/Effects/Governor Mutation Effect/validator/valid new governor datum/governor validator should pass,124325615,349763,11495 +Agora/Effects/Governor Mutation Effect/validator/valid new governor datum/effect validator should pass,141944305,374453,4684 +Agora/Stake/policy/stakeCreation,56258569,163343,3239 +Agora/Stake/validator/stakeDepositWithdraw deposit,148453324,420954,7376 +Agora/Stake/validator/stakeDepositWithdraw withdraw,148453324,420954,7368 +Agora/Stake/validator/set delegate/override existing delegate,177128962,490839,7507 +Agora/Stake/validator/set delegate/remove existing delegate,167793966,467451,7437 +Agora/Stake/validator/set delegate/set delegate to something,174699974,483739,7437 +Agora/Proposal/policy (proposal creation)/legal/proposal,33117699,98458,2042 +Agora/Proposal/policy (proposal creation)/legal/governor,277790164,732883,11948 +Agora/Proposal/policy (proposal creation)/legal/stake,309862175,835932,8159 +Agora/Proposal/policy (proposal creation)/illegal/invalid next proposal id/proposal,33117699,98458,2042 +Agora/Proposal/policy (proposal creation)/illegal/invalid next proposal id/stake,309862175,835932,8159 +Agora/Proposal/policy (proposal creation)/illegal/use other's stake/proposal,33117699,98458,2011 +Agora/Proposal/policy (proposal creation)/illegal/use other's stake/governor,277790164,732883,11917 +Agora/Proposal/policy (proposal creation)/illegal/altered stake/proposal,33117699,98458,2042 +Agora/Proposal/policy (proposal creation)/illegal/invalid stake locks/proposal,33117699,98458,2050 +Agora/Proposal/policy (proposal creation)/illegal/invalid stake locks/governor,277790164,732883,11956 +Agora/Proposal/policy (proposal creation)/illegal/has reached maximum proposals limit/proposal,33117699,98458,2063 +Agora/Proposal/policy (proposal creation)/illegal/has reached maximum proposals limit/stake,322560611,872148,8190 +Agora/Proposal/policy (proposal creation)/illegal/loose time range/proposal,33117699,98458,2042 +Agora/Proposal/policy (proposal creation)/illegal/loose time range/stake,309862175,835932,8159 +Agora/Proposal/policy (proposal creation)/illegal/open time range/proposal,33117699,98458,2038 +Agora/Proposal/policy (proposal creation)/illegal/open time range/stake,309862175,835932,8155 +Agora/Proposal/policy (proposal creation)/illegal/invalid proposal status/VotingReady/proposal,33117699,98458,2042 +Agora/Proposal/policy (proposal creation)/illegal/invalid proposal status/VotingReady/stake,309862175,835932,8159 +Agora/Proposal/policy (proposal creation)/illegal/invalid proposal status/Locked/proposal,33117699,98458,2042 +Agora/Proposal/policy (proposal creation)/illegal/invalid proposal status/Locked/stake,309862175,835932,8159 +Agora/Proposal/policy (proposal creation)/illegal/invalid proposal status/Finished/proposal,33117699,98458,2042 +Agora/Proposal/policy (proposal creation)/illegal/invalid proposal status/Finished/stake,309862175,835932,8159 +Agora/Proposal/validator/cosignature/legal/proposal,199754776,564002,11387 +Agora/Proposal/validator/cosignature/legal/stake,262558574,733273,8003 +Agora/Proposal/validator/cosignature/illegal/insufficient staked amount/stake,262558574,733273,8003 +Agora/Proposal/validator/cosignature/illegal/proposal locks not updated/proposal,199754776,564002,11381 +Agora/Proposal/validator/cosignature/illegal/duplicate cosigners/stake,268907792,751381,8020 +Agora/Proposal/validator/cosignature/illegal/cosigners not updated/stake,262558574,733273,7969 +Agora/Proposal/validator/cosignature/illegal/cosign after draft/(negative test)/stake,262558574,733273,8003 +Agora/Proposal/validator/cosignature/illegal/cosign after draft/(negative test)/stake,262558574,733273,8003 +Agora/Proposal/validator/cosignature/illegal/cosign after draft/(negative test)/stake,262558574,733273,8003 +Agora/Proposal/validator/voting/legal/different number of stakes/1 stakes/by owner/proposal,213591278,609704,11239 +Agora/Proposal/validator/voting/legal/different number of stakes/1 stakes/by owner/stake,274212318,767240,7866 +Agora/Proposal/validator/voting/legal/different number of stakes/1 stakes/by delegatee/proposal,213591278,609704,11239 +Agora/Proposal/validator/voting/legal/different number of stakes/1 stakes/by delegatee/stake,281039213,784396,7866 +Agora/Proposal/validator/voting/legal/different number of stakes/3 stakes/by owner/proposal,318521480,903152,12454 +Agora/Proposal/validator/voting/legal/different number of stakes/3 stakes/by owner/stake,572663660,1545832,9081 +Agora/Proposal/validator/voting/legal/different number of stakes/3 stakes/by delegatee/proposal,318521480,903152,12454 +Agora/Proposal/validator/voting/legal/different number of stakes/3 stakes/by delegatee/stake,579490555,1562988,9081 +Agora/Proposal/validator/voting/legal/different number of stakes/5 stakes/by owner/proposal,423451682,1196600,13669 +Agora/Proposal/validator/voting/legal/different number of stakes/5 stakes/by owner/stake,871115002,2324424,10296 +Agora/Proposal/validator/voting/legal/different number of stakes/5 stakes/by delegatee/proposal,423451682,1196600,13669 +Agora/Proposal/validator/voting/legal/different number of stakes/5 stakes/by delegatee/stake,877941897,2341580,10296 +Agora/Proposal/validator/voting/legal/different number of stakes/7 stakes/by owner/proposal,528381884,1490048,14883 +Agora/Proposal/validator/voting/legal/different number of stakes/7 stakes/by owner/stake,1169566344,3103016,11510 +Agora/Proposal/validator/voting/legal/different number of stakes/7 stakes/by delegatee/proposal,528381884,1490048,14883 +Agora/Proposal/validator/voting/legal/different number of stakes/7 stakes/by delegatee/stake,1176393239,3120172,11510 +Agora/Proposal/validator/voting/legal/different number of stakes/9 stakes/by owner/proposal,633312086,1783496,16098 +Agora/Proposal/validator/voting/legal/different number of stakes/9 stakes/by owner/stake,1468017686,3881608,12725 +Agora/Proposal/validator/voting/legal/different number of stakes/9 stakes/by delegatee/proposal,633312086,1783496,16098 +Agora/Proposal/validator/voting/legal/different number of stakes/9 stakes/by delegatee/stake,1474844581,3898764,12725 +Agora/Proposal/validator/voting/legal/transparent non-GT tokens/proposal,213591278,609704,11239 +Agora/Proposal/validator/voting/legal/transparent non-GT tokens/stake,274212318,767240,7866 +Agora/Proposal/validator/voting/illegal/vote for nonexistent outcome/stake,274212318,767240,7871 +Agora/Proposal/validator/voting/illegal/unauthorized tx/proposal,213591278,609704,11239 +Agora/Proposal/validator/voting/illegal/more than one proposals/stake,274212318,767240,7871 +Agora/Proposal/validator/voting/illegal/locks not added/proposal,423451682,1196600,13639 +Agora/Proposal/validator/voting/illegal/attempt to burn stakes/proposal,400384827,1144980,12610 +Agora/Proposal/validator/voting/illegal/insufficient staked amount/stake,274212318,767240,7843 +Agora/Proposal/validator/voting/illegal/insufficient staked amount/stake,871115002,2324424,10208 +Agora/Proposal/validator/advancing/with 1 cosigners and 1 effects/legal/to next state/from Draft to VotingReady/proposal,241234429,682107,11853 +Agora/Proposal/validator/advancing/with 1 cosigners and 1 effects/legal/to next state/from VotingReady to Locked/proposal,221613256,618841,11616 +Agora/Proposal/validator/advancing/with 1 cosigners and 1 effects/legal/to next state/from Locked to Finished/proposal,235717920,647583,12887 +Agora/Proposal/validator/advancing/with 1 cosigners and 1 effects/legal/to next state/from Locked to Finished/governor,398800093,1081480,12963 +Agora/Proposal/validator/advancing/with 1 cosigners and 1 effects/legal/to next state/from Locked to Finished/authority,15617485,47272,3302 +Agora/Proposal/validator/advancing/with 1 cosigners and 1 effects/legal/to next state/from Draft to VotingReady/proposal,237423139,669879,11574 +Agora/Proposal/validator/advancing/with 1 cosigners and 1 effects/legal/to next state/from VotingReady to Locked/proposal,217801966,606613,11337 +Agora/Proposal/validator/advancing/with 1 cosigners and 1 effects/legal/to next state/from Locked to Finished/proposal,231906630,635355,12429 +Agora/Proposal/validator/advancing/with 1 cosigners and 1 effects/legal/to next state/from Locked to Finished/governor,396545515,1073974,12598 +Agora/Proposal/validator/advancing/with 1 cosigners and 1 effects/legal/to next state/from Locked to Finished/authority,79975987,214000,2937 +Agora/Proposal/validator/advancing/with 1 cosigners and 1 effects/legal/to failed state/from Draft to Finished/proposal,211482642,594402,11609 +Agora/Proposal/validator/advancing/with 1 cosigners and 1 effects/legal/to failed state/from VotingReady to Finished/proposal,209808658,584808,11610 +Agora/Proposal/validator/advancing/with 1 cosigners and 1 effects/legal/to failed state/from Locked to Finished/proposal,222696603,617214,11610 +Agora/Proposal/validator/advancing/with 1 cosigners and 1 effects/legal/to failed state/from Draft to Finished/proposal,207671352,582174,11330 +Agora/Proposal/validator/advancing/with 1 cosigners and 1 effects/legal/to failed state/from VotingReady to Finished/proposal,205997368,572580,11331 +Agora/Proposal/validator/advancing/with 1 cosigners and 1 effects/legal/to failed state/from Locked to Finished/proposal,218885313,604986,11331 +Agora/Proposal/validator/advancing/with 1 cosigners and 1 effects/illegal/advance finished proposals/(negative test)/authority,15617485,47272,3302 +Agora/Proposal/validator/advancing/with 1 cosigners and 1 effects/illegal/advance finished proposals/(negative test)/authority,79975987,214000,2937 +Agora/Proposal/validator/advancing/with 1 cosigners and 1 effects/illegal/to next state too late/from Locked/governor,398800093,1081480,12963 +Agora/Proposal/validator/advancing/with 1 cosigners and 1 effects/illegal/to next state too late/from Locked/authority,15617485,47272,3302 +Agora/Proposal/validator/advancing/with 1 cosigners and 1 effects/illegal/to next state too late/from Locked/governor,396545515,1073974,12598 +Agora/Proposal/validator/advancing/with 1 cosigners and 1 effects/illegal/to next state too late/from Locked/authority,79975987,214000,2937 +Agora/Proposal/validator/advancing/with 1 cosigners and 1 effects/illegal/forget to mint GATs/proposal,231906630,635355,11783 +Agora/Proposal/validator/advancing/with 1 cosigners and 1 effects/illegal/mint GATs for wrong validators/proposal,231906630,635355,12429 +Agora/Proposal/validator/advancing/with 1 cosigners and 1 effects/illegal/mint GATs for wrong validators/authority,79975987,214000,2937 +Agora/Proposal/validator/advancing/with 1 cosigners and 1 effects/illegal/mint GATs with bad token name/proposal,231906630,635355,12461 +Agora/Proposal/validator/advancing/with 1 cosigners and 1 effects/illegal/mint GATs with bad token name/authority,11941326,37148,2969 +Agora/Proposal/validator/advancing/with 1 cosigners and 1 effects/illegal/wrong GAT datum/proposal,231906630,635355,12423 +Agora/Proposal/validator/advancing/with 1 cosigners and 1 effects/illegal/wrong GAT datum/authority,79975987,214000,2931 +Agora/Proposal/validator/advancing/with 1 cosigners and 1 effects/illegal/invalid governor output datum/proposal,231906630,635355,12429 +Agora/Proposal/validator/advancing/with 1 cosigners and 1 effects/illegal/invalid governor output datum/authority,79975987,214000,2937 +Agora/Proposal/validator/advancing/with 1 cosigners and 2 effects/legal/to next state/from Draft to VotingReady/proposal,315459149,886409,12769 +Agora/Proposal/validator/advancing/with 1 cosigners and 2 effects/legal/to next state/from VotingReady to Locked/proposal,299532862,833131,12532 +Agora/Proposal/validator/advancing/with 1 cosigners and 2 effects/legal/to next state/from Locked to Finished/proposal,309942640,851885,13803 +Agora/Proposal/validator/advancing/with 1 cosigners and 2 effects/legal/to next state/from Locked to Finished/governor,440535321,1198712,13574 +Agora/Proposal/validator/advancing/with 1 cosigners and 2 effects/legal/to next state/from Locked to Finished/authority,15617485,47272,3913 +Agora/Proposal/validator/advancing/with 1 cosigners and 2 effects/legal/to next state/from Draft to VotingReady/proposal,307836569,861953,12208 +Agora/Proposal/validator/advancing/with 1 cosigners and 2 effects/legal/to next state/from VotingReady to Locked/proposal,291910282,808675,11971 +Agora/Proposal/validator/advancing/with 1 cosigners and 2 effects/legal/to next state/from Locked to Finished/proposal,302320060,827429,13064 +Agora/Proposal/validator/advancing/with 1 cosigners and 2 effects/legal/to next state/from Locked to Finished/governor,436526130,1185092,13022 +Agora/Proposal/validator/advancing/with 1 cosigners and 2 effects/legal/to next state/from Locked to Finished/authority,79975987,214000,3361 +Agora/Proposal/validator/advancing/with 1 cosigners and 2 effects/legal/to failed state/from Draft to Finished/proposal,285707362,798704,12525 +Agora/Proposal/validator/advancing/with 1 cosigners and 2 effects/legal/to failed state/from VotingReady to Finished/proposal,284033378,789110,12526 +Agora/Proposal/validator/advancing/with 1 cosigners and 2 effects/legal/to failed state/from Locked to Finished/proposal,296921323,821516,12526 +Agora/Proposal/validator/advancing/with 1 cosigners and 2 effects/legal/to failed state/from Draft to Finished/proposal,278084782,774248,11964 +Agora/Proposal/validator/advancing/with 1 cosigners and 2 effects/legal/to failed state/from VotingReady to Finished/proposal,276410798,764654,11965 +Agora/Proposal/validator/advancing/with 1 cosigners and 2 effects/legal/to failed state/from Locked to Finished/proposal,289298743,797060,11965 +Agora/Proposal/validator/advancing/with 1 cosigners and 2 effects/illegal/advance finished proposals/(negative test)/authority,15617485,47272,3913 +Agora/Proposal/validator/advancing/with 1 cosigners and 2 effects/illegal/advance finished proposals/(negative test)/authority,79975987,214000,3361 +Agora/Proposal/validator/advancing/with 1 cosigners and 2 effects/illegal/to next state too late/from Locked/governor,440535321,1198712,13574 +Agora/Proposal/validator/advancing/with 1 cosigners and 2 effects/illegal/to next state too late/from Locked/authority,15617485,47272,3913 +Agora/Proposal/validator/advancing/with 1 cosigners and 2 effects/illegal/to next state too late/from Locked/governor,436526130,1185092,13022 +Agora/Proposal/validator/advancing/with 1 cosigners and 2 effects/illegal/to next state too late/from Locked/authority,79975987,214000,3361 +Agora/Proposal/validator/advancing/with 1 cosigners and 2 effects/illegal/forget to mint GATs/proposal,302320060,827429,12418 +Agora/Proposal/validator/advancing/with 1 cosigners and 2 effects/illegal/mint GATs for wrong validators/proposal,302320060,827429,13064 +Agora/Proposal/validator/advancing/with 1 cosigners and 2 effects/illegal/mint GATs for wrong validators/authority,79975987,214000,3361 +Agora/Proposal/validator/advancing/with 1 cosigners and 2 effects/illegal/mint GATs with bad token name/proposal,302320060,827429,13096 +Agora/Proposal/validator/advancing/with 1 cosigners and 2 effects/illegal/mint GATs with bad token name/authority,11941326,37148,3393 +Agora/Proposal/validator/advancing/with 1 cosigners and 2 effects/illegal/wrong GAT datum/proposal,302320060,827429,13058 +Agora/Proposal/validator/advancing/with 1 cosigners and 2 effects/illegal/wrong GAT datum/authority,79975987,214000,3355 +Agora/Proposal/validator/advancing/with 1 cosigners and 2 effects/illegal/invalid governor output datum/proposal,302320060,827429,13064 +Agora/Proposal/validator/advancing/with 1 cosigners and 2 effects/illegal/invalid governor output datum/authority,79975987,214000,3361 +Agora/Proposal/validator/advancing/with 1 cosigners and 5 effects/legal/to next state/from Draft to VotingReady/proposal,538133309,1499315,15516 +Agora/Proposal/validator/advancing/with 1 cosigners and 5 effects/legal/to next state/from VotingReady to Locked/proposal,533291680,1476001,15279 +Agora/Proposal/validator/advancing/with 1 cosigners and 5 effects/legal/to next state/from Locked to Finished/proposal,532616800,1464791,16550 +Agora/Proposal/validator/advancing/with 1 cosigners and 5 effects/legal/to next state/from Locked to Finished/governor,565741005,1550408,15405 +Agora/Proposal/validator/advancing/with 1 cosigners and 5 effects/legal/to next state/from Locked to Finished/authority,15617485,47272,5744 +Agora/Proposal/validator/advancing/with 1 cosigners and 5 effects/legal/to next state/from Draft to VotingReady/proposal,519076859,1438175,14115 +Agora/Proposal/validator/advancing/with 1 cosigners and 5 effects/legal/to next state/from VotingReady to Locked/proposal,514235230,1414861,13878 +Agora/Proposal/validator/advancing/with 1 cosigners and 5 effects/legal/to next state/from Locked to Finished/proposal,513560350,1403651,14971 +Agora/Proposal/validator/advancing/with 1 cosigners and 5 effects/legal/to next state/from Locked to Finished/governor,556467975,1518446,14293 +Agora/Proposal/validator/advancing/with 1 cosigners and 5 effects/legal/to next state/from Locked to Finished/authority,79975987,214000,4632 +Agora/Proposal/validator/advancing/with 1 cosigners and 5 effects/legal/to failed state/from Draft to Finished/proposal,508381522,1411610,15272 +Agora/Proposal/validator/advancing/with 1 cosigners and 5 effects/legal/to failed state/from VotingReady to Finished/proposal,506707538,1402016,15273 +Agora/Proposal/validator/advancing/with 1 cosigners and 5 effects/legal/to failed state/from Locked to Finished/proposal,519595483,1434422,15273 +Agora/Proposal/validator/advancing/with 1 cosigners and 5 effects/legal/to failed state/from Draft to Finished/proposal,489325072,1350470,13871 +Agora/Proposal/validator/advancing/with 1 cosigners and 5 effects/legal/to failed state/from VotingReady to Finished/proposal,487651088,1340876,13872 +Agora/Proposal/validator/advancing/with 1 cosigners and 5 effects/legal/to failed state/from Locked to Finished/proposal,500539033,1373282,13872 +Agora/Proposal/validator/advancing/with 1 cosigners and 5 effects/illegal/advance finished proposals/(negative test)/authority,15617485,47272,5744 +Agora/Proposal/validator/advancing/with 1 cosigners and 5 effects/illegal/advance finished proposals/(negative test)/authority,79975987,214000,4632 +Agora/Proposal/validator/advancing/with 1 cosigners and 5 effects/illegal/to next state too late/from Locked/governor,565741005,1550408,15405 +Agora/Proposal/validator/advancing/with 1 cosigners and 5 effects/illegal/to next state too late/from Locked/authority,15617485,47272,5744 +Agora/Proposal/validator/advancing/with 1 cosigners and 5 effects/illegal/to next state too late/from Locked/governor,556467975,1518446,14293 +Agora/Proposal/validator/advancing/with 1 cosigners and 5 effects/illegal/to next state too late/from Locked/authority,79975987,214000,4632 +Agora/Proposal/validator/advancing/with 1 cosigners and 5 effects/illegal/forget to mint GATs/proposal,513560350,1403651,14325 +Agora/Proposal/validator/advancing/with 1 cosigners and 5 effects/illegal/mint GATs for wrong validators/proposal,513560350,1403651,14971 +Agora/Proposal/validator/advancing/with 1 cosigners and 5 effects/illegal/mint GATs for wrong validators/authority,79975987,214000,4632 +Agora/Proposal/validator/advancing/with 1 cosigners and 5 effects/illegal/mint GATs with bad token name/proposal,513560350,1403651,15003 +Agora/Proposal/validator/advancing/with 1 cosigners and 5 effects/illegal/mint GATs with bad token name/authority,11941326,37148,4664 +Agora/Proposal/validator/advancing/with 1 cosigners and 5 effects/illegal/wrong GAT datum/proposal,513560350,1403651,14965 +Agora/Proposal/validator/advancing/with 1 cosigners and 5 effects/illegal/wrong GAT datum/authority,79975987,214000,4626 +Agora/Proposal/validator/advancing/with 1 cosigners and 5 effects/illegal/invalid governor output datum/proposal,513560350,1403651,14971 +Agora/Proposal/validator/advancing/with 1 cosigners and 5 effects/illegal/invalid governor output datum/authority,79975987,214000,4632 +Agora/Proposal/validator/advancing/with 5 cosigners and 1 effects/legal/to next state/from Draft to VotingReady/proposal,417520319,1188591,13354 +Agora/Proposal/validator/advancing/with 5 cosigners and 1 effects/legal/to next state/from VotingReady to Locked/proposal,251963976,702569,12027 +Agora/Proposal/validator/advancing/with 5 cosigners and 1 effects/legal/to next state/from Locked to Finished/proposal,266068640,731311,13297 +Agora/Proposal/validator/advancing/with 5 cosigners and 1 effects/legal/to next state/from Locked to Finished/governor,413673389,1123344,13236 +Agora/Proposal/validator/advancing/with 5 cosigners and 1 effects/legal/to next state/from Locked to Finished/authority,15617485,47272,3575 +Agora/Proposal/validator/advancing/with 5 cosigners and 1 effects/legal/to next state/from Draft to VotingReady/proposal,413709029,1176363,13073 +Agora/Proposal/validator/advancing/with 5 cosigners and 1 effects/legal/to next state/from VotingReady to Locked/proposal,248152686,690341,11746 +Agora/Proposal/validator/advancing/with 5 cosigners and 1 effects/legal/to next state/from Locked to Finished/proposal,262257350,719083,12838 +Agora/Proposal/validator/advancing/with 5 cosigners and 1 effects/legal/to next state/from Locked to Finished/governor,411418811,1115838,12871 +Agora/Proposal/validator/advancing/with 5 cosigners and 1 effects/legal/to next state/from Locked to Finished/authority,79975987,214000,3210 +Agora/Proposal/validator/advancing/with 5 cosigners and 1 effects/legal/to failed state/from Draft to Finished/proposal,241833362,678130,12019 +Agora/Proposal/validator/advancing/with 5 cosigners and 1 effects/legal/to failed state/from VotingReady to Finished/proposal,240159378,668536,12020 +Agora/Proposal/validator/advancing/with 5 cosigners and 1 effects/legal/to failed state/from Locked to Finished/proposal,253047323,700942,12020 +Agora/Proposal/validator/advancing/with 5 cosigners and 1 effects/legal/to failed state/from Draft to Finished/proposal,238022072,665902,11739 +Agora/Proposal/validator/advancing/with 5 cosigners and 1 effects/legal/to failed state/from VotingReady to Finished/proposal,236348088,656308,11740 +Agora/Proposal/validator/advancing/with 5 cosigners and 1 effects/legal/to failed state/from Locked to Finished/proposal,249236033,688714,11740 +Agora/Proposal/validator/advancing/with 5 cosigners and 1 effects/illegal/advance finished proposals/(negative test)/authority,15617485,47272,3575 +Agora/Proposal/validator/advancing/with 5 cosigners and 1 effects/illegal/advance finished proposals/(negative test)/authority,79975987,214000,3210 +Agora/Proposal/validator/advancing/with 5 cosigners and 1 effects/illegal/to next state too late/from Locked/governor,413673389,1123344,13236 +Agora/Proposal/validator/advancing/with 5 cosigners and 1 effects/illegal/to next state too late/from Locked/authority,15617485,47272,3575 +Agora/Proposal/validator/advancing/with 5 cosigners and 1 effects/illegal/to next state too late/from Locked/governor,411418811,1115838,12871 +Agora/Proposal/validator/advancing/with 5 cosigners and 1 effects/illegal/to next state too late/from Locked/authority,79975987,214000,3210 +Agora/Proposal/validator/advancing/with 5 cosigners and 1 effects/illegal/forget to mint GATs/proposal,262257350,719083,12193 +Agora/Proposal/validator/advancing/with 5 cosigners and 1 effects/illegal/mint GATs for wrong validators/proposal,262257350,719083,12838 +Agora/Proposal/validator/advancing/with 5 cosigners and 1 effects/illegal/mint GATs for wrong validators/authority,79975987,214000,3210 +Agora/Proposal/validator/advancing/with 5 cosigners and 1 effects/illegal/mint GATs with bad token name/proposal,262257350,719083,12870 +Agora/Proposal/validator/advancing/with 5 cosigners and 1 effects/illegal/mint GATs with bad token name/authority,11941326,37148,3242 +Agora/Proposal/validator/advancing/with 5 cosigners and 1 effects/illegal/wrong GAT datum/proposal,262257350,719083,12832 +Agora/Proposal/validator/advancing/with 5 cosigners and 1 effects/illegal/wrong GAT datum/authority,79975987,214000,3204 +Agora/Proposal/validator/advancing/with 5 cosigners and 1 effects/illegal/invalid governor output datum/proposal,262257350,719083,12838 +Agora/Proposal/validator/advancing/with 5 cosigners and 1 effects/illegal/invalid governor output datum/authority,79975987,214000,3210 +Agora/Proposal/validator/advancing/with 5 cosigners and 2 effects/legal/to next state/from Draft to VotingReady/proposal,491745039,1392893,14269 +Agora/Proposal/validator/advancing/with 5 cosigners and 2 effects/legal/to next state/from VotingReady to Locked/proposal,329883582,916859,12942 +Agora/Proposal/validator/advancing/with 5 cosigners and 2 effects/legal/to next state/from Locked to Finished/proposal,340293360,935613,14213 +Agora/Proposal/validator/advancing/with 5 cosigners and 2 effects/legal/to next state/from Locked to Finished/governor,455408617,1240576,13847 +Agora/Proposal/validator/advancing/with 5 cosigners and 2 effects/legal/to next state/from Locked to Finished/authority,15617485,47272,4186 +Agora/Proposal/validator/advancing/with 5 cosigners and 2 effects/legal/to next state/from Draft to VotingReady/proposal,484122459,1368437,13709 +Agora/Proposal/validator/advancing/with 5 cosigners and 2 effects/legal/to next state/from VotingReady to Locked/proposal,322261002,892403,12381 +Agora/Proposal/validator/advancing/with 5 cosigners and 2 effects/legal/to next state/from Locked to Finished/proposal,332670780,911157,13474 +Agora/Proposal/validator/advancing/with 5 cosigners and 2 effects/legal/to next state/from Locked to Finished/governor,451399426,1226956,13295 +Agora/Proposal/validator/advancing/with 5 cosigners and 2 effects/legal/to next state/from Locked to Finished/authority,79975987,214000,3634 +Agora/Proposal/validator/advancing/with 5 cosigners and 2 effects/legal/to failed state/from Draft to Finished/proposal,316058082,882432,12935 +Agora/Proposal/validator/advancing/with 5 cosigners and 2 effects/legal/to failed state/from VotingReady to Finished/proposal,314384098,872838,12936 +Agora/Proposal/validator/advancing/with 5 cosigners and 2 effects/legal/to failed state/from Locked to Finished/proposal,327272043,905244,12936 +Agora/Proposal/validator/advancing/with 5 cosigners and 2 effects/legal/to failed state/from Draft to Finished/proposal,308435502,857976,12374 +Agora/Proposal/validator/advancing/with 5 cosigners and 2 effects/legal/to failed state/from VotingReady to Finished/proposal,306761518,848382,12375 +Agora/Proposal/validator/advancing/with 5 cosigners and 2 effects/legal/to failed state/from Locked to Finished/proposal,319649463,880788,12375 +Agora/Proposal/validator/advancing/with 5 cosigners and 2 effects/illegal/advance finished proposals/(negative test)/authority,15617485,47272,4186 +Agora/Proposal/validator/advancing/with 5 cosigners and 2 effects/illegal/advance finished proposals/(negative test)/authority,79975987,214000,3634 +Agora/Proposal/validator/advancing/with 5 cosigners and 2 effects/illegal/to next state too late/from Locked/governor,455408617,1240576,13847 +Agora/Proposal/validator/advancing/with 5 cosigners and 2 effects/illegal/to next state too late/from Locked/authority,15617485,47272,4186 +Agora/Proposal/validator/advancing/with 5 cosigners and 2 effects/illegal/to next state too late/from Locked/governor,451399426,1226956,13295 +Agora/Proposal/validator/advancing/with 5 cosigners and 2 effects/illegal/to next state too late/from Locked/authority,79975987,214000,3634 +Agora/Proposal/validator/advancing/with 5 cosigners and 2 effects/illegal/forget to mint GATs/proposal,332670780,911157,12828 +Agora/Proposal/validator/advancing/with 5 cosigners and 2 effects/illegal/mint GATs for wrong validators/proposal,332670780,911157,13474 +Agora/Proposal/validator/advancing/with 5 cosigners and 2 effects/illegal/mint GATs for wrong validators/authority,79975987,214000,3634 +Agora/Proposal/validator/advancing/with 5 cosigners and 2 effects/illegal/mint GATs with bad token name/proposal,332670780,911157,13506 +Agora/Proposal/validator/advancing/with 5 cosigners and 2 effects/illegal/mint GATs with bad token name/authority,11941326,37148,3666 +Agora/Proposal/validator/advancing/with 5 cosigners and 2 effects/illegal/wrong GAT datum/proposal,332670780,911157,13468 +Agora/Proposal/validator/advancing/with 5 cosigners and 2 effects/illegal/wrong GAT datum/authority,79975987,214000,3628 +Agora/Proposal/validator/advancing/with 5 cosigners and 2 effects/illegal/invalid governor output datum/proposal,332670780,911157,13474 +Agora/Proposal/validator/advancing/with 5 cosigners and 2 effects/illegal/invalid governor output datum/authority,79975987,214000,3634 +Agora/Proposal/validator/advancing/with 5 cosigners and 5 effects/legal/to next state/from Draft to VotingReady/proposal,714419199,2005799,17015 +Agora/Proposal/validator/advancing/with 5 cosigners and 5 effects/legal/to next state/from VotingReady to Locked/proposal,563642400,1559729,15688 +Agora/Proposal/validator/advancing/with 5 cosigners and 5 effects/legal/to next state/from Locked to Finished/proposal,562967520,1548519,16959 +Agora/Proposal/validator/advancing/with 5 cosigners and 5 effects/legal/to next state/from Locked to Finished/governor,580614301,1592272,15678 +Agora/Proposal/validator/advancing/with 5 cosigners and 5 effects/legal/to next state/from Locked to Finished/authority,15617485,47272,6017 +Agora/Proposal/validator/advancing/with 5 cosigners and 5 effects/legal/to next state/from Draft to VotingReady/proposal,695362749,1944659,15615 +Agora/Proposal/validator/advancing/with 5 cosigners and 5 effects/legal/to next state/from VotingReady to Locked/proposal,544585950,1498589,14287 +Agora/Proposal/validator/advancing/with 5 cosigners and 5 effects/legal/to next state/from Locked to Finished/proposal,543911070,1487379,15380 +Agora/Proposal/validator/advancing/with 5 cosigners and 5 effects/legal/to next state/from Locked to Finished/governor,571341271,1560310,14566 +Agora/Proposal/validator/advancing/with 5 cosigners and 5 effects/legal/to next state/from Locked to Finished/authority,79975987,214000,4905 +Agora/Proposal/validator/advancing/with 5 cosigners and 5 effects/legal/to failed state/from Draft to Finished/proposal,538732242,1495338,15681 +Agora/Proposal/validator/advancing/with 5 cosigners and 5 effects/legal/to failed state/from VotingReady to Finished/proposal,537058258,1485744,15682 +Agora/Proposal/validator/advancing/with 5 cosigners and 5 effects/legal/to failed state/from Locked to Finished/proposal,549946203,1518150,15682 +Agora/Proposal/validator/advancing/with 5 cosigners and 5 effects/legal/to failed state/from Draft to Finished/proposal,519675792,1434198,14280 +Agora/Proposal/validator/advancing/with 5 cosigners and 5 effects/legal/to failed state/from VotingReady to Finished/proposal,518001808,1424604,14281 +Agora/Proposal/validator/advancing/with 5 cosigners and 5 effects/legal/to failed state/from Locked to Finished/proposal,530889753,1457010,14281 +Agora/Proposal/validator/advancing/with 5 cosigners and 5 effects/illegal/advance finished proposals/(negative test)/authority,15617485,47272,6017 +Agora/Proposal/validator/advancing/with 5 cosigners and 5 effects/illegal/advance finished proposals/(negative test)/authority,79975987,214000,4905 +Agora/Proposal/validator/advancing/with 5 cosigners and 5 effects/illegal/to next state too late/from Locked/governor,580614301,1592272,15678 +Agora/Proposal/validator/advancing/with 5 cosigners and 5 effects/illegal/to next state too late/from Locked/authority,15617485,47272,6017 +Agora/Proposal/validator/advancing/with 5 cosigners and 5 effects/illegal/to next state too late/from Locked/governor,571341271,1560310,14566 +Agora/Proposal/validator/advancing/with 5 cosigners and 5 effects/illegal/to next state too late/from Locked/authority,79975987,214000,4905 +Agora/Proposal/validator/advancing/with 5 cosigners and 5 effects/illegal/forget to mint GATs/proposal,543911070,1487379,14734 +Agora/Proposal/validator/advancing/with 5 cosigners and 5 effects/illegal/mint GATs for wrong validators/proposal,543911070,1487379,15380 +Agora/Proposal/validator/advancing/with 5 cosigners and 5 effects/illegal/mint GATs for wrong validators/authority,79975987,214000,4905 +Agora/Proposal/validator/advancing/with 5 cosigners and 5 effects/illegal/mint GATs with bad token name/proposal,543911070,1487379,15412 +Agora/Proposal/validator/advancing/with 5 cosigners and 5 effects/illegal/mint GATs with bad token name/authority,11941326,37148,4937 +Agora/Proposal/validator/advancing/with 5 cosigners and 5 effects/illegal/wrong GAT datum/proposal,543911070,1487379,15374 +Agora/Proposal/validator/advancing/with 5 cosigners and 5 effects/illegal/wrong GAT datum/authority,79975987,214000,4899 +Agora/Proposal/validator/advancing/with 5 cosigners and 5 effects/illegal/invalid governor output datum/proposal,543911070,1487379,15380 +Agora/Proposal/validator/advancing/with 5 cosigners and 5 effects/illegal/invalid governor output datum/authority,79975987,214000,4905 +Agora/Proposal/validator/advancing/with 10 cosigners and 1 effects/legal/to next state/from Draft to VotingReady/proposal,653041125,1867387,15230 +Agora/Proposal/validator/advancing/with 10 cosigners and 1 effects/legal/to next state/from VotingReady to Locked/proposal,289902376,807229,12538 +Agora/Proposal/validator/advancing/with 10 cosigners and 1 effects/legal/to next state/from Locked to Finished/proposal,304007040,835971,13809 +Agora/Proposal/validator/advancing/with 10 cosigners and 1 effects/legal/to next state/from Locked to Finished/governor,432265009,1175674,13578 +Agora/Proposal/validator/advancing/with 10 cosigners and 1 effects/legal/to next state/from Locked to Finished/authority,15617485,47272,3917 +Agora/Proposal/validator/advancing/with 10 cosigners and 1 effects/legal/to next state/from Draft to VotingReady/proposal,649229835,1855159,14951 +Agora/Proposal/validator/advancing/with 10 cosigners and 1 effects/legal/to next state/from VotingReady to Locked/proposal,286091086,795001,12258 +Agora/Proposal/validator/advancing/with 10 cosigners and 1 effects/legal/to next state/from Locked to Finished/proposal,300195750,823743,13350 +Agora/Proposal/validator/advancing/with 10 cosigners and 1 effects/legal/to next state/from Locked to Finished/governor,430010431,1168168,13212 +Agora/Proposal/validator/advancing/with 10 cosigners and 1 effects/legal/to next state/from Locked to Finished/authority,79975987,214000,3551 +Agora/Proposal/validator/advancing/with 10 cosigners and 1 effects/legal/to failed state/from Draft to Finished/proposal,279771762,782790,12531 +Agora/Proposal/validator/advancing/with 10 cosigners and 1 effects/legal/to failed state/from VotingReady to Finished/proposal,278097778,773196,12532 +Agora/Proposal/validator/advancing/with 10 cosigners and 1 effects/legal/to failed state/from Locked to Finished/proposal,290985723,805602,12532 +Agora/Proposal/validator/advancing/with 10 cosigners and 1 effects/legal/to failed state/from Draft to Finished/proposal,275960472,770562,12251 +Agora/Proposal/validator/advancing/with 10 cosigners and 1 effects/legal/to failed state/from VotingReady to Finished/proposal,274286488,760968,12252 +Agora/Proposal/validator/advancing/with 10 cosigners and 1 effects/legal/to failed state/from Locked to Finished/proposal,287174433,793374,12252 +Agora/Proposal/validator/advancing/with 10 cosigners and 1 effects/illegal/advance finished proposals/(negative test)/authority,15617485,47272,3917 +Agora/Proposal/validator/advancing/with 10 cosigners and 1 effects/illegal/advance finished proposals/(negative test)/authority,79975987,214000,3551 +Agora/Proposal/validator/advancing/with 10 cosigners and 1 effects/illegal/to next state too late/from Locked/governor,432265009,1175674,13578 +Agora/Proposal/validator/advancing/with 10 cosigners and 1 effects/illegal/to next state too late/from Locked/authority,15617485,47272,3917 +Agora/Proposal/validator/advancing/with 10 cosigners and 1 effects/illegal/to next state too late/from Locked/governor,430010431,1168168,13212 +Agora/Proposal/validator/advancing/with 10 cosigners and 1 effects/illegal/to next state too late/from Locked/authority,79975987,214000,3551 +Agora/Proposal/validator/advancing/with 10 cosigners and 1 effects/illegal/forget to mint GATs/proposal,300195750,823743,12705 +Agora/Proposal/validator/advancing/with 10 cosigners and 1 effects/illegal/mint GATs for wrong validators/proposal,300195750,823743,13350 +Agora/Proposal/validator/advancing/with 10 cosigners and 1 effects/illegal/mint GATs for wrong validators/authority,79975987,214000,3551 +Agora/Proposal/validator/advancing/with 10 cosigners and 1 effects/illegal/mint GATs with bad token name/proposal,300195750,823743,13383 +Agora/Proposal/validator/advancing/with 10 cosigners and 1 effects/illegal/mint GATs with bad token name/authority,11941326,37148,3583 +Agora/Proposal/validator/advancing/with 10 cosigners and 1 effects/illegal/wrong GAT datum/proposal,300195750,823743,13344 +Agora/Proposal/validator/advancing/with 10 cosigners and 1 effects/illegal/wrong GAT datum/authority,79975987,214000,3545 +Agora/Proposal/validator/advancing/with 10 cosigners and 1 effects/illegal/invalid governor output datum/proposal,300195750,823743,13350 +Agora/Proposal/validator/advancing/with 10 cosigners and 1 effects/illegal/invalid governor output datum/authority,79975987,214000,3551 +Agora/Proposal/validator/advancing/with 10 cosigners and 2 effects/legal/to next state/from Draft to VotingReady/proposal,727265845,2071689,16146 +Agora/Proposal/validator/advancing/with 10 cosigners and 2 effects/legal/to next state/from VotingReady to Locked/proposal,367821982,1021519,13453 +Agora/Proposal/validator/advancing/with 10 cosigners and 2 effects/legal/to next state/from Locked to Finished/proposal,378231760,1040273,14724 +Agora/Proposal/validator/advancing/with 10 cosigners and 2 effects/legal/to next state/from Locked to Finished/governor,474000237,1292906,14188 +Agora/Proposal/validator/advancing/with 10 cosigners and 2 effects/legal/to next state/from Locked to Finished/authority,15617485,47272,4527 +Agora/Proposal/validator/advancing/with 10 cosigners and 2 effects/legal/to next state/from Draft to VotingReady/proposal,719643265,2047233,15586 +Agora/Proposal/validator/advancing/with 10 cosigners and 2 effects/legal/to next state/from VotingReady to Locked/proposal,360199402,997063,12894 +Agora/Proposal/validator/advancing/with 10 cosigners and 2 effects/legal/to next state/from Locked to Finished/proposal,370609180,1015817,13986 +Agora/Proposal/validator/advancing/with 10 cosigners and 2 effects/legal/to next state/from Locked to Finished/governor,469991046,1279286,13636 +Agora/Proposal/validator/advancing/with 10 cosigners and 2 effects/legal/to next state/from Locked to Finished/authority,79975987,214000,3975 +Agora/Proposal/validator/advancing/with 10 cosigners and 2 effects/legal/to failed state/from Draft to Finished/proposal,353996482,987092,13446 +Agora/Proposal/validator/advancing/with 10 cosigners and 2 effects/legal/to failed state/from VotingReady to Finished/proposal,352322498,977498,13447 +Agora/Proposal/validator/advancing/with 10 cosigners and 2 effects/legal/to failed state/from Locked to Finished/proposal,365210443,1009904,13447 +Agora/Proposal/validator/advancing/with 10 cosigners and 2 effects/legal/to failed state/from Draft to Finished/proposal,346373902,962636,12887 +Agora/Proposal/validator/advancing/with 10 cosigners and 2 effects/legal/to failed state/from VotingReady to Finished/proposal,344699918,953042,12888 +Agora/Proposal/validator/advancing/with 10 cosigners and 2 effects/legal/to failed state/from Locked to Finished/proposal,357587863,985448,12888 +Agora/Proposal/validator/advancing/with 10 cosigners and 2 effects/illegal/advance finished proposals/(negative test)/authority,15617485,47272,4527 +Agora/Proposal/validator/advancing/with 10 cosigners and 2 effects/illegal/advance finished proposals/(negative test)/authority,79975987,214000,3975 +Agora/Proposal/validator/advancing/with 10 cosigners and 2 effects/illegal/to next state too late/from Locked/governor,474000237,1292906,14188 +Agora/Proposal/validator/advancing/with 10 cosigners and 2 effects/illegal/to next state too late/from Locked/authority,15617485,47272,4527 +Agora/Proposal/validator/advancing/with 10 cosigners and 2 effects/illegal/to next state too late/from Locked/governor,469991046,1279286,13636 +Agora/Proposal/validator/advancing/with 10 cosigners and 2 effects/illegal/to next state too late/from Locked/authority,79975987,214000,3975 +Agora/Proposal/validator/advancing/with 10 cosigners and 2 effects/illegal/forget to mint GATs/proposal,370609180,1015817,13341 +Agora/Proposal/validator/advancing/with 10 cosigners and 2 effects/illegal/mint GATs for wrong validators/proposal,370609180,1015817,13986 +Agora/Proposal/validator/advancing/with 10 cosigners and 2 effects/illegal/mint GATs for wrong validators/authority,79975987,214000,3975 +Agora/Proposal/validator/advancing/with 10 cosigners and 2 effects/illegal/mint GATs with bad token name/proposal,370609180,1015817,14018 +Agora/Proposal/validator/advancing/with 10 cosigners and 2 effects/illegal/mint GATs with bad token name/authority,11941326,37148,4007 +Agora/Proposal/validator/advancing/with 10 cosigners and 2 effects/illegal/wrong GAT datum/proposal,370609180,1015817,13980 +Agora/Proposal/validator/advancing/with 10 cosigners and 2 effects/illegal/wrong GAT datum/authority,79975987,214000,3969 +Agora/Proposal/validator/advancing/with 10 cosigners and 2 effects/illegal/invalid governor output datum/proposal,370609180,1015817,13986 +Agora/Proposal/validator/advancing/with 10 cosigners and 2 effects/illegal/invalid governor output datum/authority,79975987,214000,3975 +Agora/Proposal/validator/advancing/with 10 cosigners and 5 effects/legal/to next state/from Draft to VotingReady/proposal,949940005,2684595,18893 +Agora/Proposal/validator/advancing/with 10 cosigners and 5 effects/legal/to next state/from VotingReady to Locked/proposal,601580800,1664389,16200 +Agora/Proposal/validator/advancing/with 10 cosigners and 5 effects/legal/to next state/from Locked to Finished/proposal,600905920,1653179,17471 +Agora/Proposal/validator/advancing/with 10 cosigners and 5 effects/legal/to next state/from Locked to Finished/governor,599205921,1644602,16019 +Agora/Proposal/validator/advancing/with 10 cosigners and 5 effects/legal/to next state/from Locked to Finished/authority,15617485,47272,6358 +Agora/Proposal/validator/advancing/with 10 cosigners and 5 effects/legal/to next state/from Draft to VotingReady/proposal,930883555,2623455,17492 +Agora/Proposal/validator/advancing/with 10 cosigners and 5 effects/legal/to next state/from VotingReady to Locked/proposal,582524350,1603249,14800 +Agora/Proposal/validator/advancing/with 10 cosigners and 5 effects/legal/to next state/from Locked to Finished/proposal,581849470,1592039,15892 +Agora/Proposal/validator/advancing/with 10 cosigners and 5 effects/legal/to next state/from Locked to Finished/governor,589932891,1612640,14907 +Agora/Proposal/validator/advancing/with 10 cosigners and 5 effects/legal/to next state/from Locked to Finished/authority,79975987,214000,5246 +Agora/Proposal/validator/advancing/with 10 cosigners and 5 effects/legal/to failed state/from Draft to Finished/proposal,576670642,1599998,16193 +Agora/Proposal/validator/advancing/with 10 cosigners and 5 effects/legal/to failed state/from VotingReady to Finished/proposal,574996658,1590404,16194 +Agora/Proposal/validator/advancing/with 10 cosigners and 5 effects/legal/to failed state/from Locked to Finished/proposal,587884603,1622810,16194 +Agora/Proposal/validator/advancing/with 10 cosigners and 5 effects/legal/to failed state/from Draft to Finished/proposal,557614192,1538858,14793 +Agora/Proposal/validator/advancing/with 10 cosigners and 5 effects/legal/to failed state/from VotingReady to Finished/proposal,555940208,1529264,14794 +Agora/Proposal/validator/advancing/with 10 cosigners and 5 effects/legal/to failed state/from Locked to Finished/proposal,568828153,1561670,14794 +Agora/Proposal/validator/advancing/with 10 cosigners and 5 effects/illegal/advance finished proposals/(negative test)/authority,15617485,47272,6358 +Agora/Proposal/validator/advancing/with 10 cosigners and 5 effects/illegal/advance finished proposals/(negative test)/authority,79975987,214000,5246 +Agora/Proposal/validator/advancing/with 10 cosigners and 5 effects/illegal/to next state too late/from Locked/governor,599205921,1644602,16019 +Agora/Proposal/validator/advancing/with 10 cosigners and 5 effects/illegal/to next state too late/from Locked/authority,15617485,47272,6358 +Agora/Proposal/validator/advancing/with 10 cosigners and 5 effects/illegal/to next state too late/from Locked/governor,589932891,1612640,14907 +Agora/Proposal/validator/advancing/with 10 cosigners and 5 effects/illegal/to next state too late/from Locked/authority,79975987,214000,5246 +Agora/Proposal/validator/advancing/with 10 cosigners and 5 effects/illegal/forget to mint GATs/proposal,581849470,1592039,15246 +Agora/Proposal/validator/advancing/with 10 cosigners and 5 effects/illegal/mint GATs for wrong validators/proposal,581849470,1592039,15892 +Agora/Proposal/validator/advancing/with 10 cosigners and 5 effects/illegal/mint GATs for wrong validators/authority,79975987,214000,5246 +Agora/Proposal/validator/advancing/with 10 cosigners and 5 effects/illegal/mint GATs with bad token name/proposal,581849470,1592039,15924 +Agora/Proposal/validator/advancing/with 10 cosigners and 5 effects/illegal/mint GATs with bad token name/authority,11941326,37148,5278 +Agora/Proposal/validator/advancing/with 10 cosigners and 5 effects/illegal/wrong GAT datum/proposal,581849470,1592039,15886 +Agora/Proposal/validator/advancing/with 10 cosigners and 5 effects/illegal/wrong GAT datum/authority,79975987,214000,5240 +Agora/Proposal/validator/advancing/with 10 cosigners and 5 effects/illegal/invalid governor output datum/proposal,581849470,1592039,15892 +Agora/Proposal/validator/advancing/with 10 cosigners and 5 effects/illegal/invalid governor output datum/authority,79975987,214000,5246 +Agora/Proposal/validator/unlocking/legal/with 1 stakes/voter: retract votes while voting/stake,285403154,777620,8088 +Agora/Proposal/validator/unlocking/legal/with 1 stakes/voter: retract votes while voting/proposal,210639755,597210,11466 +Agora/Proposal/validator/unlocking/legal/with 1 stakes/voter: retract votes while voting by delegatee/stake,292230049,794776,8088 +Agora/Proposal/validator/unlocking/legal/with 1 stakes/voter: retract votes while voting by delegatee/proposal,210639755,597210,11466 +Agora/Proposal/validator/unlocking/legal/with 1 stakes/voter/creator: retract votes while voting/stake,295909409,808222,8104 +Agora/Proposal/validator/unlocking/legal/with 1 stakes/voter/creator: retract votes while voting/proposal,216975159,615624,11477 +Agora/Proposal/validator/unlocking/legal/with 1 stakes/creator: remove creator lock after voting/stake,286404411,780827,8091 +Agora/Proposal/validator/unlocking/legal/with 1 stakes/creator: remove creator lock after voting/proposal,180998979,514017,11470 +Agora/Proposal/validator/unlocking/legal/with 1 stakes/Voter: remove lock after voting/stake,286534132,780024,8093 +Agora/Proposal/validator/unlocking/legal/with 1 stakes/Voter: remove lock after voting/proposal,182037256,516815,11471 +Agora/Proposal/validator/unlocking/legal/with 3 stakes/voter: retract votes while voting/stake,604761210,1567098,9433 +Agora/Proposal/validator/unlocking/legal/with 3 stakes/voter: retract votes while voting/proposal,320366003,903218,12811 +Agora/Proposal/validator/unlocking/legal/with 3 stakes/voter: retract votes while voting by delegatee/stake,611588105,1584254,9433 +Agora/Proposal/validator/unlocking/legal/with 3 stakes/voter: retract votes while voting by delegatee/proposal,320366003,903218,12811 +Agora/Proposal/validator/unlocking/legal/with 3 stakes/voter/creator: retract votes while voting/stake,636279975,1658904,9471 +Agora/Proposal/validator/unlocking/legal/with 3 stakes/voter/creator: retract votes while voting/proposal,339372215,958460,12844 +Agora/Proposal/validator/unlocking/legal/with 3 stakes/creator: remove creator lock after voting/stake,605503025,1571911,9434 +Agora/Proposal/validator/unlocking/legal/with 3 stakes/creator: remove creator lock after voting/proposal,246924141,693561,12813 +Agora/Proposal/validator/unlocking/legal/with 3 stakes/Voter: remove lock after voting/stake,605892188,1569502,9438 +Agora/Proposal/validator/unlocking/legal/with 3 stakes/Voter: remove lock after voting/proposal,250038972,701955,12816 +Agora/Proposal/validator/unlocking/legal/with 5 stakes/voter: retract votes while voting/stake,943765922,2388016,10779 +Agora/Proposal/validator/unlocking/legal/with 5 stakes/voter: retract votes while voting/proposal,430092251,1209226,14157 +Agora/Proposal/validator/unlocking/legal/with 5 stakes/voter: retract votes while voting by delegatee/stake,950592817,2405172,10779 +Agora/Proposal/validator/unlocking/legal/with 5 stakes/voter: retract votes while voting by delegatee/proposal,430092251,1209226,14157 +Agora/Proposal/validator/unlocking/legal/with 5 stakes/voter/creator: retract votes while voting/stake,996297197,2541026,10839 +Agora/Proposal/validator/unlocking/legal/with 5 stakes/voter/creator: retract votes while voting/proposal,461769271,1301296,14212 +Agora/Proposal/validator/unlocking/legal/with 5 stakes/creator: remove creator lock after voting/stake,944248295,2394435,10778 +Agora/Proposal/validator/unlocking/legal/with 5 stakes/creator: remove creator lock after voting/proposal,312849303,873105,14157 +Agora/Proposal/validator/unlocking/legal/with 5 stakes/Voter: remove lock after voting/stake,944896900,2390420,10784 +Agora/Proposal/validator/unlocking/legal/with 5 stakes/Voter: remove lock after voting/proposal,318040688,887095,14162 +Agora/Proposal/validator/unlocking/legal/with 7 stakes/voter: retract votes while voting/stake,1302417290,3240374,12124 +Agora/Proposal/validator/unlocking/legal/with 7 stakes/voter: retract votes while voting/proposal,539818499,1515234,15502 +Agora/Proposal/validator/unlocking/legal/with 7 stakes/voter: retract votes while voting by delegatee/stake,1309244185,3257530,12124 +Agora/Proposal/validator/unlocking/legal/with 7 stakes/voter: retract votes while voting by delegatee/proposal,539818499,1515234,15502 +Agora/Proposal/validator/unlocking/legal/with 7 stakes/voter/creator: retract votes while voting/stake,1375961075,3454588,12206 +Agora/Proposal/validator/unlocking/legal/with 7 stakes/voter/creator: retract votes while voting/proposal,584166327,1644132,15579 +Agora/Proposal/validator/unlocking/legal/with 7 stakes/creator: remove creator lock after voting/stake,1302640221,3248399,12121 +Agora/Proposal/validator/unlocking/legal/with 7 stakes/creator: remove creator lock after voting/proposal,378774465,1052649,15500 +Agora/Proposal/validator/unlocking/legal/with 7 stakes/Voter: remove lock after voting/stake,1303548268,3242778,12129 +Agora/Proposal/validator/unlocking/legal/with 7 stakes/Voter: remove lock after voting/proposal,386042404,1072235,15507 +Agora/Proposal/validator/unlocking/legal/with 9 stakes/voter: retract votes while voting/stake,1680715314,4124172,13469 +Agora/Proposal/validator/unlocking/legal/with 9 stakes/voter: retract votes while voting/proposal,649544747,1821242,16847 +Agora/Proposal/validator/unlocking/legal/with 9 stakes/voter: retract votes while voting by delegatee/stake,1687542209,4141328,13469 +Agora/Proposal/validator/unlocking/legal/with 9 stakes/voter: retract votes while voting by delegatee/proposal,649544747,1821242,16847 +Agora/Proposal/validator/unlocking/legal/with 9 stakes/voter/creator: retract votes while voting/stake,1775271609,4399590,13573 +Agora/Proposal/validator/unlocking/legal/with 9 stakes/voter/creator: retract votes while voting/proposal,706563383,1986968,16946 +Agora/Proposal/validator/unlocking/legal/with 9 stakes/creator: remove creator lock after voting/stake,1680678803,4133803,13464 +Agora/Proposal/validator/unlocking/legal/with 9 stakes/creator: remove creator lock after voting/proposal,444699627,1232193,16843 +Agora/Proposal/validator/unlocking/legal/with 9 stakes/Voter: remove lock after voting/stake,1681846292,4126576,13474 +Agora/Proposal/validator/unlocking/legal/with 9 stakes/Voter: remove lock after voting/proposal,454044120,1257375,16852 +Agora/Proposal/validator/unlocking/legal/with 11 stakes/voter: retract votes while voting/stake,2078659994,5039410,14815 +Agora/Proposal/validator/unlocking/legal/with 11 stakes/voter: retract votes while voting/proposal,759270995,2127250,18193 +Agora/Proposal/validator/unlocking/legal/with 11 stakes/voter: retract votes while voting by delegatee/stake,2085486889,5056566,14815 +Agora/Proposal/validator/unlocking/legal/with 11 stakes/voter: retract votes while voting by delegatee/proposal,759270995,2127250,18193 +Agora/Proposal/validator/unlocking/legal/with 11 stakes/voter/creator: retract votes while voting/stake,2194228799,5376032,14942 +Agora/Proposal/validator/unlocking/legal/with 11 stakes/voter/creator: retract votes while voting/proposal,828960439,2329804,18315 +Agora/Proposal/validator/unlocking/legal/with 11 stakes/creator: remove creator lock after voting/stake,2078364041,5050647,14808 +Agora/Proposal/validator/unlocking/legal/with 11 stakes/creator: remove creator lock after voting/proposal,510624789,1411737,18187 +Agora/Proposal/validator/unlocking/legal/with 11 stakes/Voter: remove lock after voting/stake,2079790972,5041814,14820 +Agora/Proposal/validator/unlocking/legal/with 11 stakes/Voter: remove lock after voting/proposal,522045836,1442515,18198 +Agora/Proposal/validator/unlocking/illegal/with 1 stakes/retract votes while not voting/(negative test)/stake,284837665,776418,8088 +Agora/Proposal/validator/unlocking/illegal/with 1 stakes/retract votes while not voting/(negative test)/stake,285968643,778822,8088 +Agora/Proposal/validator/unlocking/illegal/with 1 stakes/retract votes while not voting/(negative test)/stake,286534132,780024,8088 +Agora/Proposal/validator/unlocking/illegal/with 1 stakes/remove creator too early/(negative test)/proposal,179302512,510411,11470 +Agora/Proposal/validator/unlocking/illegal/with 1 stakes/remove creator too early/(negative test)/proposal,183507363,521672,11470 +Agora/Proposal/validator/unlocking/illegal/with 1 stakes/remove creator too early/(negative test)/proposal,180433490,512815,11470 +Agora/Proposal/validator/unlocking/illegal/with 1 stakes/unlock an irrelevant stake/stake,295050691,810746,8110 +Agora/Proposal/validator/unlocking/illegal/with 1 stakes/creator: retract votes/stake,283750508,780049,8092 +Agora/Proposal/validator/unlocking/illegal/with 1 stakes/change output stake value/proposal,210639755,597210,11463 +Agora/Proposal/validator/unlocking/illegal/with 3 stakes/retract votes while not voting/(negative test)/stake,604195721,1565896,9433 +Agora/Proposal/validator/unlocking/illegal/with 3 stakes/retract votes while not voting/(negative test)/stake,605326699,1568300,9433 +Agora/Proposal/validator/unlocking/illegal/with 3 stakes/retract votes while not voting/(negative test)/stake,605892188,1569502,9433 +Agora/Proposal/validator/unlocking/illegal/with 3 stakes/remove creator too early/(negative test)/proposal,245227674,689955,12813 +Agora/Proposal/validator/unlocking/illegal/with 3 stakes/remove creator too early/(negative test)/proposal,249432525,701216,12813 +Agora/Proposal/validator/unlocking/illegal/with 3 stakes/remove creator too early/(negative test)/proposal,246358652,692359,12813 +Agora/Proposal/validator/unlocking/illegal/with 3 stakes/unlock an irrelevant stake/stake,618968829,1642896,9489 +Agora/Proposal/validator/unlocking/illegal/with 3 stakes/creator: retract votes/stake,585068280,1550805,9447 +Agora/Proposal/validator/unlocking/illegal/with 3 stakes/change output stake value/proposal,320366003,903218,12802 +Agora/Proposal/validator/unlocking/illegal/with 5 stakes/retract votes while not voting/(negative test)/stake,943200433,2386814,10779 +Agora/Proposal/validator/unlocking/illegal/with 5 stakes/retract votes while not voting/(negative test)/stake,944331411,2389218,10779 +Agora/Proposal/validator/unlocking/illegal/with 5 stakes/retract votes while not voting/(negative test)/stake,944896900,2390420,10779 +Agora/Proposal/validator/unlocking/illegal/with 5 stakes/remove creator too early/(negative test)/proposal,311152836,869499,14157 +Agora/Proposal/validator/unlocking/illegal/with 5 stakes/remove creator too early/(negative test)/proposal,315357687,880760,14157 +Agora/Proposal/validator/unlocking/illegal/with 5 stakes/remove creator too early/(negative test)/proposal,312283814,871903,14157 +Agora/Proposal/validator/unlocking/illegal/with 5 stakes/unlock an irrelevant stake/stake,942886967,2475046,10869 +Agora/Proposal/validator/unlocking/illegal/with 5 stakes/creator: retract votes/stake,886386052,2321561,10803 +Agora/Proposal/validator/unlocking/illegal/with 5 stakes/change output stake value/proposal,430092251,1209226,14142 +Agora/Proposal/validator/unlocking/illegal/with 7 stakes/retract votes while not voting/(negative test)/stake,1301851801,3239172,12124 +Agora/Proposal/validator/unlocking/illegal/with 7 stakes/retract votes while not voting/(negative test)/stake,1302982779,3241576,12124 +Agora/Proposal/validator/unlocking/illegal/with 7 stakes/retract votes while not voting/(negative test)/stake,1303548268,3242778,12124 +Agora/Proposal/validator/unlocking/illegal/with 7 stakes/remove creator too early/(negative test)/proposal,377077998,1049043,15500 +Agora/Proposal/validator/unlocking/illegal/with 7 stakes/remove creator too early/(negative test)/proposal,381282849,1060304,15500 +Agora/Proposal/validator/unlocking/illegal/with 7 stakes/remove creator too early/(negative test)/proposal,378208976,1051447,15500 +Agora/Proposal/validator/unlocking/illegal/with 7 stakes/unlock an irrelevant stake/stake,1266805105,3307196,12248 +Agora/Proposal/validator/unlocking/illegal/with 7 stakes/creator: retract votes/stake,1187703824,3092317,12158 +Agora/Proposal/validator/unlocking/illegal/with 7 stakes/change output stake value/proposal,539818499,1515234,15481 +Agora/Proposal/validator/unlocking/illegal/with 9 stakes/retract votes while not voting/(negative test)/stake,1680149825,4122970,13469 +Agora/Proposal/validator/unlocking/illegal/with 9 stakes/retract votes while not voting/(negative test)/stake,1681280803,4125374,13469 +Agora/Proposal/validator/unlocking/illegal/with 9 stakes/retract votes while not voting/(negative test)/stake,1681846292,4126576,13469 +Agora/Proposal/validator/unlocking/illegal/with 9 stakes/remove creator too early/(negative test)/proposal,443003160,1228587,16843 +Agora/Proposal/validator/unlocking/illegal/with 9 stakes/remove creator too early/(negative test)/proposal,447208011,1239848,16843 +Agora/Proposal/validator/unlocking/illegal/with 9 stakes/remove creator too early/(negative test)/proposal,444134138,1230991,16843 +Agora/Proposal/validator/unlocking/illegal/with 9 stakes/unlock an irrelevant stake/stake,1590723243,4139346,13628 +Agora/Proposal/validator/unlocking/illegal/with 9 stakes/creator: retract votes/stake,1489021596,3863073,13513 +Agora/Proposal/validator/unlocking/illegal/with 9 stakes/change output stake value/proposal,649544747,1821242,16820 +Agora/Proposal/validator/unlocking/illegal/with 11 stakes/retract votes while not voting/(negative test)/stake,2078094505,5038208,14815 +Agora/Proposal/validator/unlocking/illegal/with 11 stakes/retract votes while not voting/(negative test)/stake,2079225483,5040612,14815 +Agora/Proposal/validator/unlocking/illegal/with 11 stakes/retract votes while not voting/(negative test)/stake,2079790972,5041814,14815 +Agora/Proposal/validator/unlocking/illegal/with 11 stakes/remove creator too early/(negative test)/proposal,508928322,1408131,18187 +Agora/Proposal/validator/unlocking/illegal/with 11 stakes/remove creator too early/(negative test)/proposal,513133173,1419392,18187 +Agora/Proposal/validator/unlocking/illegal/with 11 stakes/remove creator too early/(negative test)/proposal,510059300,1410535,18187 +Agora/Proposal/validator/unlocking/illegal/with 11 stakes/unlock an irrelevant stake/stake,1914641381,4971496,15008 +Agora/Proposal/validator/unlocking/illegal/with 11 stakes/creator: retract votes/stake,1790339368,4633829,14870 +Agora/Proposal/validator/unlocking/illegal/with 11 stakes/change output stake value/proposal,759270995,2127250,18160 Agora/AuthorityToken/singleAuthorityTokenBurned/Correct simple,26456223,75851,755 Agora/AuthorityToken/singleAuthorityTokenBurned/Correct many inputs,51581175,146321,855 Agora/AuthorityToken/singleAuthorityTokenBurned/Correct even though scripts don't match,26456223,75851,754 -Agora/Treasury/Validator/Positive/Allows for effect changes,42170246,119764,1460 -Agora/Treasury/Validator/Positive/Fails when GAT token name is not script address,42170246,119764,1496 +Agora/Treasury/Validator/Positive/Allows for effect changes,42170246,119764,1444 +Agora/Treasury/Validator/Positive/Fails when GAT token name is not script address,42170246,119764,1480 Agora/AuthorityToken/singleAuthorityTokenBurned/Correct simple,26456223,75851,755 Agora/AuthorityToken/singleAuthorityTokenBurned/Correct many inputs,51581175,146321,855 Agora/AuthorityToken/singleAuthorityTokenBurned/Correct even though scripts don't match,26456223,75851,754 Agora/Governor/policy/totally legal,63319800,170930,2766 -Agora/Governor/validator/mutate/legal,129016947,358159,11167 +Agora/Governor/validator/mutate/legal,129223947,359059,11308 diff --git a/flake.lock b/flake.lock index bdcc464..2c47a3f 100644 --- a/flake.lock +++ b/flake.lock @@ -112,6 +112,70 @@ "type": "github" } }, + "HTTP_16": { + "flake": false, + "locked": { + "lastModified": 1451647621, + "narHash": "sha256-oHIyw3x0iKBexEo49YeUDV1k74ZtyYKGR2gNJXXRxts=", + "owner": "phadej", + "repo": "HTTP", + "rev": "9bc0996d412fef1787449d841277ef663ad9a915", + "type": "github" + }, + "original": { + "owner": "phadej", + "repo": "HTTP", + "type": "github" + } + }, + "HTTP_17": { + "flake": false, + "locked": { + "lastModified": 1451647621, + "narHash": "sha256-oHIyw3x0iKBexEo49YeUDV1k74ZtyYKGR2gNJXXRxts=", + "owner": "phadej", + "repo": "HTTP", + "rev": "9bc0996d412fef1787449d841277ef663ad9a915", + "type": "github" + }, + "original": { + "owner": "phadej", + "repo": "HTTP", + "type": "github" + } + }, + "HTTP_18": { + "flake": false, + "locked": { + "lastModified": 1451647621, + "narHash": "sha256-oHIyw3x0iKBexEo49YeUDV1k74ZtyYKGR2gNJXXRxts=", + "owner": "phadej", + "repo": "HTTP", + "rev": "9bc0996d412fef1787449d841277ef663ad9a915", + "type": "github" + }, + "original": { + "owner": "phadej", + "repo": "HTTP", + "type": "github" + } + }, + "HTTP_19": { + "flake": false, + "locked": { + "lastModified": 1451647621, + "narHash": "sha256-oHIyw3x0iKBexEo49YeUDV1k74ZtyYKGR2gNJXXRxts=", + "owner": "phadej", + "repo": "HTTP", + "rev": "9bc0996d412fef1787449d841277ef663ad9a915", + "type": "github" + }, + "original": { + "owner": "phadej", + "repo": "HTTP", + "type": "github" + } + }, "HTTP_2": { "flake": false, "locked": { @@ -128,6 +192,54 @@ "type": "github" } }, + "HTTP_20": { + "flake": false, + "locked": { + "lastModified": 1451647621, + "narHash": "sha256-oHIyw3x0iKBexEo49YeUDV1k74ZtyYKGR2gNJXXRxts=", + "owner": "phadej", + "repo": "HTTP", + "rev": "9bc0996d412fef1787449d841277ef663ad9a915", + "type": "github" + }, + "original": { + "owner": "phadej", + "repo": "HTTP", + "type": "github" + } + }, + "HTTP_21": { + "flake": false, + "locked": { + "lastModified": 1451647621, + "narHash": "sha256-oHIyw3x0iKBexEo49YeUDV1k74ZtyYKGR2gNJXXRxts=", + "owner": "phadej", + "repo": "HTTP", + "rev": "9bc0996d412fef1787449d841277ef663ad9a915", + "type": "github" + }, + "original": { + "owner": "phadej", + "repo": "HTTP", + "type": "github" + } + }, + "HTTP_22": { + "flake": false, + "locked": { + "lastModified": 1451647621, + "narHash": "sha256-oHIyw3x0iKBexEo49YeUDV1k74ZtyYKGR2gNJXXRxts=", + "owner": "phadej", + "repo": "HTTP", + "rev": "9bc0996d412fef1787449d841277ef663ad9a915", + "type": "github" + }, + "original": { + "owner": "phadej", + "repo": "HTTP", + "type": "github" + } + }, "HTTP_3": { "flake": false, "locked": { @@ -359,6 +471,74 @@ "type": "github" } }, + "cabal-32_16": { + "flake": false, + "locked": { + "lastModified": 1603716527, + "narHash": "sha256-X0TFfdD4KZpwl0Zr6x+PLxUt/VyKQfX7ylXHdmZIL+w=", + "owner": "haskell", + "repo": "cabal", + "rev": "48bf10787e27364730dd37a42b603cee8d6af7ee", + "type": "github" + }, + "original": { + "owner": "haskell", + "ref": "3.2", + "repo": "cabal", + "type": "github" + } + }, + "cabal-32_17": { + "flake": false, + "locked": { + "lastModified": 1603716527, + "narHash": "sha256-X0TFfdD4KZpwl0Zr6x+PLxUt/VyKQfX7ylXHdmZIL+w=", + "owner": "haskell", + "repo": "cabal", + "rev": "48bf10787e27364730dd37a42b603cee8d6af7ee", + "type": "github" + }, + "original": { + "owner": "haskell", + "ref": "3.2", + "repo": "cabal", + "type": "github" + } + }, + "cabal-32_18": { + "flake": false, + "locked": { + "lastModified": 1603716527, + "narHash": "sha256-X0TFfdD4KZpwl0Zr6x+PLxUt/VyKQfX7ylXHdmZIL+w=", + "owner": "haskell", + "repo": "cabal", + "rev": "48bf10787e27364730dd37a42b603cee8d6af7ee", + "type": "github" + }, + "original": { + "owner": "haskell", + "ref": "3.2", + "repo": "cabal", + "type": "github" + } + }, + "cabal-32_19": { + "flake": false, + "locked": { + "lastModified": 1603716527, + "narHash": "sha256-X0TFfdD4KZpwl0Zr6x+PLxUt/VyKQfX7ylXHdmZIL+w=", + "owner": "haskell", + "repo": "cabal", + "rev": "48bf10787e27364730dd37a42b603cee8d6af7ee", + "type": "github" + }, + "original": { + "owner": "haskell", + "ref": "3.2", + "repo": "cabal", + "type": "github" + } + }, "cabal-32_2": { "flake": false, "locked": { @@ -376,6 +556,57 @@ "type": "github" } }, + "cabal-32_20": { + "flake": false, + "locked": { + "lastModified": 1603716527, + "narHash": "sha256-X0TFfdD4KZpwl0Zr6x+PLxUt/VyKQfX7ylXHdmZIL+w=", + "owner": "haskell", + "repo": "cabal", + "rev": "48bf10787e27364730dd37a42b603cee8d6af7ee", + "type": "github" + }, + "original": { + "owner": "haskell", + "ref": "3.2", + "repo": "cabal", + "type": "github" + } + }, + "cabal-32_21": { + "flake": false, + "locked": { + "lastModified": 1603716527, + "narHash": "sha256-X0TFfdD4KZpwl0Zr6x+PLxUt/VyKQfX7ylXHdmZIL+w=", + "owner": "haskell", + "repo": "cabal", + "rev": "48bf10787e27364730dd37a42b603cee8d6af7ee", + "type": "github" + }, + "original": { + "owner": "haskell", + "ref": "3.2", + "repo": "cabal", + "type": "github" + } + }, + "cabal-32_22": { + "flake": false, + "locked": { + "lastModified": 1603716527, + "narHash": "sha256-X0TFfdD4KZpwl0Zr6x+PLxUt/VyKQfX7ylXHdmZIL+w=", + "owner": "haskell", + "repo": "cabal", + "rev": "48bf10787e27364730dd37a42b603cee8d6af7ee", + "type": "github" + }, + "original": { + "owner": "haskell", + "ref": "3.2", + "repo": "cabal", + "type": "github" + } + }, "cabal-32_3": { "flake": false, "locked": { @@ -614,6 +845,74 @@ "type": "github" } }, + "cabal-34_16": { + "flake": false, + "locked": { + "lastModified": 1640353650, + "narHash": "sha256-N1t6M3/wqj90AEdRkeC8i923gQYUpzSr8b40qVOZ1Rk=", + "owner": "haskell", + "repo": "cabal", + "rev": "942639c18c0cd8ec53e0a6f8d120091af35312cd", + "type": "github" + }, + "original": { + "owner": "haskell", + "ref": "3.4", + "repo": "cabal", + "type": "github" + } + }, + "cabal-34_17": { + "flake": false, + "locked": { + "lastModified": 1640353650, + "narHash": "sha256-N1t6M3/wqj90AEdRkeC8i923gQYUpzSr8b40qVOZ1Rk=", + "owner": "haskell", + "repo": "cabal", + "rev": "942639c18c0cd8ec53e0a6f8d120091af35312cd", + "type": "github" + }, + "original": { + "owner": "haskell", + "ref": "3.4", + "repo": "cabal", + "type": "github" + } + }, + "cabal-34_18": { + "flake": false, + "locked": { + "lastModified": 1640353650, + "narHash": "sha256-N1t6M3/wqj90AEdRkeC8i923gQYUpzSr8b40qVOZ1Rk=", + "owner": "haskell", + "repo": "cabal", + "rev": "942639c18c0cd8ec53e0a6f8d120091af35312cd", + "type": "github" + }, + "original": { + "owner": "haskell", + "ref": "3.4", + "repo": "cabal", + "type": "github" + } + }, + "cabal-34_19": { + "flake": false, + "locked": { + "lastModified": 1640353650, + "narHash": "sha256-N1t6M3/wqj90AEdRkeC8i923gQYUpzSr8b40qVOZ1Rk=", + "owner": "haskell", + "repo": "cabal", + "rev": "942639c18c0cd8ec53e0a6f8d120091af35312cd", + "type": "github" + }, + "original": { + "owner": "haskell", + "ref": "3.4", + "repo": "cabal", + "type": "github" + } + }, "cabal-34_2": { "flake": false, "locked": { @@ -631,6 +930,57 @@ "type": "github" } }, + "cabal-34_20": { + "flake": false, + "locked": { + "lastModified": 1640353650, + "narHash": "sha256-N1t6M3/wqj90AEdRkeC8i923gQYUpzSr8b40qVOZ1Rk=", + "owner": "haskell", + "repo": "cabal", + "rev": "942639c18c0cd8ec53e0a6f8d120091af35312cd", + "type": "github" + }, + "original": { + "owner": "haskell", + "ref": "3.4", + "repo": "cabal", + "type": "github" + } + }, + "cabal-34_21": { + "flake": false, + "locked": { + "lastModified": 1640353650, + "narHash": "sha256-N1t6M3/wqj90AEdRkeC8i923gQYUpzSr8b40qVOZ1Rk=", + "owner": "haskell", + "repo": "cabal", + "rev": "942639c18c0cd8ec53e0a6f8d120091af35312cd", + "type": "github" + }, + "original": { + "owner": "haskell", + "ref": "3.4", + "repo": "cabal", + "type": "github" + } + }, + "cabal-34_22": { + "flake": false, + "locked": { + "lastModified": 1640353650, + "narHash": "sha256-N1t6M3/wqj90AEdRkeC8i923gQYUpzSr8b40qVOZ1Rk=", + "owner": "haskell", + "repo": "cabal", + "rev": "942639c18c0cd8ec53e0a6f8d120091af35312cd", + "type": "github" + }, + "original": { + "owner": "haskell", + "ref": "3.4", + "repo": "cabal", + "type": "github" + } + }, "cabal-34_3": { "flake": false, "locked": { @@ -869,6 +1219,74 @@ "type": "github" } }, + "cabal-36_16": { + "flake": false, + "locked": { + "lastModified": 1641652457, + "narHash": "sha256-BlFPKP4C4HRUJeAbdembX1Rms1LD380q9s0qVDeoAak=", + "owner": "haskell", + "repo": "cabal", + "rev": "f27667f8ec360c475027dcaee0138c937477b070", + "type": "github" + }, + "original": { + "owner": "haskell", + "ref": "3.6", + "repo": "cabal", + "type": "github" + } + }, + "cabal-36_17": { + "flake": false, + "locked": { + "lastModified": 1641652457, + "narHash": "sha256-BlFPKP4C4HRUJeAbdembX1Rms1LD380q9s0qVDeoAak=", + "owner": "haskell", + "repo": "cabal", + "rev": "f27667f8ec360c475027dcaee0138c937477b070", + "type": "github" + }, + "original": { + "owner": "haskell", + "ref": "3.6", + "repo": "cabal", + "type": "github" + } + }, + "cabal-36_18": { + "flake": false, + "locked": { + "lastModified": 1641652457, + "narHash": "sha256-BlFPKP4C4HRUJeAbdembX1Rms1LD380q9s0qVDeoAak=", + "owner": "haskell", + "repo": "cabal", + "rev": "f27667f8ec360c475027dcaee0138c937477b070", + "type": "github" + }, + "original": { + "owner": "haskell", + "ref": "3.6", + "repo": "cabal", + "type": "github" + } + }, + "cabal-36_19": { + "flake": false, + "locked": { + "lastModified": 1641652457, + "narHash": "sha256-BlFPKP4C4HRUJeAbdembX1Rms1LD380q9s0qVDeoAak=", + "owner": "haskell", + "repo": "cabal", + "rev": "f27667f8ec360c475027dcaee0138c937477b070", + "type": "github" + }, + "original": { + "owner": "haskell", + "ref": "3.6", + "repo": "cabal", + "type": "github" + } + }, "cabal-36_2": { "flake": false, "locked": { @@ -886,6 +1304,57 @@ "type": "github" } }, + "cabal-36_20": { + "flake": false, + "locked": { + "lastModified": 1641652457, + "narHash": "sha256-BlFPKP4C4HRUJeAbdembX1Rms1LD380q9s0qVDeoAak=", + "owner": "haskell", + "repo": "cabal", + "rev": "f27667f8ec360c475027dcaee0138c937477b070", + "type": "github" + }, + "original": { + "owner": "haskell", + "ref": "3.6", + "repo": "cabal", + "type": "github" + } + }, + "cabal-36_21": { + "flake": false, + "locked": { + "lastModified": 1641652457, + "narHash": "sha256-BlFPKP4C4HRUJeAbdembX1Rms1LD380q9s0qVDeoAak=", + "owner": "haskell", + "repo": "cabal", + "rev": "f27667f8ec360c475027dcaee0138c937477b070", + "type": "github" + }, + "original": { + "owner": "haskell", + "ref": "3.6", + "repo": "cabal", + "type": "github" + } + }, + "cabal-36_22": { + "flake": false, + "locked": { + "lastModified": 1641652457, + "narHash": "sha256-BlFPKP4C4HRUJeAbdembX1Rms1LD380q9s0qVDeoAak=", + "owner": "haskell", + "repo": "cabal", + "rev": "f27667f8ec360c475027dcaee0138c937477b070", + "type": "github" + }, + "original": { + "owner": "haskell", + "ref": "3.6", + "repo": "cabal", + "type": "github" + } + }, "cabal-36_3": { "flake": false, "locked": { @@ -1040,16 +1509,17 @@ "cardano-base_11": { "flake": false, "locked": { - "lastModified": 1652788515, - "narHash": "sha256-l0KgomRi6YhEoOlFnBYEXhnZO2+PW68rhfUrbMXjhCQ=", + "lastModified": 1654537609, + "narHash": "sha256-4b0keLjRaVSdEwfBXB1iT3QPlsutdxSltGfBufT4Clw=", "owner": "input-output-hk", "repo": "cardano-base", - "rev": "631cb6cf1fa01ab346233b610a38b3b4cba6e6ab", + "rev": "0f3a867493059e650cda69e20a5cbf1ace289a57", "type": "github" }, "original": { "owner": "input-output-hk", "repo": "cardano-base", + "rev": "0f3a867493059e650cda69e20a5cbf1ace289a57", "type": "github" } }, @@ -1117,6 +1587,70 @@ "type": "github" } }, + "cardano-base_16": { + "flake": false, + "locked": { + "lastModified": 1652788515, + "narHash": "sha256-l0KgomRi6YhEoOlFnBYEXhnZO2+PW68rhfUrbMXjhCQ=", + "owner": "input-output-hk", + "repo": "cardano-base", + "rev": "631cb6cf1fa01ab346233b610a38b3b4cba6e6ab", + "type": "github" + }, + "original": { + "owner": "input-output-hk", + "repo": "cardano-base", + "type": "github" + } + }, + "cardano-base_17": { + "flake": false, + "locked": { + "lastModified": 1652788515, + "narHash": "sha256-l0KgomRi6YhEoOlFnBYEXhnZO2+PW68rhfUrbMXjhCQ=", + "owner": "input-output-hk", + "repo": "cardano-base", + "rev": "631cb6cf1fa01ab346233b610a38b3b4cba6e6ab", + "type": "github" + }, + "original": { + "owner": "input-output-hk", + "repo": "cardano-base", + "type": "github" + } + }, + "cardano-base_18": { + "flake": false, + "locked": { + "lastModified": 1652788515, + "narHash": "sha256-l0KgomRi6YhEoOlFnBYEXhnZO2+PW68rhfUrbMXjhCQ=", + "owner": "input-output-hk", + "repo": "cardano-base", + "rev": "631cb6cf1fa01ab346233b610a38b3b4cba6e6ab", + "type": "github" + }, + "original": { + "owner": "input-output-hk", + "repo": "cardano-base", + "type": "github" + } + }, + "cardano-base_19": { + "flake": false, + "locked": { + "lastModified": 1652788515, + "narHash": "sha256-l0KgomRi6YhEoOlFnBYEXhnZO2+PW68rhfUrbMXjhCQ=", + "owner": "input-output-hk", + "repo": "cardano-base", + "rev": "631cb6cf1fa01ab346233b610a38b3b4cba6e6ab", + "type": "github" + }, + "original": { + "owner": "input-output-hk", + "repo": "cardano-base", + "type": "github" + } + }, "cardano-base_2": { "flake": false, "locked": { @@ -1133,6 +1667,54 @@ "type": "github" } }, + "cardano-base_20": { + "flake": false, + "locked": { + "lastModified": 1652788515, + "narHash": "sha256-l0KgomRi6YhEoOlFnBYEXhnZO2+PW68rhfUrbMXjhCQ=", + "owner": "input-output-hk", + "repo": "cardano-base", + "rev": "631cb6cf1fa01ab346233b610a38b3b4cba6e6ab", + "type": "github" + }, + "original": { + "owner": "input-output-hk", + "repo": "cardano-base", + "type": "github" + } + }, + "cardano-base_21": { + "flake": false, + "locked": { + "lastModified": 1652788515, + "narHash": "sha256-l0KgomRi6YhEoOlFnBYEXhnZO2+PW68rhfUrbMXjhCQ=", + "owner": "input-output-hk", + "repo": "cardano-base", + "rev": "631cb6cf1fa01ab346233b610a38b3b4cba6e6ab", + "type": "github" + }, + "original": { + "owner": "input-output-hk", + "repo": "cardano-base", + "type": "github" + } + }, + "cardano-base_22": { + "flake": false, + "locked": { + "lastModified": 1652788515, + "narHash": "sha256-l0KgomRi6YhEoOlFnBYEXhnZO2+PW68rhfUrbMXjhCQ=", + "owner": "input-output-hk", + "repo": "cardano-base", + "rev": "631cb6cf1fa01ab346233b610a38b3b4cba6e6ab", + "type": "github" + }, + "original": { + "owner": "input-output-hk", + "repo": "cardano-base", + "type": "github" + } + }, "cardano-base_3": { "flake": false, "locked": { @@ -1364,6 +1946,74 @@ "type": "github" } }, + "cardano-crypto_16": { + "flake": false, + "locked": { + "lastModified": 1621376239, + "narHash": "sha256-oxIOVlgm07FAEmgGRF1C2me9TXqVxQulEOcJ22zpTRs=", + "owner": "input-output-hk", + "repo": "cardano-crypto", + "rev": "07397f0e50da97eaa0575d93bee7ac4b2b2576ec", + "type": "github" + }, + "original": { + "owner": "input-output-hk", + "repo": "cardano-crypto", + "rev": "07397f0e50da97eaa0575d93bee7ac4b2b2576ec", + "type": "github" + } + }, + "cardano-crypto_17": { + "flake": false, + "locked": { + "lastModified": 1621376239, + "narHash": "sha256-oxIOVlgm07FAEmgGRF1C2me9TXqVxQulEOcJ22zpTRs=", + "owner": "input-output-hk", + "repo": "cardano-crypto", + "rev": "07397f0e50da97eaa0575d93bee7ac4b2b2576ec", + "type": "github" + }, + "original": { + "owner": "input-output-hk", + "repo": "cardano-crypto", + "rev": "07397f0e50da97eaa0575d93bee7ac4b2b2576ec", + "type": "github" + } + }, + "cardano-crypto_18": { + "flake": false, + "locked": { + "lastModified": 1621376239, + "narHash": "sha256-oxIOVlgm07FAEmgGRF1C2me9TXqVxQulEOcJ22zpTRs=", + "owner": "input-output-hk", + "repo": "cardano-crypto", + "rev": "07397f0e50da97eaa0575d93bee7ac4b2b2576ec", + "type": "github" + }, + "original": { + "owner": "input-output-hk", + "repo": "cardano-crypto", + "rev": "07397f0e50da97eaa0575d93bee7ac4b2b2576ec", + "type": "github" + } + }, + "cardano-crypto_19": { + "flake": false, + "locked": { + "lastModified": 1621376239, + "narHash": "sha256-oxIOVlgm07FAEmgGRF1C2me9TXqVxQulEOcJ22zpTRs=", + "owner": "input-output-hk", + "repo": "cardano-crypto", + "rev": "07397f0e50da97eaa0575d93bee7ac4b2b2576ec", + "type": "github" + }, + "original": { + "owner": "input-output-hk", + "repo": "cardano-crypto", + "rev": "07397f0e50da97eaa0575d93bee7ac4b2b2576ec", + "type": "github" + } + }, "cardano-crypto_2": { "flake": false, "locked": { @@ -1381,6 +2031,57 @@ "type": "github" } }, + "cardano-crypto_20": { + "flake": false, + "locked": { + "lastModified": 1621376239, + "narHash": "sha256-oxIOVlgm07FAEmgGRF1C2me9TXqVxQulEOcJ22zpTRs=", + "owner": "input-output-hk", + "repo": "cardano-crypto", + "rev": "07397f0e50da97eaa0575d93bee7ac4b2b2576ec", + "type": "github" + }, + "original": { + "owner": "input-output-hk", + "repo": "cardano-crypto", + "rev": "07397f0e50da97eaa0575d93bee7ac4b2b2576ec", + "type": "github" + } + }, + "cardano-crypto_21": { + "flake": false, + "locked": { + "lastModified": 1621376239, + "narHash": "sha256-oxIOVlgm07FAEmgGRF1C2me9TXqVxQulEOcJ22zpTRs=", + "owner": "input-output-hk", + "repo": "cardano-crypto", + "rev": "07397f0e50da97eaa0575d93bee7ac4b2b2576ec", + "type": "github" + }, + "original": { + "owner": "input-output-hk", + "repo": "cardano-crypto", + "rev": "07397f0e50da97eaa0575d93bee7ac4b2b2576ec", + "type": "github" + } + }, + "cardano-crypto_22": { + "flake": false, + "locked": { + "lastModified": 1621376239, + "narHash": "sha256-oxIOVlgm07FAEmgGRF1C2me9TXqVxQulEOcJ22zpTRs=", + "owner": "input-output-hk", + "repo": "cardano-crypto", + "rev": "07397f0e50da97eaa0575d93bee7ac4b2b2576ec", + "type": "github" + }, + "original": { + "owner": "input-output-hk", + "repo": "cardano-crypto", + "rev": "07397f0e50da97eaa0575d93bee7ac4b2b2576ec", + "type": "github" + } + }, "cardano-crypto_3": { "flake": false, "locked": { @@ -1537,17 +2238,17 @@ "cardano-prelude_11": { "flake": false, "locked": { - "lastModified": 1653997332, - "narHash": "sha256-E+YSfUsvxdoOr7n7fz4xd7zb4z8XBRGNYOKipc2A1pw=", - "owner": "mlabs-haskell", + "lastModified": 1617239936, + "narHash": "sha256-BtbT5UxOAADvQD4qTPNrGfnjQNgbYNO4EAJwH2ZsTQo=", + "owner": "input-output-hk", "repo": "cardano-prelude", - "rev": "713c7ae79a4d538fcd653c976a652913df1567b9", + "rev": "fd773f7a58412131512b9f694ab95653ac430852", "type": "github" }, "original": { - "owner": "mlabs-haskell", + "owner": "input-output-hk", "repo": "cardano-prelude", - "rev": "713c7ae79a4d538fcd653c976a652913df1567b9", + "rev": "fd773f7a58412131512b9f694ab95653ac430852", "type": "github" } }, @@ -1619,6 +2320,74 @@ "type": "github" } }, + "cardano-prelude_16": { + "flake": false, + "locked": { + "lastModified": 1653997332, + "narHash": "sha256-E+YSfUsvxdoOr7n7fz4xd7zb4z8XBRGNYOKipc2A1pw=", + "owner": "mlabs-haskell", + "repo": "cardano-prelude", + "rev": "713c7ae79a4d538fcd653c976a652913df1567b9", + "type": "github" + }, + "original": { + "owner": "mlabs-haskell", + "repo": "cardano-prelude", + "rev": "713c7ae79a4d538fcd653c976a652913df1567b9", + "type": "github" + } + }, + "cardano-prelude_17": { + "flake": false, + "locked": { + "lastModified": 1653997332, + "narHash": "sha256-E+YSfUsvxdoOr7n7fz4xd7zb4z8XBRGNYOKipc2A1pw=", + "owner": "mlabs-haskell", + "repo": "cardano-prelude", + "rev": "713c7ae79a4d538fcd653c976a652913df1567b9", + "type": "github" + }, + "original": { + "owner": "mlabs-haskell", + "repo": "cardano-prelude", + "rev": "713c7ae79a4d538fcd653c976a652913df1567b9", + "type": "github" + } + }, + "cardano-prelude_18": { + "flake": false, + "locked": { + "lastModified": 1653997332, + "narHash": "sha256-E+YSfUsvxdoOr7n7fz4xd7zb4z8XBRGNYOKipc2A1pw=", + "owner": "mlabs-haskell", + "repo": "cardano-prelude", + "rev": "713c7ae79a4d538fcd653c976a652913df1567b9", + "type": "github" + }, + "original": { + "owner": "mlabs-haskell", + "repo": "cardano-prelude", + "rev": "713c7ae79a4d538fcd653c976a652913df1567b9", + "type": "github" + } + }, + "cardano-prelude_19": { + "flake": false, + "locked": { + "lastModified": 1653997332, + "narHash": "sha256-E+YSfUsvxdoOr7n7fz4xd7zb4z8XBRGNYOKipc2A1pw=", + "owner": "mlabs-haskell", + "repo": "cardano-prelude", + "rev": "713c7ae79a4d538fcd653c976a652913df1567b9", + "type": "github" + }, + "original": { + "owner": "mlabs-haskell", + "repo": "cardano-prelude", + "rev": "713c7ae79a4d538fcd653c976a652913df1567b9", + "type": "github" + } + }, "cardano-prelude_2": { "flake": false, "locked": { @@ -1636,6 +2405,57 @@ "type": "github" } }, + "cardano-prelude_20": { + "flake": false, + "locked": { + "lastModified": 1653997332, + "narHash": "sha256-E+YSfUsvxdoOr7n7fz4xd7zb4z8XBRGNYOKipc2A1pw=", + "owner": "mlabs-haskell", + "repo": "cardano-prelude", + "rev": "713c7ae79a4d538fcd653c976a652913df1567b9", + "type": "github" + }, + "original": { + "owner": "mlabs-haskell", + "repo": "cardano-prelude", + "rev": "713c7ae79a4d538fcd653c976a652913df1567b9", + "type": "github" + } + }, + "cardano-prelude_21": { + "flake": false, + "locked": { + "lastModified": 1653997332, + "narHash": "sha256-E+YSfUsvxdoOr7n7fz4xd7zb4z8XBRGNYOKipc2A1pw=", + "owner": "mlabs-haskell", + "repo": "cardano-prelude", + "rev": "713c7ae79a4d538fcd653c976a652913df1567b9", + "type": "github" + }, + "original": { + "owner": "mlabs-haskell", + "repo": "cardano-prelude", + "rev": "713c7ae79a4d538fcd653c976a652913df1567b9", + "type": "github" + } + }, + "cardano-prelude_22": { + "flake": false, + "locked": { + "lastModified": 1653997332, + "narHash": "sha256-E+YSfUsvxdoOr7n7fz4xd7zb4z8XBRGNYOKipc2A1pw=", + "owner": "mlabs-haskell", + "repo": "cardano-prelude", + "rev": "713c7ae79a4d538fcd653c976a652913df1567b9", + "type": "github" + }, + "original": { + "owner": "mlabs-haskell", + "repo": "cardano-prelude", + "rev": "713c7ae79a4d538fcd653c976a652913df1567b9", + "type": "github" + } + }, "cardano-prelude_3": { "flake": false, "locked": { @@ -1867,6 +2687,70 @@ "type": "github" } }, + "cardano-repo-tool_16": { + "flake": false, + "locked": { + "lastModified": 1624584417, + "narHash": "sha256-YSepT97PagR/1jTYV/Yer8a2GjFe9+tTwaTCHxuK50M=", + "owner": "input-output-hk", + "repo": "cardano-repo-tool", + "rev": "30e826ed8f00e3e154453b122a6f3d779b2f73ec", + "type": "github" + }, + "original": { + "owner": "input-output-hk", + "repo": "cardano-repo-tool", + "type": "github" + } + }, + "cardano-repo-tool_17": { + "flake": false, + "locked": { + "lastModified": 1624584417, + "narHash": "sha256-YSepT97PagR/1jTYV/Yer8a2GjFe9+tTwaTCHxuK50M=", + "owner": "input-output-hk", + "repo": "cardano-repo-tool", + "rev": "30e826ed8f00e3e154453b122a6f3d779b2f73ec", + "type": "github" + }, + "original": { + "owner": "input-output-hk", + "repo": "cardano-repo-tool", + "type": "github" + } + }, + "cardano-repo-tool_18": { + "flake": false, + "locked": { + "lastModified": 1624584417, + "narHash": "sha256-YSepT97PagR/1jTYV/Yer8a2GjFe9+tTwaTCHxuK50M=", + "owner": "input-output-hk", + "repo": "cardano-repo-tool", + "rev": "30e826ed8f00e3e154453b122a6f3d779b2f73ec", + "type": "github" + }, + "original": { + "owner": "input-output-hk", + "repo": "cardano-repo-tool", + "type": "github" + } + }, + "cardano-repo-tool_19": { + "flake": false, + "locked": { + "lastModified": 1624584417, + "narHash": "sha256-YSepT97PagR/1jTYV/Yer8a2GjFe9+tTwaTCHxuK50M=", + "owner": "input-output-hk", + "repo": "cardano-repo-tool", + "rev": "30e826ed8f00e3e154453b122a6f3d779b2f73ec", + "type": "github" + }, + "original": { + "owner": "input-output-hk", + "repo": "cardano-repo-tool", + "type": "github" + } + }, "cardano-repo-tool_2": { "flake": false, "locked": { @@ -1883,6 +2767,38 @@ "type": "github" } }, + "cardano-repo-tool_20": { + "flake": false, + "locked": { + "lastModified": 1624584417, + "narHash": "sha256-YSepT97PagR/1jTYV/Yer8a2GjFe9+tTwaTCHxuK50M=", + "owner": "input-output-hk", + "repo": "cardano-repo-tool", + "rev": "30e826ed8f00e3e154453b122a6f3d779b2f73ec", + "type": "github" + }, + "original": { + "owner": "input-output-hk", + "repo": "cardano-repo-tool", + "type": "github" + } + }, + "cardano-repo-tool_21": { + "flake": false, + "locked": { + "lastModified": 1624584417, + "narHash": "sha256-YSepT97PagR/1jTYV/Yer8a2GjFe9+tTwaTCHxuK50M=", + "owner": "input-output-hk", + "repo": "cardano-repo-tool", + "rev": "30e826ed8f00e3e154453b122a6f3d779b2f73ec", + "type": "github" + }, + "original": { + "owner": "input-output-hk", + "repo": "cardano-repo-tool", + "type": "github" + } + }, "cardano-repo-tool_3": { "flake": false, "locked": { @@ -2107,6 +3023,70 @@ "type": "github" } }, + "cardano-shell_16": { + "flake": false, + "locked": { + "lastModified": 1608537748, + "narHash": "sha256-PulY1GfiMgKVnBci3ex4ptk2UNYMXqGjJOxcPy2KYT4=", + "owner": "input-output-hk", + "repo": "cardano-shell", + "rev": "9392c75087cb9a3d453998f4230930dea3a95725", + "type": "github" + }, + "original": { + "owner": "input-output-hk", + "repo": "cardano-shell", + "type": "github" + } + }, + "cardano-shell_17": { + "flake": false, + "locked": { + "lastModified": 1608537748, + "narHash": "sha256-PulY1GfiMgKVnBci3ex4ptk2UNYMXqGjJOxcPy2KYT4=", + "owner": "input-output-hk", + "repo": "cardano-shell", + "rev": "9392c75087cb9a3d453998f4230930dea3a95725", + "type": "github" + }, + "original": { + "owner": "input-output-hk", + "repo": "cardano-shell", + "type": "github" + } + }, + "cardano-shell_18": { + "flake": false, + "locked": { + "lastModified": 1608537748, + "narHash": "sha256-PulY1GfiMgKVnBci3ex4ptk2UNYMXqGjJOxcPy2KYT4=", + "owner": "input-output-hk", + "repo": "cardano-shell", + "rev": "9392c75087cb9a3d453998f4230930dea3a95725", + "type": "github" + }, + "original": { + "owner": "input-output-hk", + "repo": "cardano-shell", + "type": "github" + } + }, + "cardano-shell_19": { + "flake": false, + "locked": { + "lastModified": 1608537748, + "narHash": "sha256-PulY1GfiMgKVnBci3ex4ptk2UNYMXqGjJOxcPy2KYT4=", + "owner": "input-output-hk", + "repo": "cardano-shell", + "rev": "9392c75087cb9a3d453998f4230930dea3a95725", + "type": "github" + }, + "original": { + "owner": "input-output-hk", + "repo": "cardano-shell", + "type": "github" + } + }, "cardano-shell_2": { "flake": false, "locked": { @@ -2123,6 +3103,54 @@ "type": "github" } }, + "cardano-shell_20": { + "flake": false, + "locked": { + "lastModified": 1608537748, + "narHash": "sha256-PulY1GfiMgKVnBci3ex4ptk2UNYMXqGjJOxcPy2KYT4=", + "owner": "input-output-hk", + "repo": "cardano-shell", + "rev": "9392c75087cb9a3d453998f4230930dea3a95725", + "type": "github" + }, + "original": { + "owner": "input-output-hk", + "repo": "cardano-shell", + "type": "github" + } + }, + "cardano-shell_21": { + "flake": false, + "locked": { + "lastModified": 1608537748, + "narHash": "sha256-PulY1GfiMgKVnBci3ex4ptk2UNYMXqGjJOxcPy2KYT4=", + "owner": "input-output-hk", + "repo": "cardano-shell", + "rev": "9392c75087cb9a3d453998f4230930dea3a95725", + "type": "github" + }, + "original": { + "owner": "input-output-hk", + "repo": "cardano-shell", + "type": "github" + } + }, + "cardano-shell_22": { + "flake": false, + "locked": { + "lastModified": 1608537748, + "narHash": "sha256-PulY1GfiMgKVnBci3ex4ptk2UNYMXqGjJOxcPy2KYT4=", + "owner": "input-output-hk", + "repo": "cardano-shell", + "rev": "9392c75087cb9a3d453998f4230930dea3a95725", + "type": "github" + }, + "original": { + "owner": "input-output-hk", + "repo": "cardano-shell", + "type": "github" + } + }, "cardano-shell_3": { "flake": false, "locked": { @@ -2235,6 +3263,133 @@ "type": "github" } }, + "ema": { + "inputs": { + "flake-compat": "flake-compat", + "flake-utils": "flake-utils_12", + "nixpkgs": "nixpkgs_43" + }, + "locked": { + "lastModified": 1653742730, + "narHash": "sha256-NyhjoMbm3h1aTskIU6jowNClSgA92bUcGcVNPfWNWgE=", + "owner": "srid", + "repo": "ema", + "rev": "50d9499db16b4e334776d8e8cffcd144c67f9fc4", + "type": "github" + }, + "original": { + "owner": "srid", + "ref": "multisite", + "repo": "ema", + "type": "github" + } + }, + "emanote": { + "inputs": { + "ema": "ema", + "flake-compat": [ + "liqwid-script-export", + "ply", + "plutarch", + "emanote", + "ema", + "flake-compat" + ], + "flake-utils": [ + "liqwid-script-export", + "ply", + "plutarch", + "emanote", + "ema", + "flake-utils" + ], + "heist": "heist", + "ixset-typed": "ixset-typed", + "nixpkgs": [ + "liqwid-script-export", + "ply", + "plutarch", + "emanote", + "ema", + "nixpkgs" + ], + "pandoc-link-context": "pandoc-link-context", + "tailwind-haskell": "tailwind-haskell" + }, + "locked": { + "lastModified": 1653742875, + "narHash": "sha256-2IFMkA6/T0nCQHQcC8UhYWh8q8FQyGDBKfcDIhBJ3JM=", + "owner": "srid", + "repo": "emanote", + "rev": "ab5155ef400ce83a744362a4b953315d7ee6a8c3", + "type": "github" + }, + "original": { + "owner": "srid", + "ref": "master", + "repo": "emanote", + "type": "github" + } + }, + "extra-hackage": { + "inputs": { + "haskell-nix": [ + "liqwid-script-export", + "ply", + "haskell-nix" + ], + "nixpkgs": [ + "liqwid-script-export", + "ply", + "nixpkgs" + ] + }, + "locked": { + "lastModified": 1658790167, + "narHash": "sha256-QRZCAz/k5hEvXiHc2aVDDc2jgPTeiRXUtARg0GA9rDU=", + "owner": "mlabs-haskell", + "repo": "haskell-nix-extra-hackage", + "rev": "ee50d7eb739819efdb27bda9f444e007c12e9833", + "type": "github" + }, + "original": { + "owner": "mlabs-haskell", + "repo": "haskell-nix-extra-hackage", + "type": "github" + } + }, + "flake-compat": { + "flake": false, + "locked": { + "lastModified": 1650374568, + "narHash": "sha256-Z+s0J8/r907g149rllvwhb4pKi8Wam5ij0st8PwAh+E=", + "owner": "edolstra", + "repo": "flake-compat", + "rev": "b4a34015c698c7793d592d66adbab377907a2be8", + "type": "github" + }, + "original": { + "owner": "edolstra", + "repo": "flake-compat", + "type": "github" + } + }, + "flake-compat_2": { + "flake": false, + "locked": { + "lastModified": 1641205782, + "narHash": "sha256-4jY7RCWUoZ9cKD8co0/4tFARpWB+57+r1bLLvXNJliY=", + "owner": "edolstra", + "repo": "flake-compat", + "rev": "b7547d3eed6f32d06102ead8991ec52ab0a4f1a7", + "type": "github" + }, + "original": { + "owner": "edolstra", + "repo": "flake-compat", + "type": "github" + } + }, "flake-utils": { "locked": { "lastModified": 1644229661, @@ -2282,30 +3437,32 @@ }, "flake-utils_12": { "locked": { - "lastModified": 1644229661, - "narHash": "sha256-1YdnJAsNy69bpcjuoKdOYQX0YxZBiCYZo4Twxerqv7k=", + "lastModified": 1652776076, + "narHash": "sha256-gzTw/v1vj4dOVbpBSJX4J0DwUR6LIyXo7/SuuTJp1kM=", "owner": "numtide", "repo": "flake-utils", - "rev": "3cecb5b042f7f209c56ffd8371b2711a290ec797", + "rev": "04c1b180862888302ddfb2e3ad9eaa63afc60cf8", "type": "github" }, "original": { "owner": "numtide", + "ref": "v1.0.0", "repo": "flake-utils", "type": "github" } }, "flake-utils_13": { "locked": { - "lastModified": 1644229661, - "narHash": "sha256-1YdnJAsNy69bpcjuoKdOYQX0YxZBiCYZo4Twxerqv7k=", + "lastModified": 1652776076, + "narHash": "sha256-gzTw/v1vj4dOVbpBSJX4J0DwUR6LIyXo7/SuuTJp1kM=", "owner": "numtide", "repo": "flake-utils", - "rev": "3cecb5b042f7f209c56ffd8371b2711a290ec797", + "rev": "04c1b180862888302ddfb2e3ad9eaa63afc60cf8", "type": "github" }, "original": { "owner": "numtide", + "ref": "v1.0.0", "repo": "flake-utils", "type": "github" } @@ -2340,6 +3497,66 @@ "type": "github" } }, + "flake-utils_16": { + "locked": { + "lastModified": 1644229661, + "narHash": "sha256-1YdnJAsNy69bpcjuoKdOYQX0YxZBiCYZo4Twxerqv7k=", + "owner": "numtide", + "repo": "flake-utils", + "rev": "3cecb5b042f7f209c56ffd8371b2711a290ec797", + "type": "github" + }, + "original": { + "owner": "numtide", + "repo": "flake-utils", + "type": "github" + } + }, + "flake-utils_17": { + "locked": { + "lastModified": 1644229661, + "narHash": "sha256-1YdnJAsNy69bpcjuoKdOYQX0YxZBiCYZo4Twxerqv7k=", + "owner": "numtide", + "repo": "flake-utils", + "rev": "3cecb5b042f7f209c56ffd8371b2711a290ec797", + "type": "github" + }, + "original": { + "owner": "numtide", + "repo": "flake-utils", + "type": "github" + } + }, + "flake-utils_18": { + "locked": { + "lastModified": 1644229661, + "narHash": "sha256-1YdnJAsNy69bpcjuoKdOYQX0YxZBiCYZo4Twxerqv7k=", + "owner": "numtide", + "repo": "flake-utils", + "rev": "3cecb5b042f7f209c56ffd8371b2711a290ec797", + "type": "github" + }, + "original": { + "owner": "numtide", + "repo": "flake-utils", + "type": "github" + } + }, + "flake-utils_19": { + "locked": { + "lastModified": 1644229661, + "narHash": "sha256-1YdnJAsNy69bpcjuoKdOYQX0YxZBiCYZo4Twxerqv7k=", + "owner": "numtide", + "repo": "flake-utils", + "rev": "3cecb5b042f7f209c56ffd8371b2711a290ec797", + "type": "github" + }, + "original": { + "owner": "numtide", + "repo": "flake-utils", + "type": "github" + } + }, "flake-utils_2": { "locked": { "lastModified": 1644229661, @@ -2355,6 +3572,96 @@ "type": "github" } }, + "flake-utils_20": { + "locked": { + "lastModified": 1644229661, + "narHash": "sha256-1YdnJAsNy69bpcjuoKdOYQX0YxZBiCYZo4Twxerqv7k=", + "owner": "numtide", + "repo": "flake-utils", + "rev": "3cecb5b042f7f209c56ffd8371b2711a290ec797", + "type": "github" + }, + "original": { + "owner": "numtide", + "repo": "flake-utils", + "type": "github" + } + }, + "flake-utils_21": { + "locked": { + "lastModified": 1644229661, + "narHash": "sha256-1YdnJAsNy69bpcjuoKdOYQX0YxZBiCYZo4Twxerqv7k=", + "owner": "numtide", + "repo": "flake-utils", + "rev": "3cecb5b042f7f209c56ffd8371b2711a290ec797", + "type": "github" + }, + "original": { + "owner": "numtide", + "repo": "flake-utils", + "type": "github" + } + }, + "flake-utils_22": { + "locked": { + "lastModified": 1644229661, + "narHash": "sha256-1YdnJAsNy69bpcjuoKdOYQX0YxZBiCYZo4Twxerqv7k=", + "owner": "numtide", + "repo": "flake-utils", + "rev": "3cecb5b042f7f209c56ffd8371b2711a290ec797", + "type": "github" + }, + "original": { + "owner": "numtide", + "repo": "flake-utils", + "type": "github" + } + }, + "flake-utils_23": { + "locked": { + "lastModified": 1644229661, + "narHash": "sha256-1YdnJAsNy69bpcjuoKdOYQX0YxZBiCYZo4Twxerqv7k=", + "owner": "numtide", + "repo": "flake-utils", + "rev": "3cecb5b042f7f209c56ffd8371b2711a290ec797", + "type": "github" + }, + "original": { + "owner": "numtide", + "repo": "flake-utils", + "type": "github" + } + }, + "flake-utils_24": { + "locked": { + "lastModified": 1644229661, + "narHash": "sha256-1YdnJAsNy69bpcjuoKdOYQX0YxZBiCYZo4Twxerqv7k=", + "owner": "numtide", + "repo": "flake-utils", + "rev": "3cecb5b042f7f209c56ffd8371b2711a290ec797", + "type": "github" + }, + "original": { + "owner": "numtide", + "repo": "flake-utils", + "type": "github" + } + }, + "flake-utils_25": { + "locked": { + "lastModified": 1644229661, + "narHash": "sha256-1YdnJAsNy69bpcjuoKdOYQX0YxZBiCYZo4Twxerqv7k=", + "owner": "numtide", + "repo": "flake-utils", + "rev": "3cecb5b042f7f209c56ffd8371b2711a290ec797", + "type": "github" + }, + "original": { + "owner": "numtide", + "repo": "flake-utils", + "type": "github" + } + }, "flake-utils_3": { "locked": { "lastModified": 1644229661, @@ -2495,16 +3802,17 @@ "flat_11": { "flake": false, "locked": { - "lastModified": 1651403785, - "narHash": "sha256-g+jGep1IXdw4q01W67J6f6OODY91QzIlW1+Eu8pR+u0=", - "owner": "Quid2", + "lastModified": 1628771504, + "narHash": "sha256-lRFND+ZnZvAph6ZYkr9wl9VAx41pb3uSFP8Wc7idP9M=", + "owner": "input-output-hk", "repo": "flat", - "rev": "559617e058098b776b431e2a67346ad3adea2440", + "rev": "ee59880f47ab835dbd73bea0847dab7869fc20d8", "type": "github" }, "original": { - "owner": "Quid2", + "owner": "input-output-hk", "repo": "flat", + "rev": "ee59880f47ab835dbd73bea0847dab7869fc20d8", "type": "github" } }, @@ -2572,6 +3880,70 @@ "type": "github" } }, + "flat_16": { + "flake": false, + "locked": { + "lastModified": 1651403785, + "narHash": "sha256-g+jGep1IXdw4q01W67J6f6OODY91QzIlW1+Eu8pR+u0=", + "owner": "Quid2", + "repo": "flat", + "rev": "559617e058098b776b431e2a67346ad3adea2440", + "type": "github" + }, + "original": { + "owner": "Quid2", + "repo": "flat", + "type": "github" + } + }, + "flat_17": { + "flake": false, + "locked": { + "lastModified": 1651403785, + "narHash": "sha256-g+jGep1IXdw4q01W67J6f6OODY91QzIlW1+Eu8pR+u0=", + "owner": "Quid2", + "repo": "flat", + "rev": "559617e058098b776b431e2a67346ad3adea2440", + "type": "github" + }, + "original": { + "owner": "Quid2", + "repo": "flat", + "type": "github" + } + }, + "flat_18": { + "flake": false, + "locked": { + "lastModified": 1651403785, + "narHash": "sha256-g+jGep1IXdw4q01W67J6f6OODY91QzIlW1+Eu8pR+u0=", + "owner": "Quid2", + "repo": "flat", + "rev": "559617e058098b776b431e2a67346ad3adea2440", + "type": "github" + }, + "original": { + "owner": "Quid2", + "repo": "flat", + "type": "github" + } + }, + "flat_19": { + "flake": false, + "locked": { + "lastModified": 1651403785, + "narHash": "sha256-g+jGep1IXdw4q01W67J6f6OODY91QzIlW1+Eu8pR+u0=", + "owner": "Quid2", + "repo": "flat", + "rev": "559617e058098b776b431e2a67346ad3adea2440", + "type": "github" + }, + "original": { + "owner": "Quid2", + "repo": "flat", + "type": "github" + } + }, "flat_2": { "flake": false, "locked": { @@ -2588,6 +3960,54 @@ "type": "github" } }, + "flat_20": { + "flake": false, + "locked": { + "lastModified": 1651403785, + "narHash": "sha256-g+jGep1IXdw4q01W67J6f6OODY91QzIlW1+Eu8pR+u0=", + "owner": "Quid2", + "repo": "flat", + "rev": "559617e058098b776b431e2a67346ad3adea2440", + "type": "github" + }, + "original": { + "owner": "Quid2", + "repo": "flat", + "type": "github" + } + }, + "flat_21": { + "flake": false, + "locked": { + "lastModified": 1651403785, + "narHash": "sha256-g+jGep1IXdw4q01W67J6f6OODY91QzIlW1+Eu8pR+u0=", + "owner": "Quid2", + "repo": "flat", + "rev": "559617e058098b776b431e2a67346ad3adea2440", + "type": "github" + }, + "original": { + "owner": "Quid2", + "repo": "flat", + "type": "github" + } + }, + "flat_22": { + "flake": false, + "locked": { + "lastModified": 1651403785, + "narHash": "sha256-g+jGep1IXdw4q01W67J6f6OODY91QzIlW1+Eu8pR+u0=", + "owner": "Quid2", + "repo": "flat", + "rev": "559617e058098b776b431e2a67346ad3adea2440", + "type": "github" + }, + "original": { + "owner": "Quid2", + "repo": "flat", + "type": "github" + } + }, "flat_3": { "flake": false, "locked": { @@ -2819,6 +4239,74 @@ "type": "github" } }, + "ghc-8.6.5-iohk_16": { + "flake": false, + "locked": { + "lastModified": 1600920045, + "narHash": "sha256-DO6kxJz248djebZLpSzTGD6s8WRpNI9BTwUeOf5RwY8=", + "owner": "input-output-hk", + "repo": "ghc", + "rev": "95713a6ecce4551240da7c96b6176f980af75cae", + "type": "github" + }, + "original": { + "owner": "input-output-hk", + "ref": "release/8.6.5-iohk", + "repo": "ghc", + "type": "github" + } + }, + "ghc-8.6.5-iohk_17": { + "flake": false, + "locked": { + "lastModified": 1600920045, + "narHash": "sha256-DO6kxJz248djebZLpSzTGD6s8WRpNI9BTwUeOf5RwY8=", + "owner": "input-output-hk", + "repo": "ghc", + "rev": "95713a6ecce4551240da7c96b6176f980af75cae", + "type": "github" + }, + "original": { + "owner": "input-output-hk", + "ref": "release/8.6.5-iohk", + "repo": "ghc", + "type": "github" + } + }, + "ghc-8.6.5-iohk_18": { + "flake": false, + "locked": { + "lastModified": 1600920045, + "narHash": "sha256-DO6kxJz248djebZLpSzTGD6s8WRpNI9BTwUeOf5RwY8=", + "owner": "input-output-hk", + "repo": "ghc", + "rev": "95713a6ecce4551240da7c96b6176f980af75cae", + "type": "github" + }, + "original": { + "owner": "input-output-hk", + "ref": "release/8.6.5-iohk", + "repo": "ghc", + "type": "github" + } + }, + "ghc-8.6.5-iohk_19": { + "flake": false, + "locked": { + "lastModified": 1600920045, + "narHash": "sha256-DO6kxJz248djebZLpSzTGD6s8WRpNI9BTwUeOf5RwY8=", + "owner": "input-output-hk", + "repo": "ghc", + "rev": "95713a6ecce4551240da7c96b6176f980af75cae", + "type": "github" + }, + "original": { + "owner": "input-output-hk", + "ref": "release/8.6.5-iohk", + "repo": "ghc", + "type": "github" + } + }, "ghc-8.6.5-iohk_2": { "flake": false, "locked": { @@ -2836,6 +4324,57 @@ "type": "github" } }, + "ghc-8.6.5-iohk_20": { + "flake": false, + "locked": { + "lastModified": 1600920045, + "narHash": "sha256-DO6kxJz248djebZLpSzTGD6s8WRpNI9BTwUeOf5RwY8=", + "owner": "input-output-hk", + "repo": "ghc", + "rev": "95713a6ecce4551240da7c96b6176f980af75cae", + "type": "github" + }, + "original": { + "owner": "input-output-hk", + "ref": "release/8.6.5-iohk", + "repo": "ghc", + "type": "github" + } + }, + "ghc-8.6.5-iohk_21": { + "flake": false, + "locked": { + "lastModified": 1600920045, + "narHash": "sha256-DO6kxJz248djebZLpSzTGD6s8WRpNI9BTwUeOf5RwY8=", + "owner": "input-output-hk", + "repo": "ghc", + "rev": "95713a6ecce4551240da7c96b6176f980af75cae", + "type": "github" + }, + "original": { + "owner": "input-output-hk", + "ref": "release/8.6.5-iohk", + "repo": "ghc", + "type": "github" + } + }, + "ghc-8.6.5-iohk_22": { + "flake": false, + "locked": { + "lastModified": 1600920045, + "narHash": "sha256-DO6kxJz248djebZLpSzTGD6s8WRpNI9BTwUeOf5RwY8=", + "owner": "input-output-hk", + "repo": "ghc", + "rev": "95713a6ecce4551240da7c96b6176f980af75cae", + "type": "github" + }, + "original": { + "owner": "input-output-hk", + "ref": "release/8.6.5-iohk", + "repo": "ghc", + "type": "github" + } + }, "ghc-8.6.5-iohk_3": { "flake": false, "locked": { @@ -3067,6 +4606,70 @@ "type": "github" } }, + "gitignore-nix_16": { + "flake": false, + "locked": { + "lastModified": 1611672876, + "narHash": "sha256-qHu3uZ/o9jBHiA3MEKHJ06k7w4heOhA+4HCSIvflRxo=", + "owner": "hercules-ci", + "repo": "gitignore.nix", + "rev": "211907489e9f198594c0eb0ca9256a1949c9d412", + "type": "github" + }, + "original": { + "owner": "hercules-ci", + "repo": "gitignore.nix", + "type": "github" + } + }, + "gitignore-nix_17": { + "flake": false, + "locked": { + "lastModified": 1611672876, + "narHash": "sha256-qHu3uZ/o9jBHiA3MEKHJ06k7w4heOhA+4HCSIvflRxo=", + "owner": "hercules-ci", + "repo": "gitignore.nix", + "rev": "211907489e9f198594c0eb0ca9256a1949c9d412", + "type": "github" + }, + "original": { + "owner": "hercules-ci", + "repo": "gitignore.nix", + "type": "github" + } + }, + "gitignore-nix_18": { + "flake": false, + "locked": { + "lastModified": 1611672876, + "narHash": "sha256-qHu3uZ/o9jBHiA3MEKHJ06k7w4heOhA+4HCSIvflRxo=", + "owner": "hercules-ci", + "repo": "gitignore.nix", + "rev": "211907489e9f198594c0eb0ca9256a1949c9d412", + "type": "github" + }, + "original": { + "owner": "hercules-ci", + "repo": "gitignore.nix", + "type": "github" + } + }, + "gitignore-nix_19": { + "flake": false, + "locked": { + "lastModified": 1611672876, + "narHash": "sha256-qHu3uZ/o9jBHiA3MEKHJ06k7w4heOhA+4HCSIvflRxo=", + "owner": "hercules-ci", + "repo": "gitignore.nix", + "rev": "211907489e9f198594c0eb0ca9256a1949c9d412", + "type": "github" + }, + "original": { + "owner": "hercules-ci", + "repo": "gitignore.nix", + "type": "github" + } + }, "gitignore-nix_2": { "flake": false, "locked": { @@ -3083,6 +4686,38 @@ "type": "github" } }, + "gitignore-nix_20": { + "flake": false, + "locked": { + "lastModified": 1611672876, + "narHash": "sha256-qHu3uZ/o9jBHiA3MEKHJ06k7w4heOhA+4HCSIvflRxo=", + "owner": "hercules-ci", + "repo": "gitignore.nix", + "rev": "211907489e9f198594c0eb0ca9256a1949c9d412", + "type": "github" + }, + "original": { + "owner": "hercules-ci", + "repo": "gitignore.nix", + "type": "github" + } + }, + "gitignore-nix_21": { + "flake": false, + "locked": { + "lastModified": 1611672876, + "narHash": "sha256-qHu3uZ/o9jBHiA3MEKHJ06k7w4heOhA+4HCSIvflRxo=", + "owner": "hercules-ci", + "repo": "gitignore.nix", + "rev": "211907489e9f198594c0eb0ca9256a1949c9d412", + "type": "github" + }, + "original": { + "owner": "hercules-ci", + "repo": "gitignore.nix", + "type": "github" + } + }, "gitignore-nix_3": { "flake": false, "locked": { @@ -3323,6 +4958,70 @@ "type": "github" } }, + "hackage-nix_16": { + "flake": false, + "locked": { + "lastModified": 1651108473, + "narHash": "sha256-zHGCnBdwKvrcYanjf3GARTWF8V2pyJl1QNONUNZSoc0=", + "owner": "input-output-hk", + "repo": "hackage.nix", + "rev": "dbab3b292c3400d028a2257e3acd2ac0249da774", + "type": "github" + }, + "original": { + "owner": "input-output-hk", + "repo": "hackage.nix", + "type": "github" + } + }, + "hackage-nix_17": { + "flake": false, + "locked": { + "lastModified": 1651108473, + "narHash": "sha256-zHGCnBdwKvrcYanjf3GARTWF8V2pyJl1QNONUNZSoc0=", + "owner": "input-output-hk", + "repo": "hackage.nix", + "rev": "dbab3b292c3400d028a2257e3acd2ac0249da774", + "type": "github" + }, + "original": { + "owner": "input-output-hk", + "repo": "hackage.nix", + "type": "github" + } + }, + "hackage-nix_18": { + "flake": false, + "locked": { + "lastModified": 1651108473, + "narHash": "sha256-zHGCnBdwKvrcYanjf3GARTWF8V2pyJl1QNONUNZSoc0=", + "owner": "input-output-hk", + "repo": "hackage.nix", + "rev": "dbab3b292c3400d028a2257e3acd2ac0249da774", + "type": "github" + }, + "original": { + "owner": "input-output-hk", + "repo": "hackage.nix", + "type": "github" + } + }, + "hackage-nix_19": { + "flake": false, + "locked": { + "lastModified": 1651108473, + "narHash": "sha256-zHGCnBdwKvrcYanjf3GARTWF8V2pyJl1QNONUNZSoc0=", + "owner": "input-output-hk", + "repo": "hackage.nix", + "rev": "dbab3b292c3400d028a2257e3acd2ac0249da774", + "type": "github" + }, + "original": { + "owner": "input-output-hk", + "repo": "hackage.nix", + "type": "github" + } + }, "hackage-nix_2": { "flake": false, "locked": { @@ -3339,6 +5038,38 @@ "type": "github" } }, + "hackage-nix_20": { + "flake": false, + "locked": { + "lastModified": 1651108473, + "narHash": "sha256-zHGCnBdwKvrcYanjf3GARTWF8V2pyJl1QNONUNZSoc0=", + "owner": "input-output-hk", + "repo": "hackage.nix", + "rev": "dbab3b292c3400d028a2257e3acd2ac0249da774", + "type": "github" + }, + "original": { + "owner": "input-output-hk", + "repo": "hackage.nix", + "type": "github" + } + }, + "hackage-nix_21": { + "flake": false, + "locked": { + "lastModified": 1651108473, + "narHash": "sha256-zHGCnBdwKvrcYanjf3GARTWF8V2pyJl1QNONUNZSoc0=", + "owner": "input-output-hk", + "repo": "hackage.nix", + "rev": "dbab3b292c3400d028a2257e3acd2ac0249da774", + "type": "github" + }, + "original": { + "owner": "input-output-hk", + "repo": "hackage.nix", + "type": "github" + } + }, "hackage-nix_3": { "flake": false, "locked": { @@ -3470,11 +5201,11 @@ "hackage_11": { "flake": false, "locked": { - "lastModified": 1654046237, - "narHash": "sha256-FpM9zE+Q+WrvCiaZBCg5U1g0bYpiZOCxY8V3R5ydBu8=", + "lastModified": 1653441966, + "narHash": "sha256-aJFK0wDzoOrtb7ucZzKh5J+S2pThpwNCofl74s1olXU=", "owner": "input-output-hk", "repo": "hackage.nix", - "rev": "eeae1790b9c6a880d96e4a7214fdf0a73bdd6fc0", + "rev": "f7fe6ef8de52c43a9efa6fd4ac4902e5957dc573", "type": "github" }, "original": { @@ -3547,6 +5278,70 @@ "type": "github" } }, + "hackage_16": { + "flake": false, + "locked": { + "lastModified": 1654046237, + "narHash": "sha256-FpM9zE+Q+WrvCiaZBCg5U1g0bYpiZOCxY8V3R5ydBu8=", + "owner": "input-output-hk", + "repo": "hackage.nix", + "rev": "eeae1790b9c6a880d96e4a7214fdf0a73bdd6fc0", + "type": "github" + }, + "original": { + "owner": "input-output-hk", + "repo": "hackage.nix", + "type": "github" + } + }, + "hackage_17": { + "flake": false, + "locked": { + "lastModified": 1654046237, + "narHash": "sha256-FpM9zE+Q+WrvCiaZBCg5U1g0bYpiZOCxY8V3R5ydBu8=", + "owner": "input-output-hk", + "repo": "hackage.nix", + "rev": "eeae1790b9c6a880d96e4a7214fdf0a73bdd6fc0", + "type": "github" + }, + "original": { + "owner": "input-output-hk", + "repo": "hackage.nix", + "type": "github" + } + }, + "hackage_18": { + "flake": false, + "locked": { + "lastModified": 1654046237, + "narHash": "sha256-FpM9zE+Q+WrvCiaZBCg5U1g0bYpiZOCxY8V3R5ydBu8=", + "owner": "input-output-hk", + "repo": "hackage.nix", + "rev": "eeae1790b9c6a880d96e4a7214fdf0a73bdd6fc0", + "type": "github" + }, + "original": { + "owner": "input-output-hk", + "repo": "hackage.nix", + "type": "github" + } + }, + "hackage_19": { + "flake": false, + "locked": { + "lastModified": 1654046237, + "narHash": "sha256-FpM9zE+Q+WrvCiaZBCg5U1g0bYpiZOCxY8V3R5ydBu8=", + "owner": "input-output-hk", + "repo": "hackage.nix", + "rev": "eeae1790b9c6a880d96e4a7214fdf0a73bdd6fc0", + "type": "github" + }, + "original": { + "owner": "input-output-hk", + "repo": "hackage.nix", + "type": "github" + } + }, "hackage_2": { "flake": false, "locked": { @@ -3563,6 +5358,54 @@ "type": "github" } }, + "hackage_20": { + "flake": false, + "locked": { + "lastModified": 1654046237, + "narHash": "sha256-FpM9zE+Q+WrvCiaZBCg5U1g0bYpiZOCxY8V3R5ydBu8=", + "owner": "input-output-hk", + "repo": "hackage.nix", + "rev": "eeae1790b9c6a880d96e4a7214fdf0a73bdd6fc0", + "type": "github" + }, + "original": { + "owner": "input-output-hk", + "repo": "hackage.nix", + "type": "github" + } + }, + "hackage_21": { + "flake": false, + "locked": { + "lastModified": 1654046237, + "narHash": "sha256-FpM9zE+Q+WrvCiaZBCg5U1g0bYpiZOCxY8V3R5ydBu8=", + "owner": "input-output-hk", + "repo": "hackage.nix", + "rev": "eeae1790b9c6a880d96e4a7214fdf0a73bdd6fc0", + "type": "github" + }, + "original": { + "owner": "input-output-hk", + "repo": "hackage.nix", + "type": "github" + } + }, + "hackage_22": { + "flake": false, + "locked": { + "lastModified": 1654046237, + "narHash": "sha256-FpM9zE+Q+WrvCiaZBCg5U1g0bYpiZOCxY8V3R5ydBu8=", + "owner": "input-output-hk", + "repo": "hackage.nix", + "rev": "eeae1790b9c6a880d96e4a7214fdf0a73bdd6fc0", + "type": "github" + }, + "original": { + "owner": "input-output-hk", + "repo": "hackage.nix", + "type": "github" + } + }, "hackage_3": { "flake": false, "locked": { @@ -4071,6 +5914,154 @@ "type": "github" } }, + "haskell-language-server_31": { + "flake": false, + "locked": { + "lastModified": 1653778781, + "narHash": "sha256-oEVBaYRLjD4gC3vQuT0DCgmCSIeWSwGPVXXSKJDFUK0=", + "owner": "haskell", + "repo": "haskell-language-server", + "rev": "8c47d6ce2a8409a285a3f4c3f0e10c25fb4dd848", + "type": "github" + }, + "original": { + "owner": "haskell", + "repo": "haskell-language-server", + "type": "github" + } + }, + "haskell-language-server_32": { + "flake": false, + "locked": { + "lastModified": 1650980856, + "narHash": "sha256-uiwsfh/K3IABZDYj7JUZNIAPRVqH6g/r8X6QKg8DrZE=", + "owner": "haskell", + "repo": "haskell-language-server", + "rev": "b5a37f7fc360596899cb2945f363030f44156415", + "type": "github" + }, + "original": { + "owner": "haskell", + "ref": "1.7.0.0", + "repo": "haskell-language-server", + "type": "github" + } + }, + "haskell-language-server_33": { + "flake": false, + "locked": { + "lastModified": 1653778781, + "narHash": "sha256-oEVBaYRLjD4gC3vQuT0DCgmCSIeWSwGPVXXSKJDFUK0=", + "owner": "haskell", + "repo": "haskell-language-server", + "rev": "8c47d6ce2a8409a285a3f4c3f0e10c25fb4dd848", + "type": "github" + }, + "original": { + "owner": "haskell", + "repo": "haskell-language-server", + "type": "github" + } + }, + "haskell-language-server_34": { + "flake": false, + "locked": { + "lastModified": 1650980856, + "narHash": "sha256-uiwsfh/K3IABZDYj7JUZNIAPRVqH6g/r8X6QKg8DrZE=", + "owner": "haskell", + "repo": "haskell-language-server", + "rev": "b5a37f7fc360596899cb2945f363030f44156415", + "type": "github" + }, + "original": { + "owner": "haskell", + "ref": "1.7.0.0", + "repo": "haskell-language-server", + "type": "github" + } + }, + "haskell-language-server_35": { + "flake": false, + "locked": { + "lastModified": 1653778781, + "narHash": "sha256-oEVBaYRLjD4gC3vQuT0DCgmCSIeWSwGPVXXSKJDFUK0=", + "owner": "haskell", + "repo": "haskell-language-server", + "rev": "8c47d6ce2a8409a285a3f4c3f0e10c25fb4dd848", + "type": "github" + }, + "original": { + "owner": "haskell", + "repo": "haskell-language-server", + "type": "github" + } + }, + "haskell-language-server_36": { + "flake": false, + "locked": { + "lastModified": 1650980856, + "narHash": "sha256-uiwsfh/K3IABZDYj7JUZNIAPRVqH6g/r8X6QKg8DrZE=", + "owner": "haskell", + "repo": "haskell-language-server", + "rev": "b5a37f7fc360596899cb2945f363030f44156415", + "type": "github" + }, + "original": { + "owner": "haskell", + "ref": "1.7.0.0", + "repo": "haskell-language-server", + "type": "github" + } + }, + "haskell-language-server_37": { + "flake": false, + "locked": { + "lastModified": 1653778781, + "narHash": "sha256-oEVBaYRLjD4gC3vQuT0DCgmCSIeWSwGPVXXSKJDFUK0=", + "owner": "haskell", + "repo": "haskell-language-server", + "rev": "8c47d6ce2a8409a285a3f4c3f0e10c25fb4dd848", + "type": "github" + }, + "original": { + "owner": "haskell", + "repo": "haskell-language-server", + "type": "github" + } + }, + "haskell-language-server_38": { + "flake": false, + "locked": { + "lastModified": 1650980856, + "narHash": "sha256-uiwsfh/K3IABZDYj7JUZNIAPRVqH6g/r8X6QKg8DrZE=", + "owner": "haskell", + "repo": "haskell-language-server", + "rev": "b5a37f7fc360596899cb2945f363030f44156415", + "type": "github" + }, + "original": { + "owner": "haskell", + "ref": "1.7.0.0", + "repo": "haskell-language-server", + "type": "github" + } + }, + "haskell-language-server_39": { + "flake": false, + "locked": { + "lastModified": 1653778781, + "narHash": "sha256-oEVBaYRLjD4gC3vQuT0DCgmCSIeWSwGPVXXSKJDFUK0=", + "owner": "haskell", + "repo": "haskell-language-server", + "rev": "8c47d6ce2a8409a285a3f4c3f0e10c25fb4dd848", + "type": "github" + }, + "original": { + "owner": "haskell", + "repo": "haskell-language-server", + "type": "github" + } + }, "haskell-language-server_4": { "flake": false, "locked": { @@ -4088,6 +6079,56 @@ "type": "github" } }, + "haskell-language-server_40": { + "flake": false, + "locked": { + "lastModified": 1650980856, + "narHash": "sha256-uiwsfh/K3IABZDYj7JUZNIAPRVqH6g/r8X6QKg8DrZE=", + "owner": "haskell", + "repo": "haskell-language-server", + "rev": "b5a37f7fc360596899cb2945f363030f44156415", + "type": "github" + }, + "original": { + "owner": "haskell", + "ref": "1.7.0.0", + "repo": "haskell-language-server", + "type": "github" + } + }, + "haskell-language-server_41": { + "flake": false, + "locked": { + "lastModified": 1653778781, + "narHash": "sha256-oEVBaYRLjD4gC3vQuT0DCgmCSIeWSwGPVXXSKJDFUK0=", + "owner": "haskell", + "repo": "haskell-language-server", + "rev": "8c47d6ce2a8409a285a3f4c3f0e10c25fb4dd848", + "type": "github" + }, + "original": { + "owner": "haskell", + "repo": "haskell-language-server", + "type": "github" + } + }, + "haskell-language-server_42": { + "flake": false, + "locked": { + "lastModified": 1650980856, + "narHash": "sha256-uiwsfh/K3IABZDYj7JUZNIAPRVqH6g/r8X6QKg8DrZE=", + "owner": "haskell", + "repo": "haskell-language-server", + "rev": "b5a37f7fc360596899cb2945f363030f44156415", + "type": "github" + }, + "original": { + "owner": "haskell", + "ref": "1.7.0.0", + "repo": "haskell-language-server", + "type": "github" + } + }, "haskell-language-server_5": { "flake": false, "locked": { @@ -4241,16 +6282,14 @@ "haskell-nix-extra-hackage_10": { "inputs": { "haskell-nix": [ - "plutarch-safe-money", - "liqwid-plutarch-extra", - "plutarch-context-builder", + "liqwid-script-export", + "plutarch-numeric", "plutarch", "haskell-nix" ], "nixpkgs": [ - "plutarch-safe-money", - "liqwid-plutarch-extra", - "plutarch-context-builder", + "liqwid-script-export", + "plutarch-numeric", "plutarch", "nixpkgs" ] @@ -4273,16 +6312,14 @@ "haskell-nix-extra-hackage_11": { "inputs": { "haskell-nix": [ - "plutarch-safe-money", - "liqwid-plutarch-extra", - "plutarch-numeric", + "liqwid-script-export", + "ply", "plutarch", "haskell-nix" ], "nixpkgs": [ - "plutarch-safe-money", - "liqwid-plutarch-extra", - "plutarch-numeric", + "liqwid-script-export", + "ply", "plutarch", "nixpkgs" ] @@ -4305,16 +6342,10 @@ "haskell-nix-extra-hackage_12": { "inputs": { "haskell-nix": [ - "plutarch-safe-money", - "liqwid-plutarch-extra", - "plutarch-quickcheck", "plutarch", "haskell-nix" ], "nixpkgs": [ - "plutarch-safe-money", - "liqwid-plutarch-extra", - "plutarch-quickcheck", "plutarch", "nixpkgs" ] @@ -4337,12 +6368,12 @@ "haskell-nix-extra-hackage_13": { "inputs": { "haskell-nix": [ - "plutarch-safe-money", + "plutarch-context-builder", "plutarch", "haskell-nix" ], "nixpkgs": [ - "plutarch-safe-money", + "plutarch-context-builder", "plutarch", "nixpkgs" ] @@ -4365,13 +6396,11 @@ "haskell-nix-extra-hackage_14": { "inputs": { "haskell-nix": [ - "plutarch-safe-money", "plutarch-numeric", "plutarch", "haskell-nix" ], "nixpkgs": [ - "plutarch-safe-money", "plutarch-numeric", "plutarch", "nixpkgs" @@ -4395,12 +6424,138 @@ "haskell-nix-extra-hackage_15": { "inputs": { "haskell-nix": [ - "plutarch-script-export", + "plutarch-quickcheck", "plutarch", "haskell-nix" ], "nixpkgs": [ - "plutarch-script-export", + "plutarch-quickcheck", + "plutarch", + "nixpkgs" + ] + }, + "locked": { + "lastModified": 1655143375, + "narHash": "sha256-yU+HPLwGPf5IeLj9IBQ1zrPBTYEwvYbuMnADs4T8RLQ=", + "owner": "mlabs-haskell", + "repo": "haskell-nix-extra-hackage", + "rev": "03ee7afdc1ad982e059e3941db80f7a5b30a2757", + "type": "github" + }, + "original": { + "owner": "mlabs-haskell", + "ref": "separate-hackages", + "repo": "haskell-nix-extra-hackage", + "type": "github" + } + }, + "haskell-nix-extra-hackage_16": { + "inputs": { + "haskell-nix": [ + "plutarch-safe-money", + "liqwid-plutarch-extra", + "plutarch", + "haskell-nix" + ], + "nixpkgs": [ + "plutarch-safe-money", + "liqwid-plutarch-extra", + "plutarch", + "nixpkgs" + ] + }, + "locked": { + "lastModified": 1655143375, + "narHash": "sha256-yU+HPLwGPf5IeLj9IBQ1zrPBTYEwvYbuMnADs4T8RLQ=", + "owner": "mlabs-haskell", + "repo": "haskell-nix-extra-hackage", + "rev": "03ee7afdc1ad982e059e3941db80f7a5b30a2757", + "type": "github" + }, + "original": { + "owner": "mlabs-haskell", + "ref": "separate-hackages", + "repo": "haskell-nix-extra-hackage", + "type": "github" + } + }, + "haskell-nix-extra-hackage_17": { + "inputs": { + "haskell-nix": [ + "plutarch-safe-money", + "liqwid-plutarch-extra", + "plutarch-context-builder", + "plutarch", + "haskell-nix" + ], + "nixpkgs": [ + "plutarch-safe-money", + "liqwid-plutarch-extra", + "plutarch-context-builder", + "plutarch", + "nixpkgs" + ] + }, + "locked": { + "lastModified": 1655143375, + "narHash": "sha256-yU+HPLwGPf5IeLj9IBQ1zrPBTYEwvYbuMnADs4T8RLQ=", + "owner": "mlabs-haskell", + "repo": "haskell-nix-extra-hackage", + "rev": "03ee7afdc1ad982e059e3941db80f7a5b30a2757", + "type": "github" + }, + "original": { + "owner": "mlabs-haskell", + "ref": "separate-hackages", + "repo": "haskell-nix-extra-hackage", + "type": "github" + } + }, + "haskell-nix-extra-hackage_18": { + "inputs": { + "haskell-nix": [ + "plutarch-safe-money", + "liqwid-plutarch-extra", + "plutarch-numeric", + "plutarch", + "haskell-nix" + ], + "nixpkgs": [ + "plutarch-safe-money", + "liqwid-plutarch-extra", + "plutarch-numeric", + "plutarch", + "nixpkgs" + ] + }, + "locked": { + "lastModified": 1655143375, + "narHash": "sha256-yU+HPLwGPf5IeLj9IBQ1zrPBTYEwvYbuMnADs4T8RLQ=", + "owner": "mlabs-haskell", + "repo": "haskell-nix-extra-hackage", + "rev": "03ee7afdc1ad982e059e3941db80f7a5b30a2757", + "type": "github" + }, + "original": { + "owner": "mlabs-haskell", + "ref": "separate-hackages", + "repo": "haskell-nix-extra-hackage", + "type": "github" + } + }, + "haskell-nix-extra-hackage_19": { + "inputs": { + "haskell-nix": [ + "plutarch-safe-money", + "liqwid-plutarch-extra", + "plutarch-quickcheck", + "plutarch", + "haskell-nix" + ], + "nixpkgs": [ + "plutarch-safe-money", + "liqwid-plutarch-extra", + "plutarch-quickcheck", "plutarch", "nixpkgs" ] @@ -4450,6 +6605,64 @@ "type": "github" } }, + "haskell-nix-extra-hackage_20": { + "inputs": { + "haskell-nix": [ + "plutarch-safe-money", + "plutarch", + "haskell-nix" + ], + "nixpkgs": [ + "plutarch-safe-money", + "plutarch", + "nixpkgs" + ] + }, + "locked": { + "lastModified": 1655143375, + "narHash": "sha256-yU+HPLwGPf5IeLj9IBQ1zrPBTYEwvYbuMnADs4T8RLQ=", + "owner": "mlabs-haskell", + "repo": "haskell-nix-extra-hackage", + "rev": "03ee7afdc1ad982e059e3941db80f7a5b30a2757", + "type": "github" + }, + "original": { + "owner": "mlabs-haskell", + "ref": "separate-hackages", + "repo": "haskell-nix-extra-hackage", + "type": "github" + } + }, + "haskell-nix-extra-hackage_21": { + "inputs": { + "haskell-nix": [ + "plutarch-safe-money", + "plutarch-numeric", + "plutarch", + "haskell-nix" + ], + "nixpkgs": [ + "plutarch-safe-money", + "plutarch-numeric", + "plutarch", + "nixpkgs" + ] + }, + "locked": { + "lastModified": 1655143375, + "narHash": "sha256-yU+HPLwGPf5IeLj9IBQ1zrPBTYEwvYbuMnADs4T8RLQ=", + "owner": "mlabs-haskell", + "repo": "haskell-nix-extra-hackage", + "rev": "03ee7afdc1ad982e059e3941db80f7a5b30a2757", + "type": "github" + }, + "original": { + "owner": "mlabs-haskell", + "ref": "separate-hackages", + "repo": "haskell-nix-extra-hackage", + "type": "github" + } + }, "haskell-nix-extra-hackage_3": { "inputs": { "haskell-nix": [ @@ -4513,10 +6726,14 @@ "haskell-nix-extra-hackage_5": { "inputs": { "haskell-nix": [ + "liqwid-script-export", + "liqwid-plutarch-extra", "plutarch", "haskell-nix" ], "nixpkgs": [ + "liqwid-script-export", + "liqwid-plutarch-extra", "plutarch", "nixpkgs" ] @@ -4539,11 +6756,15 @@ "haskell-nix-extra-hackage_6": { "inputs": { "haskell-nix": [ + "liqwid-script-export", + "liqwid-plutarch-extra", "plutarch-context-builder", "plutarch", "haskell-nix" ], "nixpkgs": [ + "liqwid-script-export", + "liqwid-plutarch-extra", "plutarch-context-builder", "plutarch", "nixpkgs" @@ -4567,11 +6788,15 @@ "haskell-nix-extra-hackage_7": { "inputs": { "haskell-nix": [ + "liqwid-script-export", + "liqwid-plutarch-extra", "plutarch-numeric", "plutarch", "haskell-nix" ], "nixpkgs": [ + "liqwid-script-export", + "liqwid-plutarch-extra", "plutarch-numeric", "plutarch", "nixpkgs" @@ -4595,11 +6820,15 @@ "haskell-nix-extra-hackage_8": { "inputs": { "haskell-nix": [ + "liqwid-script-export", + "liqwid-plutarch-extra", "plutarch-quickcheck", "plutarch", "haskell-nix" ], "nixpkgs": [ + "liqwid-script-export", + "liqwid-plutarch-extra", "plutarch-quickcheck", "plutarch", "nixpkgs" @@ -4623,14 +6852,12 @@ "haskell-nix-extra-hackage_9": { "inputs": { "haskell-nix": [ - "plutarch-safe-money", - "liqwid-plutarch-extra", + "liqwid-script-export", "plutarch", "haskell-nix" ], "nixpkgs": [ - "plutarch-safe-money", - "liqwid-plutarch-extra", + "liqwid-script-export", "plutarch", "nixpkgs" ] @@ -4680,6 +6907,8 @@ "hydra": "hydra_6", "nix-tools": "nix-tools_6", "nixpkgs": [ + "liqwid-script-export", + "liqwid-plutarch-extra", "plutarch-context-builder", "plutarch", "haskell-nix", @@ -4736,6 +6965,8 @@ "hydra": "hydra_7", "nix-tools": "nix-tools_7", "nixpkgs": [ + "liqwid-script-export", + "liqwid-plutarch-extra", "plutarch-numeric", "plutarch", "haskell-nix", @@ -4792,6 +7023,8 @@ "hydra": "hydra_8", "nix-tools": "nix-tools_8", "nixpkgs": [ + "liqwid-script-export", + "liqwid-plutarch-extra", "plutarch-quickcheck", "plutarch", "haskell-nix", @@ -4848,8 +7081,7 @@ "hydra": "hydra_9", "nix-tools": "nix-tools_9", "nixpkgs": [ - "plutarch-safe-money", - "liqwid-plutarch-extra", + "liqwid-script-export", "plutarch", "haskell-nix", "nixpkgs-unstable" @@ -4905,9 +7137,8 @@ "hydra": "hydra_10", "nix-tools": "nix-tools_10", "nixpkgs": [ - "plutarch-safe-money", - "liqwid-plutarch-extra", - "plutarch-context-builder", + "liqwid-script-export", + "plutarch-numeric", "plutarch", "haskell-nix", "nixpkgs-unstable" @@ -4979,26 +7210,25 @@ "hydra": "hydra_11", "nix-tools": "nix-tools_11", "nixpkgs": [ - "plutarch-safe-money", - "liqwid-plutarch-extra", - "plutarch-numeric", - "plutarch", + "liqwid-script-export", + "ply", "haskell-nix", "nixpkgs-unstable" ], "nixpkgs-2003": "nixpkgs-2003_11", "nixpkgs-2105": "nixpkgs-2105_11", - "nixpkgs-2111": "nixpkgs-2111_22", + "nixpkgs-2111": "nixpkgs-2111_21", + "nixpkgs-2205": "nixpkgs-2205_13", "nixpkgs-unstable": "nixpkgs-unstable_11", "old-ghc-nix": "old-ghc-nix_11", "stackage": "stackage_11" }, "locked": { - "lastModified": 1654068838, - "narHash": "sha256-GHSufC21DSg8Lz2AzIg3DA9DPxGvLqxGFa/4ADoXRhU=", + "lastModified": 1658869813, + "narHash": "sha256-AN5Ajzz/S+3Xc2TAtR6qz+AnXt8PWgA/lUbemkBwlD4=", "owner": "input-output-hk", "repo": "haskell.nix", - "rev": "fa2fa131fe15e630c91ab4078d12eb32c41f934b", + "rev": "e3397e0ace4aeadefe941241bd5b7bfefad850a9", "type": "github" }, "original": { @@ -5008,45 +7238,28 @@ } }, "haskell-nix_22": { - "flake": false, - "locked": { - "lastModified": 1651151636, - "narHash": "sha256-WdMP9IMB5kByT0zimDuCYZF/dinRB104H8iDTG/c1Eo=", - "owner": "input-output-hk", - "repo": "haskell.nix", - "rev": "f707aa2e75c0d33473166abc61c0b43ac6e107c0", - "type": "github" - }, - "original": { - "owner": "input-output-hk", - "repo": "haskell.nix", - "type": "github" - } - }, - "haskell-nix_23": { "inputs": { "HTTP": "HTTP_12", "cabal-32": "cabal-32_12", "cabal-34": "cabal-34_12", "cabal-36": "cabal-36_12", "cardano-shell": "cardano-shell_12", - "flake-utils": "flake-utils_12", + "flake-utils": "flake-utils_14", "ghc-8.6.5-iohk": "ghc-8.6.5-iohk_12", "hackage": "hackage_12", "hpc-coveralls": "hpc-coveralls_12", "hydra": "hydra_12", "nix-tools": "nix-tools_12", "nixpkgs": [ - "plutarch-safe-money", - "liqwid-plutarch-extra", - "plutarch-quickcheck", + "liqwid-script-export", + "ply", "plutarch", "haskell-nix", "nixpkgs-unstable" ], "nixpkgs-2003": "nixpkgs-2003_12", "nixpkgs-2105": "nixpkgs-2105_12", - "nixpkgs-2111": "nixpkgs-2111_24", + "nixpkgs-2111": "nixpkgs-2111_22", "nixpkgs-unstable": "nixpkgs-unstable_12", "old-ghc-nix": "old-ghc-nix_12", "stackage": "stackage_12" @@ -5065,7 +7278,7 @@ "type": "github" } }, - "haskell-nix_24": { + "haskell-nix_23": { "flake": false, "locked": { "lastModified": 1651151636, @@ -5081,28 +7294,27 @@ "type": "github" } }, - "haskell-nix_25": { + "haskell-nix_24": { "inputs": { "HTTP": "HTTP_13", "cabal-32": "cabal-32_13", "cabal-34": "cabal-34_13", "cabal-36": "cabal-36_13", "cardano-shell": "cardano-shell_13", - "flake-utils": "flake-utils_13", + "flake-utils": "flake-utils_16", "ghc-8.6.5-iohk": "ghc-8.6.5-iohk_13", "hackage": "hackage_13", "hpc-coveralls": "hpc-coveralls_13", "hydra": "hydra_13", "nix-tools": "nix-tools_13", "nixpkgs": [ - "plutarch-safe-money", "plutarch", "haskell-nix", "nixpkgs-unstable" ], "nixpkgs-2003": "nixpkgs-2003_13", "nixpkgs-2105": "nixpkgs-2105_13", - "nixpkgs-2111": "nixpkgs-2111_26", + "nixpkgs-2111": "nixpkgs-2111_24", "nixpkgs-unstable": "nixpkgs-unstable_13", "old-ghc-nix": "old-ghc-nix_13", "stackage": "stackage_13" @@ -5121,7 +7333,7 @@ "type": "github" } }, - "haskell-nix_26": { + "haskell-nix_25": { "flake": false, "locked": { "lastModified": 1651151636, @@ -5137,29 +7349,28 @@ "type": "github" } }, - "haskell-nix_27": { + "haskell-nix_26": { "inputs": { "HTTP": "HTTP_14", "cabal-32": "cabal-32_14", "cabal-34": "cabal-34_14", "cabal-36": "cabal-36_14", "cardano-shell": "cardano-shell_14", - "flake-utils": "flake-utils_14", + "flake-utils": "flake-utils_17", "ghc-8.6.5-iohk": "ghc-8.6.5-iohk_14", "hackage": "hackage_14", "hpc-coveralls": "hpc-coveralls_14", "hydra": "hydra_14", "nix-tools": "nix-tools_14", "nixpkgs": [ - "plutarch-safe-money", - "plutarch-numeric", + "plutarch-context-builder", "plutarch", "haskell-nix", "nixpkgs-unstable" ], "nixpkgs-2003": "nixpkgs-2003_14", "nixpkgs-2105": "nixpkgs-2105_14", - "nixpkgs-2111": "nixpkgs-2111_28", + "nixpkgs-2111": "nixpkgs-2111_26", "nixpkgs-unstable": "nixpkgs-unstable_14", "old-ghc-nix": "old-ghc-nix_14", "stackage": "stackage_14" @@ -5178,7 +7389,7 @@ "type": "github" } }, - "haskell-nix_28": { + "haskell-nix_27": { "flake": false, "locked": { "lastModified": 1651151636, @@ -5194,28 +7405,28 @@ "type": "github" } }, - "haskell-nix_29": { + "haskell-nix_28": { "inputs": { "HTTP": "HTTP_15", "cabal-32": "cabal-32_15", "cabal-34": "cabal-34_15", "cabal-36": "cabal-36_15", "cardano-shell": "cardano-shell_15", - "flake-utils": "flake-utils_15", + "flake-utils": "flake-utils_18", "ghc-8.6.5-iohk": "ghc-8.6.5-iohk_15", "hackage": "hackage_15", "hpc-coveralls": "hpc-coveralls_15", "hydra": "hydra_15", "nix-tools": "nix-tools_15", "nixpkgs": [ - "plutarch-script-export", + "plutarch-numeric", "plutarch", "haskell-nix", "nixpkgs-unstable" ], "nixpkgs-2003": "nixpkgs-2003_15", "nixpkgs-2105": "nixpkgs-2105_15", - "nixpkgs-2111": "nixpkgs-2111_30", + "nixpkgs-2111": "nixpkgs-2111_28", "nixpkgs-unstable": "nixpkgs-unstable_15", "old-ghc-nix": "old-ghc-nix_15", "stackage": "stackage_15" @@ -5234,6 +7445,22 @@ "type": "github" } }, + "haskell-nix_29": { + "flake": false, + "locked": { + "lastModified": 1651151636, + "narHash": "sha256-WdMP9IMB5kByT0zimDuCYZF/dinRB104H8iDTG/c1Eo=", + "owner": "input-output-hk", + "repo": "haskell.nix", + "rev": "f707aa2e75c0d33473166abc61c0b43ac6e107c0", + "type": "github" + }, + "original": { + "owner": "input-output-hk", + "repo": "haskell.nix", + "type": "github" + } + }, "haskell-nix_3": { "inputs": { "HTTP": "HTTP_2", @@ -5276,6 +7503,277 @@ } }, "haskell-nix_30": { + "inputs": { + "HTTP": "HTTP_16", + "cabal-32": "cabal-32_16", + "cabal-34": "cabal-34_16", + "cabal-36": "cabal-36_16", + "cardano-shell": "cardano-shell_16", + "flake-utils": "flake-utils_19", + "ghc-8.6.5-iohk": "ghc-8.6.5-iohk_16", + "hackage": "hackage_16", + "hpc-coveralls": "hpc-coveralls_16", + "hydra": "hydra_16", + "nix-tools": "nix-tools_16", + "nixpkgs": [ + "plutarch-quickcheck", + "plutarch", + "haskell-nix", + "nixpkgs-unstable" + ], + "nixpkgs-2003": "nixpkgs-2003_16", + "nixpkgs-2105": "nixpkgs-2105_16", + "nixpkgs-2111": "nixpkgs-2111_30", + "nixpkgs-unstable": "nixpkgs-unstable_16", + "old-ghc-nix": "old-ghc-nix_16", + "stackage": "stackage_16" + }, + "locked": { + "lastModified": 1654068838, + "narHash": "sha256-GHSufC21DSg8Lz2AzIg3DA9DPxGvLqxGFa/4ADoXRhU=", + "owner": "input-output-hk", + "repo": "haskell.nix", + "rev": "fa2fa131fe15e630c91ab4078d12eb32c41f934b", + "type": "github" + }, + "original": { + "owner": "input-output-hk", + "repo": "haskell.nix", + "type": "github" + } + }, + "haskell-nix_31": { + "flake": false, + "locked": { + "lastModified": 1651151636, + "narHash": "sha256-WdMP9IMB5kByT0zimDuCYZF/dinRB104H8iDTG/c1Eo=", + "owner": "input-output-hk", + "repo": "haskell.nix", + "rev": "f707aa2e75c0d33473166abc61c0b43ac6e107c0", + "type": "github" + }, + "original": { + "owner": "input-output-hk", + "repo": "haskell.nix", + "type": "github" + } + }, + "haskell-nix_32": { + "inputs": { + "HTTP": "HTTP_17", + "cabal-32": "cabal-32_17", + "cabal-34": "cabal-34_17", + "cabal-36": "cabal-36_17", + "cardano-shell": "cardano-shell_17", + "flake-utils": "flake-utils_20", + "ghc-8.6.5-iohk": "ghc-8.6.5-iohk_17", + "hackage": "hackage_17", + "hpc-coveralls": "hpc-coveralls_17", + "hydra": "hydra_17", + "nix-tools": "nix-tools_17", + "nixpkgs": [ + "plutarch-safe-money", + "liqwid-plutarch-extra", + "plutarch", + "haskell-nix", + "nixpkgs-unstable" + ], + "nixpkgs-2003": "nixpkgs-2003_17", + "nixpkgs-2105": "nixpkgs-2105_17", + "nixpkgs-2111": "nixpkgs-2111_32", + "nixpkgs-unstable": "nixpkgs-unstable_17", + "old-ghc-nix": "old-ghc-nix_17", + "stackage": "stackage_17" + }, + "locked": { + "lastModified": 1654068838, + "narHash": "sha256-GHSufC21DSg8Lz2AzIg3DA9DPxGvLqxGFa/4ADoXRhU=", + "owner": "input-output-hk", + "repo": "haskell.nix", + "rev": "fa2fa131fe15e630c91ab4078d12eb32c41f934b", + "type": "github" + }, + "original": { + "owner": "input-output-hk", + "repo": "haskell.nix", + "type": "github" + } + }, + "haskell-nix_33": { + "flake": false, + "locked": { + "lastModified": 1651151636, + "narHash": "sha256-WdMP9IMB5kByT0zimDuCYZF/dinRB104H8iDTG/c1Eo=", + "owner": "input-output-hk", + "repo": "haskell.nix", + "rev": "f707aa2e75c0d33473166abc61c0b43ac6e107c0", + "type": "github" + }, + "original": { + "owner": "input-output-hk", + "repo": "haskell.nix", + "type": "github" + } + }, + "haskell-nix_34": { + "inputs": { + "HTTP": "HTTP_18", + "cabal-32": "cabal-32_18", + "cabal-34": "cabal-34_18", + "cabal-36": "cabal-36_18", + "cardano-shell": "cardano-shell_18", + "flake-utils": "flake-utils_21", + "ghc-8.6.5-iohk": "ghc-8.6.5-iohk_18", + "hackage": "hackage_18", + "hpc-coveralls": "hpc-coveralls_18", + "hydra": "hydra_18", + "nix-tools": "nix-tools_18", + "nixpkgs": [ + "plutarch-safe-money", + "liqwid-plutarch-extra", + "plutarch-context-builder", + "plutarch", + "haskell-nix", + "nixpkgs-unstable" + ], + "nixpkgs-2003": "nixpkgs-2003_18", + "nixpkgs-2105": "nixpkgs-2105_18", + "nixpkgs-2111": "nixpkgs-2111_34", + "nixpkgs-unstable": "nixpkgs-unstable_18", + "old-ghc-nix": "old-ghc-nix_18", + "stackage": "stackage_18" + }, + "locked": { + "lastModified": 1654068838, + "narHash": "sha256-GHSufC21DSg8Lz2AzIg3DA9DPxGvLqxGFa/4ADoXRhU=", + "owner": "input-output-hk", + "repo": "haskell.nix", + "rev": "fa2fa131fe15e630c91ab4078d12eb32c41f934b", + "type": "github" + }, + "original": { + "owner": "input-output-hk", + "repo": "haskell.nix", + "type": "github" + } + }, + "haskell-nix_35": { + "flake": false, + "locked": { + "lastModified": 1651151636, + "narHash": "sha256-WdMP9IMB5kByT0zimDuCYZF/dinRB104H8iDTG/c1Eo=", + "owner": "input-output-hk", + "repo": "haskell.nix", + "rev": "f707aa2e75c0d33473166abc61c0b43ac6e107c0", + "type": "github" + }, + "original": { + "owner": "input-output-hk", + "repo": "haskell.nix", + "type": "github" + } + }, + "haskell-nix_36": { + "inputs": { + "HTTP": "HTTP_19", + "cabal-32": "cabal-32_19", + "cabal-34": "cabal-34_19", + "cabal-36": "cabal-36_19", + "cardano-shell": "cardano-shell_19", + "flake-utils": "flake-utils_22", + "ghc-8.6.5-iohk": "ghc-8.6.5-iohk_19", + "hackage": "hackage_19", + "hpc-coveralls": "hpc-coveralls_19", + "hydra": "hydra_19", + "nix-tools": "nix-tools_19", + "nixpkgs": [ + "plutarch-safe-money", + "liqwid-plutarch-extra", + "plutarch-numeric", + "plutarch", + "haskell-nix", + "nixpkgs-unstable" + ], + "nixpkgs-2003": "nixpkgs-2003_19", + "nixpkgs-2105": "nixpkgs-2105_19", + "nixpkgs-2111": "nixpkgs-2111_36", + "nixpkgs-unstable": "nixpkgs-unstable_19", + "old-ghc-nix": "old-ghc-nix_19", + "stackage": "stackage_19" + }, + "locked": { + "lastModified": 1654068838, + "narHash": "sha256-GHSufC21DSg8Lz2AzIg3DA9DPxGvLqxGFa/4ADoXRhU=", + "owner": "input-output-hk", + "repo": "haskell.nix", + "rev": "fa2fa131fe15e630c91ab4078d12eb32c41f934b", + "type": "github" + }, + "original": { + "owner": "input-output-hk", + "repo": "haskell.nix", + "type": "github" + } + }, + "haskell-nix_37": { + "flake": false, + "locked": { + "lastModified": 1651151636, + "narHash": "sha256-WdMP9IMB5kByT0zimDuCYZF/dinRB104H8iDTG/c1Eo=", + "owner": "input-output-hk", + "repo": "haskell.nix", + "rev": "f707aa2e75c0d33473166abc61c0b43ac6e107c0", + "type": "github" + }, + "original": { + "owner": "input-output-hk", + "repo": "haskell.nix", + "type": "github" + } + }, + "haskell-nix_38": { + "inputs": { + "HTTP": "HTTP_20", + "cabal-32": "cabal-32_20", + "cabal-34": "cabal-34_20", + "cabal-36": "cabal-36_20", + "cardano-shell": "cardano-shell_20", + "flake-utils": "flake-utils_23", + "ghc-8.6.5-iohk": "ghc-8.6.5-iohk_20", + "hackage": "hackage_20", + "hpc-coveralls": "hpc-coveralls_20", + "hydra": "hydra_20", + "nix-tools": "nix-tools_20", + "nixpkgs": [ + "plutarch-safe-money", + "liqwid-plutarch-extra", + "plutarch-quickcheck", + "plutarch", + "haskell-nix", + "nixpkgs-unstable" + ], + "nixpkgs-2003": "nixpkgs-2003_20", + "nixpkgs-2105": "nixpkgs-2105_20", + "nixpkgs-2111": "nixpkgs-2111_38", + "nixpkgs-unstable": "nixpkgs-unstable_20", + "old-ghc-nix": "old-ghc-nix_20", + "stackage": "stackage_20" + }, + "locked": { + "lastModified": 1654068838, + "narHash": "sha256-GHSufC21DSg8Lz2AzIg3DA9DPxGvLqxGFa/4ADoXRhU=", + "owner": "input-output-hk", + "repo": "haskell.nix", + "rev": "fa2fa131fe15e630c91ab4078d12eb32c41f934b", + "type": "github" + }, + "original": { + "owner": "input-output-hk", + "repo": "haskell.nix", + "type": "github" + } + }, + "haskell-nix_39": { "flake": false, "locked": { "lastModified": 1651151636, @@ -5307,6 +7805,119 @@ "type": "github" } }, + "haskell-nix_40": { + "inputs": { + "HTTP": "HTTP_21", + "cabal-32": "cabal-32_21", + "cabal-34": "cabal-34_21", + "cabal-36": "cabal-36_21", + "cardano-shell": "cardano-shell_21", + "flake-utils": "flake-utils_24", + "ghc-8.6.5-iohk": "ghc-8.6.5-iohk_21", + "hackage": "hackage_21", + "hpc-coveralls": "hpc-coveralls_21", + "hydra": "hydra_21", + "nix-tools": "nix-tools_21", + "nixpkgs": [ + "plutarch-safe-money", + "plutarch", + "haskell-nix", + "nixpkgs-unstable" + ], + "nixpkgs-2003": "nixpkgs-2003_21", + "nixpkgs-2105": "nixpkgs-2105_21", + "nixpkgs-2111": "nixpkgs-2111_40", + "nixpkgs-unstable": "nixpkgs-unstable_21", + "old-ghc-nix": "old-ghc-nix_21", + "stackage": "stackage_21" + }, + "locked": { + "lastModified": 1654068838, + "narHash": "sha256-GHSufC21DSg8Lz2AzIg3DA9DPxGvLqxGFa/4ADoXRhU=", + "owner": "input-output-hk", + "repo": "haskell.nix", + "rev": "fa2fa131fe15e630c91ab4078d12eb32c41f934b", + "type": "github" + }, + "original": { + "owner": "input-output-hk", + "repo": "haskell.nix", + "type": "github" + } + }, + "haskell-nix_41": { + "flake": false, + "locked": { + "lastModified": 1651151636, + "narHash": "sha256-WdMP9IMB5kByT0zimDuCYZF/dinRB104H8iDTG/c1Eo=", + "owner": "input-output-hk", + "repo": "haskell.nix", + "rev": "f707aa2e75c0d33473166abc61c0b43ac6e107c0", + "type": "github" + }, + "original": { + "owner": "input-output-hk", + "repo": "haskell.nix", + "type": "github" + } + }, + "haskell-nix_42": { + "inputs": { + "HTTP": "HTTP_22", + "cabal-32": "cabal-32_22", + "cabal-34": "cabal-34_22", + "cabal-36": "cabal-36_22", + "cardano-shell": "cardano-shell_22", + "flake-utils": "flake-utils_25", + "ghc-8.6.5-iohk": "ghc-8.6.5-iohk_22", + "hackage": "hackage_22", + "hpc-coveralls": "hpc-coveralls_22", + "hydra": "hydra_22", + "nix-tools": "nix-tools_22", + "nixpkgs": [ + "plutarch-safe-money", + "plutarch-numeric", + "plutarch", + "haskell-nix", + "nixpkgs-unstable" + ], + "nixpkgs-2003": "nixpkgs-2003_22", + "nixpkgs-2105": "nixpkgs-2105_22", + "nixpkgs-2111": "nixpkgs-2111_42", + "nixpkgs-unstable": "nixpkgs-unstable_22", + "old-ghc-nix": "old-ghc-nix_22", + "stackage": "stackage_22" + }, + "locked": { + "lastModified": 1654068838, + "narHash": "sha256-GHSufC21DSg8Lz2AzIg3DA9DPxGvLqxGFa/4ADoXRhU=", + "owner": "input-output-hk", + "repo": "haskell.nix", + "rev": "fa2fa131fe15e630c91ab4078d12eb32c41f934b", + "type": "github" + }, + "original": { + "owner": "input-output-hk", + "repo": "haskell.nix", + "type": "github" + } + }, + "haskell-nix_43": { + "flake": false, + "locked": { + "lastModified": 1651151636, + "narHash": "sha256-WdMP9IMB5kByT0zimDuCYZF/dinRB104H8iDTG/c1Eo=", + "owner": "input-output-hk", + "repo": "haskell.nix", + "rev": "f707aa2e75c0d33473166abc61c0b43ac6e107c0", + "type": "github" + }, + "original": { + "owner": "input-output-hk", + "repo": "haskell.nix", + "type": "github" + } + }, "haskell-nix_5": { "inputs": { "HTTP": "HTTP_3", @@ -5435,6 +8046,8 @@ "hydra": "hydra_5", "nix-tools": "nix-tools_5", "nixpkgs": [ + "liqwid-script-export", + "liqwid-plutarch-extra", "plutarch", "haskell-nix", "nixpkgs-unstable" @@ -5460,6 +8073,23 @@ "type": "github" } }, + "heist": { + "flake": false, + "locked": { + "lastModified": 1653169917, + "narHash": "sha256-i52wi4nNC6ATx8gTtmpLnxQZEhKSM0LbpmSu57d5VqI=", + "owner": "srid", + "repo": "heist", + "rev": "75533cade1a0d9859ff487cbf6f22e98711248d3", + "type": "github" + }, + "original": { + "owner": "srid", + "ref": "emanote", + "repo": "heist", + "type": "github" + } + }, "hercules-ci-effects": { "inputs": { "nixpkgs": "nixpkgs_4" @@ -5498,7 +8128,7 @@ }, "hercules-ci-effects_11": { "inputs": { - "nixpkgs": "nixpkgs_44" + "nixpkgs": "nixpkgs_46" }, "locked": { "lastModified": 1653841712, @@ -5516,7 +8146,7 @@ }, "hercules-ci-effects_12": { "inputs": { - "nixpkgs": "nixpkgs_48" + "nixpkgs": "nixpkgs_50" }, "locked": { "lastModified": 1653841712, @@ -5534,7 +8164,7 @@ }, "hercules-ci-effects_13": { "inputs": { - "nixpkgs": "nixpkgs_51" + "nixpkgs": "nixpkgs_54" }, "locked": { "lastModified": 1653841712, @@ -5552,7 +8182,7 @@ }, "hercules-ci-effects_14": { "inputs": { - "nixpkgs": "nixpkgs_55" + "nixpkgs": "nixpkgs_58" }, "locked": { "lastModified": 1653841712, @@ -5570,7 +8200,79 @@ }, "hercules-ci-effects_15": { "inputs": { - "nixpkgs": "nixpkgs_59" + "nixpkgs": "nixpkgs_62" + }, + "locked": { + "lastModified": 1653841712, + "narHash": "sha256-XBF4i1MuIRAEbFpj3Z3fVaYxzNEsYapyENtw3vG+q1I=", + "owner": "hercules-ci", + "repo": "hercules-ci-effects", + "rev": "e14d2131b7c81acca3904b584ac45fb72da64dd2", + "type": "github" + }, + "original": { + "owner": "hercules-ci", + "repo": "hercules-ci-effects", + "type": "github" + } + }, + "hercules-ci-effects_16": { + "inputs": { + "nixpkgs": "nixpkgs_67" + }, + "locked": { + "lastModified": 1653841712, + "narHash": "sha256-XBF4i1MuIRAEbFpj3Z3fVaYxzNEsYapyENtw3vG+q1I=", + "owner": "hercules-ci", + "repo": "hercules-ci-effects", + "rev": "e14d2131b7c81acca3904b584ac45fb72da64dd2", + "type": "github" + }, + "original": { + "owner": "hercules-ci", + "repo": "hercules-ci-effects", + "type": "github" + } + }, + "hercules-ci-effects_17": { + "inputs": { + "nixpkgs": "nixpkgs_71" + }, + "locked": { + "lastModified": 1653841712, + "narHash": "sha256-XBF4i1MuIRAEbFpj3Z3fVaYxzNEsYapyENtw3vG+q1I=", + "owner": "hercules-ci", + "repo": "hercules-ci-effects", + "rev": "e14d2131b7c81acca3904b584ac45fb72da64dd2", + "type": "github" + }, + "original": { + "owner": "hercules-ci", + "repo": "hercules-ci-effects", + "type": "github" + } + }, + "hercules-ci-effects_18": { + "inputs": { + "nixpkgs": "nixpkgs_75" + }, + "locked": { + "lastModified": 1653841712, + "narHash": "sha256-XBF4i1MuIRAEbFpj3Z3fVaYxzNEsYapyENtw3vG+q1I=", + "owner": "hercules-ci", + "repo": "hercules-ci-effects", + "rev": "e14d2131b7c81acca3904b584ac45fb72da64dd2", + "type": "github" + }, + "original": { + "owner": "hercules-ci", + "repo": "hercules-ci-effects", + "type": "github" + } + }, + "hercules-ci-effects_19": { + "inputs": { + "nixpkgs": "nixpkgs_79" }, "locked": { "lastModified": 1653841712, @@ -5604,6 +8306,42 @@ "type": "github" } }, + "hercules-ci-effects_20": { + "inputs": { + "nixpkgs": "nixpkgs_82" + }, + "locked": { + "lastModified": 1653841712, + "narHash": "sha256-XBF4i1MuIRAEbFpj3Z3fVaYxzNEsYapyENtw3vG+q1I=", + "owner": "hercules-ci", + "repo": "hercules-ci-effects", + "rev": "e14d2131b7c81acca3904b584ac45fb72da64dd2", + "type": "github" + }, + "original": { + "owner": "hercules-ci", + "repo": "hercules-ci-effects", + "type": "github" + } + }, + "hercules-ci-effects_21": { + "inputs": { + "nixpkgs": "nixpkgs_86" + }, + "locked": { + "lastModified": 1653841712, + "narHash": "sha256-XBF4i1MuIRAEbFpj3Z3fVaYxzNEsYapyENtw3vG+q1I=", + "owner": "hercules-ci", + "repo": "hercules-ci-effects", + "rev": "e14d2131b7c81acca3904b584ac45fb72da64dd2", + "type": "github" + }, + "original": { + "owner": "hercules-ci", + "repo": "hercules-ci-effects", + "type": "github" + } + }, "hercules-ci-effects_3": { "inputs": { "nixpkgs": "nixpkgs_12" @@ -5642,7 +8380,7 @@ }, "hercules-ci-effects_5": { "inputs": { - "nixpkgs": "nixpkgs_19" + "nixpkgs": "nixpkgs_21" }, "locked": { "lastModified": 1653841712, @@ -5660,7 +8398,7 @@ }, "hercules-ci-effects_6": { "inputs": { - "nixpkgs": "nixpkgs_23" + "nixpkgs": "nixpkgs_25" }, "locked": { "lastModified": 1653841712, @@ -5678,7 +8416,7 @@ }, "hercules-ci-effects_7": { "inputs": { - "nixpkgs": "nixpkgs_27" + "nixpkgs": "nixpkgs_29" }, "locked": { "lastModified": 1653841712, @@ -5696,7 +8434,7 @@ }, "hercules-ci-effects_8": { "inputs": { - "nixpkgs": "nixpkgs_31" + "nixpkgs": "nixpkgs_33" }, "locked": { "lastModified": 1653841712, @@ -5842,6 +8580,70 @@ "type": "github" } }, + "hpc-coveralls_16": { + "flake": false, + "locked": { + "lastModified": 1607498076, + "narHash": "sha256-8uqsEtivphgZWYeUo5RDUhp6bO9j2vaaProQxHBltQk=", + "owner": "sevanspowell", + "repo": "hpc-coveralls", + "rev": "14df0f7d229f4cd2e79f8eabb1a740097fdfa430", + "type": "github" + }, + "original": { + "owner": "sevanspowell", + "repo": "hpc-coveralls", + "type": "github" + } + }, + "hpc-coveralls_17": { + "flake": false, + "locked": { + "lastModified": 1607498076, + "narHash": "sha256-8uqsEtivphgZWYeUo5RDUhp6bO9j2vaaProQxHBltQk=", + "owner": "sevanspowell", + "repo": "hpc-coveralls", + "rev": "14df0f7d229f4cd2e79f8eabb1a740097fdfa430", + "type": "github" + }, + "original": { + "owner": "sevanspowell", + "repo": "hpc-coveralls", + "type": "github" + } + }, + "hpc-coveralls_18": { + "flake": false, + "locked": { + "lastModified": 1607498076, + "narHash": "sha256-8uqsEtivphgZWYeUo5RDUhp6bO9j2vaaProQxHBltQk=", + "owner": "sevanspowell", + "repo": "hpc-coveralls", + "rev": "14df0f7d229f4cd2e79f8eabb1a740097fdfa430", + "type": "github" + }, + "original": { + "owner": "sevanspowell", + "repo": "hpc-coveralls", + "type": "github" + } + }, + "hpc-coveralls_19": { + "flake": false, + "locked": { + "lastModified": 1607498076, + "narHash": "sha256-8uqsEtivphgZWYeUo5RDUhp6bO9j2vaaProQxHBltQk=", + "owner": "sevanspowell", + "repo": "hpc-coveralls", + "rev": "14df0f7d229f4cd2e79f8eabb1a740097fdfa430", + "type": "github" + }, + "original": { + "owner": "sevanspowell", + "repo": "hpc-coveralls", + "type": "github" + } + }, "hpc-coveralls_2": { "flake": false, "locked": { @@ -5858,6 +8660,54 @@ "type": "github" } }, + "hpc-coveralls_20": { + "flake": false, + "locked": { + "lastModified": 1607498076, + "narHash": "sha256-8uqsEtivphgZWYeUo5RDUhp6bO9j2vaaProQxHBltQk=", + "owner": "sevanspowell", + "repo": "hpc-coveralls", + "rev": "14df0f7d229f4cd2e79f8eabb1a740097fdfa430", + "type": "github" + }, + "original": { + "owner": "sevanspowell", + "repo": "hpc-coveralls", + "type": "github" + } + }, + "hpc-coveralls_21": { + "flake": false, + "locked": { + "lastModified": 1607498076, + "narHash": "sha256-8uqsEtivphgZWYeUo5RDUhp6bO9j2vaaProQxHBltQk=", + "owner": "sevanspowell", + "repo": "hpc-coveralls", + "rev": "14df0f7d229f4cd2e79f8eabb1a740097fdfa430", + "type": "github" + }, + "original": { + "owner": "sevanspowell", + "repo": "hpc-coveralls", + "type": "github" + } + }, + "hpc-coveralls_22": { + "flake": false, + "locked": { + "lastModified": 1607498076, + "narHash": "sha256-8uqsEtivphgZWYeUo5RDUhp6bO9j2vaaProQxHBltQk=", + "owner": "sevanspowell", + "repo": "hpc-coveralls", + "rev": "14df0f7d229f4cd2e79f8eabb1a740097fdfa430", + "type": "github" + }, + "original": { + "owner": "sevanspowell", + "repo": "hpc-coveralls", + "type": "github" + } + }, "hpc-coveralls_3": { "flake": false, "locked": { @@ -5999,9 +8849,8 @@ "inputs": { "nix": "nix_10", "nixpkgs": [ - "plutarch-safe-money", - "liqwid-plutarch-extra", - "plutarch-context-builder", + "liqwid-script-export", + "plutarch-numeric", "plutarch", "haskell-nix", "hydra", @@ -6026,10 +8875,8 @@ "inputs": { "nix": "nix_11", "nixpkgs": [ - "plutarch-safe-money", - "liqwid-plutarch-extra", - "plutarch-numeric", - "plutarch", + "liqwid-script-export", + "ply", "haskell-nix", "hydra", "nix", @@ -6053,9 +8900,8 @@ "inputs": { "nix": "nix_12", "nixpkgs": [ - "plutarch-safe-money", - "liqwid-plutarch-extra", - "plutarch-quickcheck", + "liqwid-script-export", + "ply", "plutarch", "haskell-nix", "hydra", @@ -6080,7 +8926,6 @@ "inputs": { "nix": "nix_13", "nixpkgs": [ - "plutarch-safe-money", "plutarch", "haskell-nix", "hydra", @@ -6105,8 +8950,7 @@ "inputs": { "nix": "nix_14", "nixpkgs": [ - "plutarch-safe-money", - "plutarch-numeric", + "plutarch-context-builder", "plutarch", "haskell-nix", "hydra", @@ -6131,7 +8975,112 @@ "inputs": { "nix": "nix_15", "nixpkgs": [ - "plutarch-script-export", + "plutarch-numeric", + "plutarch", + "haskell-nix", + "hydra", + "nix", + "nixpkgs" + ] + }, + "locked": { + "lastModified": 1646878427, + "narHash": "sha256-KtbrofMtN8GlM7D+n90kixr7QpSlVmdN+vK5CA/aRzc=", + "owner": "NixOS", + "repo": "hydra", + "rev": "28b682b85b7efc5cf7974065792a1f22203a5927", + "type": "github" + }, + "original": { + "id": "hydra", + "type": "indirect" + } + }, + "hydra_16": { + "inputs": { + "nix": "nix_16", + "nixpkgs": [ + "plutarch-quickcheck", + "plutarch", + "haskell-nix", + "hydra", + "nix", + "nixpkgs" + ] + }, + "locked": { + "lastModified": 1646878427, + "narHash": "sha256-KtbrofMtN8GlM7D+n90kixr7QpSlVmdN+vK5CA/aRzc=", + "owner": "NixOS", + "repo": "hydra", + "rev": "28b682b85b7efc5cf7974065792a1f22203a5927", + "type": "github" + }, + "original": { + "id": "hydra", + "type": "indirect" + } + }, + "hydra_17": { + "inputs": { + "nix": "nix_17", + "nixpkgs": [ + "plutarch-safe-money", + "liqwid-plutarch-extra", + "plutarch", + "haskell-nix", + "hydra", + "nix", + "nixpkgs" + ] + }, + "locked": { + "lastModified": 1646878427, + "narHash": "sha256-KtbrofMtN8GlM7D+n90kixr7QpSlVmdN+vK5CA/aRzc=", + "owner": "NixOS", + "repo": "hydra", + "rev": "28b682b85b7efc5cf7974065792a1f22203a5927", + "type": "github" + }, + "original": { + "id": "hydra", + "type": "indirect" + } + }, + "hydra_18": { + "inputs": { + "nix": "nix_18", + "nixpkgs": [ + "plutarch-safe-money", + "liqwid-plutarch-extra", + "plutarch-context-builder", + "plutarch", + "haskell-nix", + "hydra", + "nix", + "nixpkgs" + ] + }, + "locked": { + "lastModified": 1646878427, + "narHash": "sha256-KtbrofMtN8GlM7D+n90kixr7QpSlVmdN+vK5CA/aRzc=", + "owner": "NixOS", + "repo": "hydra", + "rev": "28b682b85b7efc5cf7974065792a1f22203a5927", + "type": "github" + }, + "original": { + "id": "hydra", + "type": "indirect" + } + }, + "hydra_19": { + "inputs": { + "nix": "nix_19", + "nixpkgs": [ + "plutarch-safe-money", + "liqwid-plutarch-extra", + "plutarch-numeric", "plutarch", "haskell-nix", "hydra", @@ -6178,6 +9127,84 @@ "type": "indirect" } }, + "hydra_20": { + "inputs": { + "nix": "nix_20", + "nixpkgs": [ + "plutarch-safe-money", + "liqwid-plutarch-extra", + "plutarch-quickcheck", + "plutarch", + "haskell-nix", + "hydra", + "nix", + "nixpkgs" + ] + }, + "locked": { + "lastModified": 1646878427, + "narHash": "sha256-KtbrofMtN8GlM7D+n90kixr7QpSlVmdN+vK5CA/aRzc=", + "owner": "NixOS", + "repo": "hydra", + "rev": "28b682b85b7efc5cf7974065792a1f22203a5927", + "type": "github" + }, + "original": { + "id": "hydra", + "type": "indirect" + } + }, + "hydra_21": { + "inputs": { + "nix": "nix_21", + "nixpkgs": [ + "plutarch-safe-money", + "plutarch", + "haskell-nix", + "hydra", + "nix", + "nixpkgs" + ] + }, + "locked": { + "lastModified": 1646878427, + "narHash": "sha256-KtbrofMtN8GlM7D+n90kixr7QpSlVmdN+vK5CA/aRzc=", + "owner": "NixOS", + "repo": "hydra", + "rev": "28b682b85b7efc5cf7974065792a1f22203a5927", + "type": "github" + }, + "original": { + "id": "hydra", + "type": "indirect" + } + }, + "hydra_22": { + "inputs": { + "nix": "nix_22", + "nixpkgs": [ + "plutarch-safe-money", + "plutarch-numeric", + "plutarch", + "haskell-nix", + "hydra", + "nix", + "nixpkgs" + ] + }, + "locked": { + "lastModified": 1646878427, + "narHash": "sha256-KtbrofMtN8GlM7D+n90kixr7QpSlVmdN+vK5CA/aRzc=", + "owner": "NixOS", + "repo": "hydra", + "rev": "28b682b85b7efc5cf7974065792a1f22203a5927", + "type": "github" + }, + "original": { + "id": "hydra", + "type": "indirect" + } + }, "hydra_3": { "inputs": { "nix": "nix_3", @@ -6234,6 +9261,8 @@ "inputs": { "nix": "nix_5", "nixpkgs": [ + "liqwid-script-export", + "liqwid-plutarch-extra", "plutarch", "haskell-nix", "hydra", @@ -6258,6 +9287,8 @@ "inputs": { "nix": "nix_6", "nixpkgs": [ + "liqwid-script-export", + "liqwid-plutarch-extra", "plutarch-context-builder", "plutarch", "haskell-nix", @@ -6283,6 +9314,8 @@ "inputs": { "nix": "nix_7", "nixpkgs": [ + "liqwid-script-export", + "liqwid-plutarch-extra", "plutarch-numeric", "plutarch", "haskell-nix", @@ -6308,6 +9341,8 @@ "inputs": { "nix": "nix_8", "nixpkgs": [ + "liqwid-script-export", + "liqwid-plutarch-extra", "plutarch-quickcheck", "plutarch", "haskell-nix", @@ -6333,8 +9368,7 @@ "inputs": { "nix": "nix_9", "nixpkgs": [ - "plutarch-safe-money", - "liqwid-plutarch-extra", + "liqwid-script-export", "plutarch", "haskell-nix", "hydra", @@ -6566,11 +9600,11 @@ "iohk-nix_21": { "flake": false, "locked": { - "lastModified": 1653579289, - "narHash": "sha256-wveDdPsgB/3nAGAdFaxrcgLEpdi0aJ5kEVNtI+YqVfo=", + "lastModified": 1658222743, + "narHash": "sha256-yFH01psqx30y5Ws4dBElLkxYpIxxqZx4G+jCVhsXpnA=", "owner": "input-output-hk", "repo": "iohk-nix", - "rev": "edb2d2df2ebe42bbdf03a0711115cf6213c9d366", + "rev": "9a604d01bd4420ab7f396f14d1947fbe2ce7db8b", "type": "github" }, "original": { @@ -6582,11 +9616,11 @@ "iohk-nix_22": { "flake": false, "locked": { - "lastModified": 1626953580, - "narHash": "sha256-iEI9aTOaZMGsjWzcrctrC0usmiagwKT2v1LSDe9/tMU=", + "lastModified": 1653579289, + "narHash": "sha256-wveDdPsgB/3nAGAdFaxrcgLEpdi0aJ5kEVNtI+YqVfo=", "owner": "input-output-hk", "repo": "iohk-nix", - "rev": "cbd497f5844249ef8fe617166337d59f2a6ebe90", + "rev": "edb2d2df2ebe42bbdf03a0711115cf6213c9d366", "type": "github" }, "original": { @@ -6598,11 +9632,11 @@ "iohk-nix_23": { "flake": false, "locked": { - "lastModified": 1653579289, - "narHash": "sha256-wveDdPsgB/3nAGAdFaxrcgLEpdi0aJ5kEVNtI+YqVfo=", + "lastModified": 1626953580, + "narHash": "sha256-iEI9aTOaZMGsjWzcrctrC0usmiagwKT2v1LSDe9/tMU=", "owner": "input-output-hk", "repo": "iohk-nix", - "rev": "edb2d2df2ebe42bbdf03a0711115cf6213c9d366", + "rev": "cbd497f5844249ef8fe617166337d59f2a6ebe90", "type": "github" }, "original": { @@ -6614,11 +9648,11 @@ "iohk-nix_24": { "flake": false, "locked": { - "lastModified": 1626953580, - "narHash": "sha256-iEI9aTOaZMGsjWzcrctrC0usmiagwKT2v1LSDe9/tMU=", + "lastModified": 1653579289, + "narHash": "sha256-wveDdPsgB/3nAGAdFaxrcgLEpdi0aJ5kEVNtI+YqVfo=", "owner": "input-output-hk", "repo": "iohk-nix", - "rev": "cbd497f5844249ef8fe617166337d59f2a6ebe90", + "rev": "edb2d2df2ebe42bbdf03a0711115cf6213c9d366", "type": "github" }, "original": { @@ -6630,11 +9664,11 @@ "iohk-nix_25": { "flake": false, "locked": { - "lastModified": 1653579289, - "narHash": "sha256-wveDdPsgB/3nAGAdFaxrcgLEpdi0aJ5kEVNtI+YqVfo=", + "lastModified": 1626953580, + "narHash": "sha256-iEI9aTOaZMGsjWzcrctrC0usmiagwKT2v1LSDe9/tMU=", "owner": "input-output-hk", "repo": "iohk-nix", - "rev": "edb2d2df2ebe42bbdf03a0711115cf6213c9d366", + "rev": "cbd497f5844249ef8fe617166337d59f2a6ebe90", "type": "github" }, "original": { @@ -6646,11 +9680,11 @@ "iohk-nix_26": { "flake": false, "locked": { - "lastModified": 1626953580, - "narHash": "sha256-iEI9aTOaZMGsjWzcrctrC0usmiagwKT2v1LSDe9/tMU=", + "lastModified": 1653579289, + "narHash": "sha256-wveDdPsgB/3nAGAdFaxrcgLEpdi0aJ5kEVNtI+YqVfo=", "owner": "input-output-hk", "repo": "iohk-nix", - "rev": "cbd497f5844249ef8fe617166337d59f2a6ebe90", + "rev": "edb2d2df2ebe42bbdf03a0711115cf6213c9d366", "type": "github" }, "original": { @@ -6660,22 +9694,6 @@ } }, "iohk-nix_27": { - "flake": false, - "locked": { - "lastModified": 1653579289, - "narHash": "sha256-wveDdPsgB/3nAGAdFaxrcgLEpdi0aJ5kEVNtI+YqVfo=", - "owner": "input-output-hk", - "repo": "iohk-nix", - "rev": "edb2d2df2ebe42bbdf03a0711115cf6213c9d366", - "type": "github" - }, - "original": { - "owner": "input-output-hk", - "repo": "iohk-nix", - "type": "github" - } - }, - "iohk-nix_28": { "flake": false, "locked": { "lastModified": 1626953580, @@ -6691,7 +9709,7 @@ "type": "github" } }, - "iohk-nix_29": { + "iohk-nix_28": { "flake": false, "locked": { "lastModified": 1653579289, @@ -6707,6 +9725,22 @@ "type": "github" } }, + "iohk-nix_29": { + "flake": false, + "locked": { + "lastModified": 1626953580, + "narHash": "sha256-iEI9aTOaZMGsjWzcrctrC0usmiagwKT2v1LSDe9/tMU=", + "owner": "input-output-hk", + "repo": "iohk-nix", + "rev": "cbd497f5844249ef8fe617166337d59f2a6ebe90", + "type": "github" + }, + "original": { + "owner": "input-output-hk", + "repo": "iohk-nix", + "type": "github" + } + }, "iohk-nix_3": { "flake": false, "locked": { @@ -6724,6 +9758,150 @@ } }, "iohk-nix_30": { + "flake": false, + "locked": { + "lastModified": 1653579289, + "narHash": "sha256-wveDdPsgB/3nAGAdFaxrcgLEpdi0aJ5kEVNtI+YqVfo=", + "owner": "input-output-hk", + "repo": "iohk-nix", + "rev": "edb2d2df2ebe42bbdf03a0711115cf6213c9d366", + "type": "github" + }, + "original": { + "owner": "input-output-hk", + "repo": "iohk-nix", + "type": "github" + } + }, + "iohk-nix_31": { + "flake": false, + "locked": { + "lastModified": 1626953580, + "narHash": "sha256-iEI9aTOaZMGsjWzcrctrC0usmiagwKT2v1LSDe9/tMU=", + "owner": "input-output-hk", + "repo": "iohk-nix", + "rev": "cbd497f5844249ef8fe617166337d59f2a6ebe90", + "type": "github" + }, + "original": { + "owner": "input-output-hk", + "repo": "iohk-nix", + "type": "github" + } + }, + "iohk-nix_32": { + "flake": false, + "locked": { + "lastModified": 1653579289, + "narHash": "sha256-wveDdPsgB/3nAGAdFaxrcgLEpdi0aJ5kEVNtI+YqVfo=", + "owner": "input-output-hk", + "repo": "iohk-nix", + "rev": "edb2d2df2ebe42bbdf03a0711115cf6213c9d366", + "type": "github" + }, + "original": { + "owner": "input-output-hk", + "repo": "iohk-nix", + "type": "github" + } + }, + "iohk-nix_33": { + "flake": false, + "locked": { + "lastModified": 1626953580, + "narHash": "sha256-iEI9aTOaZMGsjWzcrctrC0usmiagwKT2v1LSDe9/tMU=", + "owner": "input-output-hk", + "repo": "iohk-nix", + "rev": "cbd497f5844249ef8fe617166337d59f2a6ebe90", + "type": "github" + }, + "original": { + "owner": "input-output-hk", + "repo": "iohk-nix", + "type": "github" + } + }, + "iohk-nix_34": { + "flake": false, + "locked": { + "lastModified": 1653579289, + "narHash": "sha256-wveDdPsgB/3nAGAdFaxrcgLEpdi0aJ5kEVNtI+YqVfo=", + "owner": "input-output-hk", + "repo": "iohk-nix", + "rev": "edb2d2df2ebe42bbdf03a0711115cf6213c9d366", + "type": "github" + }, + "original": { + "owner": "input-output-hk", + "repo": "iohk-nix", + "type": "github" + } + }, + "iohk-nix_35": { + "flake": false, + "locked": { + "lastModified": 1626953580, + "narHash": "sha256-iEI9aTOaZMGsjWzcrctrC0usmiagwKT2v1LSDe9/tMU=", + "owner": "input-output-hk", + "repo": "iohk-nix", + "rev": "cbd497f5844249ef8fe617166337d59f2a6ebe90", + "type": "github" + }, + "original": { + "owner": "input-output-hk", + "repo": "iohk-nix", + "type": "github" + } + }, + "iohk-nix_36": { + "flake": false, + "locked": { + "lastModified": 1653579289, + "narHash": "sha256-wveDdPsgB/3nAGAdFaxrcgLEpdi0aJ5kEVNtI+YqVfo=", + "owner": "input-output-hk", + "repo": "iohk-nix", + "rev": "edb2d2df2ebe42bbdf03a0711115cf6213c9d366", + "type": "github" + }, + "original": { + "owner": "input-output-hk", + "repo": "iohk-nix", + "type": "github" + } + }, + "iohk-nix_37": { + "flake": false, + "locked": { + "lastModified": 1626953580, + "narHash": "sha256-iEI9aTOaZMGsjWzcrctrC0usmiagwKT2v1LSDe9/tMU=", + "owner": "input-output-hk", + "repo": "iohk-nix", + "rev": "cbd497f5844249ef8fe617166337d59f2a6ebe90", + "type": "github" + }, + "original": { + "owner": "input-output-hk", + "repo": "iohk-nix", + "type": "github" + } + }, + "iohk-nix_38": { + "flake": false, + "locked": { + "lastModified": 1653579289, + "narHash": "sha256-wveDdPsgB/3nAGAdFaxrcgLEpdi0aJ5kEVNtI+YqVfo=", + "owner": "input-output-hk", + "repo": "iohk-nix", + "rev": "edb2d2df2ebe42bbdf03a0711115cf6213c9d366", + "type": "github" + }, + "original": { + "owner": "input-output-hk", + "repo": "iohk-nix", + "type": "github" + } + }, + "iohk-nix_39": { "flake": false, "locked": { "lastModified": 1626953580, @@ -6755,6 +9933,70 @@ "type": "github" } }, + "iohk-nix_40": { + "flake": false, + "locked": { + "lastModified": 1653579289, + "narHash": "sha256-wveDdPsgB/3nAGAdFaxrcgLEpdi0aJ5kEVNtI+YqVfo=", + "owner": "input-output-hk", + "repo": "iohk-nix", + "rev": "edb2d2df2ebe42bbdf03a0711115cf6213c9d366", + "type": "github" + }, + "original": { + "owner": "input-output-hk", + "repo": "iohk-nix", + "type": "github" + } + }, + "iohk-nix_41": { + "flake": false, + "locked": { + "lastModified": 1626953580, + "narHash": "sha256-iEI9aTOaZMGsjWzcrctrC0usmiagwKT2v1LSDe9/tMU=", + "owner": "input-output-hk", + "repo": "iohk-nix", + "rev": "cbd497f5844249ef8fe617166337d59f2a6ebe90", + "type": "github" + }, + "original": { + "owner": "input-output-hk", + "repo": "iohk-nix", + "type": "github" + } + }, + "iohk-nix_42": { + "flake": false, + "locked": { + "lastModified": 1653579289, + "narHash": "sha256-wveDdPsgB/3nAGAdFaxrcgLEpdi0aJ5kEVNtI+YqVfo=", + "owner": "input-output-hk", + "repo": "iohk-nix", + "rev": "edb2d2df2ebe42bbdf03a0711115cf6213c9d366", + "type": "github" + }, + "original": { + "owner": "input-output-hk", + "repo": "iohk-nix", + "type": "github" + } + }, + "iohk-nix_43": { + "flake": false, + "locked": { + "lastModified": 1626953580, + "narHash": "sha256-iEI9aTOaZMGsjWzcrctrC0usmiagwKT2v1LSDe9/tMU=", + "owner": "input-output-hk", + "repo": "iohk-nix", + "rev": "cbd497f5844249ef8fe617166337d59f2a6ebe90", + "type": "github" + }, + "original": { + "owner": "input-output-hk", + "repo": "iohk-nix", + "type": "github" + } + }, "iohk-nix_5": { "flake": false, "locked": { @@ -6835,6 +10077,22 @@ "type": "github" } }, + "ixset-typed": { + "flake": false, + "locked": { + "lastModified": 1652177108, + "narHash": "sha256-g0N1jiumsxHzfo9SGVR+q9awRvHEehSRaoW89LXCCnY=", + "owner": "well-typed", + "repo": "ixset-typed", + "rev": "244d3b72fd051b8d78f2d4edb6208269f29d85b7", + "type": "github" + }, + "original": { + "owner": "well-typed", + "repo": "ixset-typed", + "type": "github" + } + }, "liqwid-nix": { "inputs": { "nixpkgs": "nixpkgs", @@ -6857,8 +10115,8 @@ }, "liqwid-nix_10": { "inputs": { - "nixpkgs": "nixpkgs_34", - "nixpkgs-2205": "nixpkgs-2205_9" + "nixpkgs": "nixpkgs_31", + "nixpkgs-2205": "nixpkgs-2205_11" }, "locked": { "lastModified": 1660580223, @@ -6876,8 +10134,26 @@ }, "liqwid-nix_11": { "inputs": { - "nixpkgs": "nixpkgs_38", - "nixpkgs-2205": "nixpkgs-2205_11" + "nixpkgs": "nixpkgs_38" + }, + "locked": { + "lastModified": 1659383708, + "narHash": "sha256-eenTO5t4ocK7VzorMUdUyKUoup976cCu5dJcVjebY8E=", + "owner": "Liqwid-Labs", + "repo": "liqwid-nix", + "rev": "c261df76dc31b3dc5dfde7030420e0a6be73f615", + "type": "github" + }, + "original": { + "owner": "Liqwid-Labs", + "repo": "liqwid-nix", + "type": "github" + } + }, + "liqwid-nix_12": { + "inputs": { + "nixpkgs": "nixpkgs_52", + "nixpkgs-2205": "nixpkgs-2205_14" }, "locked": { "lastModified": 1660148797, @@ -6894,9 +10170,9 @@ "type": "github" } }, - "liqwid-nix_12": { + "liqwid-nix_13": { "inputs": { - "nixpkgs": "nixpkgs_42" + "nixpkgs": "nixpkgs_56" }, "locked": { "lastModified": 1659383708, @@ -6912,28 +10188,9 @@ "type": "github" } }, - "liqwid-nix_13": { - "inputs": { - "nixpkgs": "nixpkgs_46", - "nixpkgs-2205": "nixpkgs-2205_12" - }, - "locked": { - "lastModified": 1660580223, - "narHash": "sha256-r1i92rrUjSBdnQZpHLxeCAtVGMHYqKQHm05mzddIte8=", - "owner": "Liqwid-Labs", - "repo": "liqwid-nix", - "rev": "fa1eeba35b37ac2551a00798dffdf053879699c3", - "type": "github" - }, - "original": { - "owner": "Liqwid-Labs", - "repo": "liqwid-nix", - "type": "github" - } - }, "liqwid-nix_14": { "inputs": { - "nixpkgs": "nixpkgs_53" + "nixpkgs": "nixpkgs_60" }, "locked": { "lastModified": 1659383708, @@ -6951,8 +10208,84 @@ }, "liqwid-nix_15": { "inputs": { - "nixpkgs": "nixpkgs_57", - "nixpkgs-2205": "nixpkgs-2205_14" + "nixpkgs": "nixpkgs_64", + "nixpkgs-2205": "nixpkgs-2205_15" + }, + "locked": { + "lastModified": 1660580223, + "narHash": "sha256-r1i92rrUjSBdnQZpHLxeCAtVGMHYqKQHm05mzddIte8=", + "owner": "Liqwid-Labs", + "repo": "liqwid-nix", + "rev": "fa1eeba35b37ac2551a00798dffdf053879699c3", + "type": "github" + }, + "original": { + "owner": "Liqwid-Labs", + "repo": "liqwid-nix", + "type": "github" + } + }, + "liqwid-nix_16": { + "inputs": { + "nixpkgs": "nixpkgs_65", + "nixpkgs-2205": "nixpkgs-2205_16" + }, + "locked": { + "lastModified": 1660580223, + "narHash": "sha256-r1i92rrUjSBdnQZpHLxeCAtVGMHYqKQHm05mzddIte8=", + "owner": "Liqwid-Labs", + "repo": "liqwid-nix", + "rev": "fa1eeba35b37ac2551a00798dffdf053879699c3", + "type": "github" + }, + "original": { + "owner": "Liqwid-Labs", + "repo": "liqwid-nix", + "type": "github" + } + }, + "liqwid-nix_17": { + "inputs": { + "nixpkgs": "nixpkgs_69", + "nixpkgs-2205": "nixpkgs-2205_18" + }, + "locked": { + "lastModified": 1660148797, + "narHash": "sha256-uSwB6jmiP0giQM9NwCkXloabfRnbDSsd1EAKXbTQpq4=", + "owner": "Liqwid-Labs", + "repo": "liqwid-nix", + "rev": "a4a33254c70181a6c2861ccd0155065a9cde2863", + "type": "github" + }, + "original": { + "owner": "Liqwid-Labs", + "ref": "emiflake/consistent-nixpkgs", + "repo": "liqwid-nix", + "type": "github" + } + }, + "liqwid-nix_18": { + "inputs": { + "nixpkgs": "nixpkgs_73" + }, + "locked": { + "lastModified": 1659383708, + "narHash": "sha256-eenTO5t4ocK7VzorMUdUyKUoup976cCu5dJcVjebY8E=", + "owner": "Liqwid-Labs", + "repo": "liqwid-nix", + "rev": "c261df76dc31b3dc5dfde7030420e0a6be73f615", + "type": "github" + }, + "original": { + "owner": "Liqwid-Labs", + "repo": "liqwid-nix", + "type": "github" + } + }, + "liqwid-nix_19": { + "inputs": { + "nixpkgs": "nixpkgs_77", + "nixpkgs-2205": "nixpkgs-2205_19" }, "locked": { "lastModified": 1660580223, @@ -6987,6 +10320,24 @@ "type": "github" } }, + "liqwid-nix_20": { + "inputs": { + "nixpkgs": "nixpkgs_84" + }, + "locked": { + "lastModified": 1659383708, + "narHash": "sha256-eenTO5t4ocK7VzorMUdUyKUoup976cCu5dJcVjebY8E=", + "owner": "Liqwid-Labs", + "repo": "liqwid-nix", + "rev": "c261df76dc31b3dc5dfde7030420e0a6be73f615", + "type": "github" + }, + "original": { + "owner": "Liqwid-Labs", + "repo": "liqwid-nix", + "type": "github" + } + }, "liqwid-nix_3": { "inputs": { "nixpkgs": "nixpkgs_6", @@ -7046,9 +10397,47 @@ }, "liqwid-nix_6": { "inputs": { - "nixpkgs": "nixpkgs_21", + "nixpkgs": "nixpkgs_18", "nixpkgs-2205": "nixpkgs-2205_7" }, + "locked": { + "lastModified": 1665587728, + "narHash": "sha256-Cz2594dfFxEGB3gCuXlQPGYtiQA7QTviBaUktoYrq9I=", + "owner": "Liqwid-Labs", + "repo": "liqwid-nix", + "rev": "c17fef5826ae9e329818018a09302c69fee9a83c", + "type": "github" + }, + "original": { + "owner": "Liqwid-Labs", + "repo": "liqwid-nix", + "type": "github" + } + }, + "liqwid-nix_7": { + "inputs": { + "nixpkgs": "nixpkgs_19", + "nixpkgs-2205": "nixpkgs-2205_8" + }, + "locked": { + "lastModified": 1660580223, + "narHash": "sha256-r1i92rrUjSBdnQZpHLxeCAtVGMHYqKQHm05mzddIte8=", + "owner": "Liqwid-Labs", + "repo": "liqwid-nix", + "rev": "fa1eeba35b37ac2551a00798dffdf053879699c3", + "type": "github" + }, + "original": { + "owner": "Liqwid-Labs", + "repo": "liqwid-nix", + "type": "github" + } + }, + "liqwid-nix_8": { + "inputs": { + "nixpkgs": "nixpkgs_23", + "nixpkgs-2205": "nixpkgs-2205_10" + }, "locked": { "lastModified": 1660148797, "narHash": "sha256-uSwB6jmiP0giQM9NwCkXloabfRnbDSsd1EAKXbTQpq4=", @@ -7064,53 +10453,16 @@ "type": "github" } }, - "liqwid-nix_7": { - "inputs": { - "nixpkgs": "nixpkgs_25" - }, - "locked": { - "lastModified": 1659383708, - "narHash": "sha256-eenTO5t4ocK7VzorMUdUyKUoup976cCu5dJcVjebY8E=", - "owner": "Liqwid-Labs", - "repo": "liqwid-nix", - "rev": "c261df76dc31b3dc5dfde7030420e0a6be73f615", - "type": "github" - }, - "original": { - "owner": "Liqwid-Labs", - "repo": "liqwid-nix", - "type": "github" - } - }, - "liqwid-nix_8": { - "inputs": { - "nixpkgs": "nixpkgs_29" - }, - "locked": { - "lastModified": 1659383708, - "narHash": "sha256-eenTO5t4ocK7VzorMUdUyKUoup976cCu5dJcVjebY8E=", - "owner": "Liqwid-Labs", - "repo": "liqwid-nix", - "rev": "c261df76dc31b3dc5dfde7030420e0a6be73f615", - "type": "github" - }, - "original": { - "owner": "Liqwid-Labs", - "repo": "liqwid-nix", - "type": "github" - } - }, "liqwid-nix_9": { "inputs": { - "nixpkgs": "nixpkgs_33", - "nixpkgs-2205": "nixpkgs-2205_8" + "nixpkgs": "nixpkgs_27" }, "locked": { - "lastModified": 1660580223, - "narHash": "sha256-r1i92rrUjSBdnQZpHLxeCAtVGMHYqKQHm05mzddIte8=", + "lastModified": 1659383708, + "narHash": "sha256-eenTO5t4ocK7VzorMUdUyKUoup976cCu5dJcVjebY8E=", "owner": "Liqwid-Labs", "repo": "liqwid-nix", - "rev": "fa1eeba35b37ac2551a00798dffdf053879699c3", + "rev": "c261df76dc31b3dc5dfde7030420e0a6be73f615", "type": "github" }, "original": { @@ -7171,6 +10523,61 @@ } }, "liqwid-plutarch-extra_2": { + "inputs": { + "haskell-language-server": [ + "liqwid-script-export", + "liqwid-plutarch-extra", + "plutarch", + "haskell-language-server" + ], + "haskell-nix": [ + "liqwid-script-export", + "liqwid-plutarch-extra", + "plutarch", + "haskell-nix" + ], + "haskell-nix-extra-hackage": [ + "liqwid-script-export", + "liqwid-plutarch-extra", + "plutarch", + "haskell-nix-extra-hackage" + ], + "iohk-nix": [ + "liqwid-script-export", + "liqwid-plutarch-extra", + "plutarch", + "iohk-nix" + ], + "liqwid-nix": "liqwid-nix_7", + "nixpkgs": [ + "liqwid-script-export", + "liqwid-plutarch-extra", + "plutarch", + "nixpkgs" + ], + "nixpkgs-2111": "nixpkgs-2111_9", + "nixpkgs-2205": "nixpkgs-2205_9", + "nixpkgs-latest": "nixpkgs-latest_9", + "plutarch": "plutarch_5", + "plutarch-context-builder": "plutarch-context-builder_2", + "plutarch-numeric": "plutarch-numeric_2", + "plutarch-quickcheck": "plutarch-quickcheck_2" + }, + "locked": { + "lastModified": 1665779931, + "narHash": "sha256-TS9XdZwjm988d9+jPig174p7mS6ZzzqtTt68IVM4Jcs=", + "owner": "Liqwid-Labs", + "repo": "liqwid-plutarch-extra", + "rev": "f80d631e71b91ff16f156488c25b334e6fdff5ce", + "type": "github" + }, + "original": { + "owner": "Liqwid-Labs", + "repo": "liqwid-plutarch-extra", + "type": "github" + } + }, + "liqwid-plutarch-extra_3": { "inputs": { "haskell-language-server": [ "plutarch-safe-money", @@ -7196,20 +10603,20 @@ "plutarch", "iohk-nix" ], - "liqwid-nix": "liqwid-nix_10", + "liqwid-nix": "liqwid-nix_16", "nixpkgs": [ "plutarch-safe-money", "liqwid-plutarch-extra", "plutarch", "nixpkgs" ], - "nixpkgs-2111": "nixpkgs-2111_17", - "nixpkgs-2205": "nixpkgs-2205_10", - "nixpkgs-latest": "nixpkgs-latest_17", - "plutarch": "plutarch_9", - "plutarch-context-builder": "plutarch-context-builder_3", - "plutarch-numeric": "plutarch-numeric_3", - "plutarch-quickcheck": "plutarch-quickcheck_3" + "nixpkgs-2111": "nixpkgs-2111_31", + "nixpkgs-2205": "nixpkgs-2205_17", + "nixpkgs-latest": "nixpkgs-latest_30", + "plutarch": "plutarch_16", + "plutarch-context-builder": "plutarch-context-builder_4", + "plutarch-numeric": "plutarch-numeric_5", + "plutarch-quickcheck": "plutarch-quickcheck_4" }, "locked": { "lastModified": 1663707854, @@ -7226,6 +10633,56 @@ "type": "github" } }, + "liqwid-script-export": { + "inputs": { + "haskell-language-server": [ + "liqwid-script-export", + "plutarch", + "haskell-language-server" + ], + "haskell-nix": [ + "liqwid-script-export", + "plutarch", + "haskell-nix" + ], + "haskell-nix-extra-hackage": [ + "liqwid-script-export", + "plutarch", + "haskell-nix-extra-hackage" + ], + "iohk-nix": [ + "liqwid-script-export", + "plutarch", + "iohk-nix" + ], + "liqwid-nix": "liqwid-nix_6", + "liqwid-plutarch-extra": "liqwid-plutarch-extra_2", + "nixpkgs": [ + "liqwid-script-export", + "plutarch", + "nixpkgs" + ], + "nixpkgs-2111": "nixpkgs-2111_17", + "nixpkgs-latest": "nixpkgs-latest_17", + "plutarch": "plutarch_9", + "plutarch-numeric": "plutarch-numeric_3", + "ply": "ply" + }, + "locked": { + "lastModified": 1666051771, + "narHash": "sha256-gWNP538VYPGSABTMiditBSfyNH1mOc4mekINTzYz5Hk=", + "owner": "Liqwid-Labs", + "repo": "liqwid-script-export", + "rev": "17e8aad4bcea21478ed22e08b0ccbc4a65079d7a", + "type": "github" + }, + "original": { + "owner": "Liqwid-Labs", + "ref": "main", + "repo": "liqwid-script-export", + "type": "github" + } + }, "lowdown-src": { "flake": false, "locked": { @@ -7338,6 +10795,70 @@ "type": "github" } }, + "lowdown-src_16": { + "flake": false, + "locked": { + "lastModified": 1633514407, + "narHash": "sha256-Dw32tiMjdK9t3ETl5fzGrutQTzh2rufgZV4A/BbxuD4=", + "owner": "kristapsdz", + "repo": "lowdown", + "rev": "d2c2b44ff6c27b936ec27358a2653caaef8f73b8", + "type": "github" + }, + "original": { + "owner": "kristapsdz", + "repo": "lowdown", + "type": "github" + } + }, + "lowdown-src_17": { + "flake": false, + "locked": { + "lastModified": 1633514407, + "narHash": "sha256-Dw32tiMjdK9t3ETl5fzGrutQTzh2rufgZV4A/BbxuD4=", + "owner": "kristapsdz", + "repo": "lowdown", + "rev": "d2c2b44ff6c27b936ec27358a2653caaef8f73b8", + "type": "github" + }, + "original": { + "owner": "kristapsdz", + "repo": "lowdown", + "type": "github" + } + }, + "lowdown-src_18": { + "flake": false, + "locked": { + "lastModified": 1633514407, + "narHash": "sha256-Dw32tiMjdK9t3ETl5fzGrutQTzh2rufgZV4A/BbxuD4=", + "owner": "kristapsdz", + "repo": "lowdown", + "rev": "d2c2b44ff6c27b936ec27358a2653caaef8f73b8", + "type": "github" + }, + "original": { + "owner": "kristapsdz", + "repo": "lowdown", + "type": "github" + } + }, + "lowdown-src_19": { + "flake": false, + "locked": { + "lastModified": 1633514407, + "narHash": "sha256-Dw32tiMjdK9t3ETl5fzGrutQTzh2rufgZV4A/BbxuD4=", + "owner": "kristapsdz", + "repo": "lowdown", + "rev": "d2c2b44ff6c27b936ec27358a2653caaef8f73b8", + "type": "github" + }, + "original": { + "owner": "kristapsdz", + "repo": "lowdown", + "type": "github" + } + }, "lowdown-src_2": { "flake": false, "locked": { @@ -7354,6 +10875,54 @@ "type": "github" } }, + "lowdown-src_20": { + "flake": false, + "locked": { + "lastModified": 1633514407, + "narHash": "sha256-Dw32tiMjdK9t3ETl5fzGrutQTzh2rufgZV4A/BbxuD4=", + "owner": "kristapsdz", + "repo": "lowdown", + "rev": "d2c2b44ff6c27b936ec27358a2653caaef8f73b8", + "type": "github" + }, + "original": { + "owner": "kristapsdz", + "repo": "lowdown", + "type": "github" + } + }, + "lowdown-src_21": { + "flake": false, + "locked": { + "lastModified": 1633514407, + "narHash": "sha256-Dw32tiMjdK9t3ETl5fzGrutQTzh2rufgZV4A/BbxuD4=", + "owner": "kristapsdz", + "repo": "lowdown", + "rev": "d2c2b44ff6c27b936ec27358a2653caaef8f73b8", + "type": "github" + }, + "original": { + "owner": "kristapsdz", + "repo": "lowdown", + "type": "github" + } + }, + "lowdown-src_22": { + "flake": false, + "locked": { + "lastModified": 1633514407, + "narHash": "sha256-Dw32tiMjdK9t3ETl5fzGrutQTzh2rufgZV4A/BbxuD4=", + "owner": "kristapsdz", + "repo": "lowdown", + "rev": "d2c2b44ff6c27b936ec27358a2653caaef8f73b8", + "type": "github" + }, + "original": { + "owner": "kristapsdz", + "repo": "lowdown", + "type": "github" + } + }, "lowdown-src_3": { "flake": false, "locked": { @@ -7599,6 +11168,70 @@ "type": "github" } }, + "nix-tools_16": { + "flake": false, + "locked": { + "lastModified": 1649424170, + "narHash": "sha256-XgKXWispvv5RCvZzPb+p7e6Hy3LMuRjafKMl7kXzxGw=", + "owner": "input-output-hk", + "repo": "nix-tools", + "rev": "e109c94016e3b6e0db7ed413c793e2d4bdb24aa7", + "type": "github" + }, + "original": { + "owner": "input-output-hk", + "repo": "nix-tools", + "type": "github" + } + }, + "nix-tools_17": { + "flake": false, + "locked": { + "lastModified": 1649424170, + "narHash": "sha256-XgKXWispvv5RCvZzPb+p7e6Hy3LMuRjafKMl7kXzxGw=", + "owner": "input-output-hk", + "repo": "nix-tools", + "rev": "e109c94016e3b6e0db7ed413c793e2d4bdb24aa7", + "type": "github" + }, + "original": { + "owner": "input-output-hk", + "repo": "nix-tools", + "type": "github" + } + }, + "nix-tools_18": { + "flake": false, + "locked": { + "lastModified": 1649424170, + "narHash": "sha256-XgKXWispvv5RCvZzPb+p7e6Hy3LMuRjafKMl7kXzxGw=", + "owner": "input-output-hk", + "repo": "nix-tools", + "rev": "e109c94016e3b6e0db7ed413c793e2d4bdb24aa7", + "type": "github" + }, + "original": { + "owner": "input-output-hk", + "repo": "nix-tools", + "type": "github" + } + }, + "nix-tools_19": { + "flake": false, + "locked": { + "lastModified": 1649424170, + "narHash": "sha256-XgKXWispvv5RCvZzPb+p7e6Hy3LMuRjafKMl7kXzxGw=", + "owner": "input-output-hk", + "repo": "nix-tools", + "rev": "e109c94016e3b6e0db7ed413c793e2d4bdb24aa7", + "type": "github" + }, + "original": { + "owner": "input-output-hk", + "repo": "nix-tools", + "type": "github" + } + }, "nix-tools_2": { "flake": false, "locked": { @@ -7615,6 +11248,54 @@ "type": "github" } }, + "nix-tools_20": { + "flake": false, + "locked": { + "lastModified": 1649424170, + "narHash": "sha256-XgKXWispvv5RCvZzPb+p7e6Hy3LMuRjafKMl7kXzxGw=", + "owner": "input-output-hk", + "repo": "nix-tools", + "rev": "e109c94016e3b6e0db7ed413c793e2d4bdb24aa7", + "type": "github" + }, + "original": { + "owner": "input-output-hk", + "repo": "nix-tools", + "type": "github" + } + }, + "nix-tools_21": { + "flake": false, + "locked": { + "lastModified": 1649424170, + "narHash": "sha256-XgKXWispvv5RCvZzPb+p7e6Hy3LMuRjafKMl7kXzxGw=", + "owner": "input-output-hk", + "repo": "nix-tools", + "rev": "e109c94016e3b6e0db7ed413c793e2d4bdb24aa7", + "type": "github" + }, + "original": { + "owner": "input-output-hk", + "repo": "nix-tools", + "type": "github" + } + }, + "nix-tools_22": { + "flake": false, + "locked": { + "lastModified": 1649424170, + "narHash": "sha256-XgKXWispvv5RCvZzPb+p7e6Hy3LMuRjafKMl7kXzxGw=", + "owner": "input-output-hk", + "repo": "nix-tools", + "rev": "e109c94016e3b6e0db7ed413c793e2d4bdb24aa7", + "type": "github" + }, + "original": { + "owner": "input-output-hk", + "repo": "nix-tools", + "type": "github" + } + }, "nix-tools_3": { "flake": false, "locked": { @@ -7751,7 +11432,7 @@ "nix_11": { "inputs": { "lowdown-src": "lowdown-src_11", - "nixpkgs": "nixpkgs_43", + "nixpkgs": "nixpkgs_42", "nixpkgs-regression": "nixpkgs-regression_11" }, "locked": { @@ -7772,7 +11453,7 @@ "nix_12": { "inputs": { "lowdown-src": "lowdown-src_12", - "nixpkgs": "nixpkgs_47", + "nixpkgs": "nixpkgs_45", "nixpkgs-regression": "nixpkgs-regression_12" }, "locked": { @@ -7793,7 +11474,7 @@ "nix_13": { "inputs": { "lowdown-src": "lowdown-src_13", - "nixpkgs": "nixpkgs_50", + "nixpkgs": "nixpkgs_49", "nixpkgs-regression": "nixpkgs-regression_13" }, "locked": { @@ -7814,7 +11495,7 @@ "nix_14": { "inputs": { "lowdown-src": "lowdown-src_14", - "nixpkgs": "nixpkgs_54", + "nixpkgs": "nixpkgs_53", "nixpkgs-regression": "nixpkgs-regression_14" }, "locked": { @@ -7835,7 +11516,7 @@ "nix_15": { "inputs": { "lowdown-src": "lowdown-src_15", - "nixpkgs": "nixpkgs_58", + "nixpkgs": "nixpkgs_57", "nixpkgs-regression": "nixpkgs-regression_15" }, "locked": { @@ -7853,6 +11534,90 @@ "type": "github" } }, + "nix_16": { + "inputs": { + "lowdown-src": "lowdown-src_16", + "nixpkgs": "nixpkgs_61", + "nixpkgs-regression": "nixpkgs-regression_16" + }, + "locked": { + "lastModified": 1643066034, + "narHash": "sha256-xEPeMcNJVOeZtoN+d+aRwolpW8mFSEQx76HTRdlhPhg=", + "owner": "NixOS", + "repo": "nix", + "rev": "a1cd7e58606a41fcf62bf8637804cf8306f17f62", + "type": "github" + }, + "original": { + "owner": "NixOS", + "ref": "2.6.0", + "repo": "nix", + "type": "github" + } + }, + "nix_17": { + "inputs": { + "lowdown-src": "lowdown-src_17", + "nixpkgs": "nixpkgs_66", + "nixpkgs-regression": "nixpkgs-regression_17" + }, + "locked": { + "lastModified": 1643066034, + "narHash": "sha256-xEPeMcNJVOeZtoN+d+aRwolpW8mFSEQx76HTRdlhPhg=", + "owner": "NixOS", + "repo": "nix", + "rev": "a1cd7e58606a41fcf62bf8637804cf8306f17f62", + "type": "github" + }, + "original": { + "owner": "NixOS", + "ref": "2.6.0", + "repo": "nix", + "type": "github" + } + }, + "nix_18": { + "inputs": { + "lowdown-src": "lowdown-src_18", + "nixpkgs": "nixpkgs_70", + "nixpkgs-regression": "nixpkgs-regression_18" + }, + "locked": { + "lastModified": 1643066034, + "narHash": "sha256-xEPeMcNJVOeZtoN+d+aRwolpW8mFSEQx76HTRdlhPhg=", + "owner": "NixOS", + "repo": "nix", + "rev": "a1cd7e58606a41fcf62bf8637804cf8306f17f62", + "type": "github" + }, + "original": { + "owner": "NixOS", + "ref": "2.6.0", + "repo": "nix", + "type": "github" + } + }, + "nix_19": { + "inputs": { + "lowdown-src": "lowdown-src_19", + "nixpkgs": "nixpkgs_74", + "nixpkgs-regression": "nixpkgs-regression_19" + }, + "locked": { + "lastModified": 1643066034, + "narHash": "sha256-xEPeMcNJVOeZtoN+d+aRwolpW8mFSEQx76HTRdlhPhg=", + "owner": "NixOS", + "repo": "nix", + "rev": "a1cd7e58606a41fcf62bf8637804cf8306f17f62", + "type": "github" + }, + "original": { + "owner": "NixOS", + "ref": "2.6.0", + "repo": "nix", + "type": "github" + } + }, "nix_2": { "inputs": { "lowdown-src": "lowdown-src_2", @@ -7874,6 +11639,69 @@ "type": "github" } }, + "nix_20": { + "inputs": { + "lowdown-src": "lowdown-src_20", + "nixpkgs": "nixpkgs_78", + "nixpkgs-regression": "nixpkgs-regression_20" + }, + "locked": { + "lastModified": 1643066034, + "narHash": "sha256-xEPeMcNJVOeZtoN+d+aRwolpW8mFSEQx76HTRdlhPhg=", + "owner": "NixOS", + "repo": "nix", + "rev": "a1cd7e58606a41fcf62bf8637804cf8306f17f62", + "type": "github" + }, + "original": { + "owner": "NixOS", + "ref": "2.6.0", + "repo": "nix", + "type": "github" + } + }, + "nix_21": { + "inputs": { + "lowdown-src": "lowdown-src_21", + "nixpkgs": "nixpkgs_81", + "nixpkgs-regression": "nixpkgs-regression_21" + }, + "locked": { + "lastModified": 1643066034, + "narHash": "sha256-xEPeMcNJVOeZtoN+d+aRwolpW8mFSEQx76HTRdlhPhg=", + "owner": "NixOS", + "repo": "nix", + "rev": "a1cd7e58606a41fcf62bf8637804cf8306f17f62", + "type": "github" + }, + "original": { + "owner": "NixOS", + "ref": "2.6.0", + "repo": "nix", + "type": "github" + } + }, + "nix_22": { + "inputs": { + "lowdown-src": "lowdown-src_22", + "nixpkgs": "nixpkgs_85", + "nixpkgs-regression": "nixpkgs-regression_22" + }, + "locked": { + "lastModified": 1643066034, + "narHash": "sha256-xEPeMcNJVOeZtoN+d+aRwolpW8mFSEQx76HTRdlhPhg=", + "owner": "NixOS", + "repo": "nix", + "rev": "a1cd7e58606a41fcf62bf8637804cf8306f17f62", + "type": "github" + }, + "original": { + "owner": "NixOS", + "ref": "2.6.0", + "repo": "nix", + "type": "github" + } + }, "nix_3": { "inputs": { "lowdown-src": "lowdown-src_3", @@ -7919,7 +11747,7 @@ "nix_5": { "inputs": { "lowdown-src": "lowdown-src_5", - "nixpkgs": "nixpkgs_18", + "nixpkgs": "nixpkgs_20", "nixpkgs-regression": "nixpkgs-regression_5" }, "locked": { @@ -7940,7 +11768,7 @@ "nix_6": { "inputs": { "lowdown-src": "lowdown-src_6", - "nixpkgs": "nixpkgs_22", + "nixpkgs": "nixpkgs_24", "nixpkgs-regression": "nixpkgs-regression_6" }, "locked": { @@ -7961,7 +11789,7 @@ "nix_7": { "inputs": { "lowdown-src": "lowdown-src_7", - "nixpkgs": "nixpkgs_26", + "nixpkgs": "nixpkgs_28", "nixpkgs-regression": "nixpkgs-regression_7" }, "locked": { @@ -7982,7 +11810,7 @@ "nix_8": { "inputs": { "lowdown-src": "lowdown-src_8", - "nixpkgs": "nixpkgs_30", + "nixpkgs": "nixpkgs_32", "nixpkgs-regression": "nixpkgs-regression_8" }, "locked": { @@ -8147,6 +11975,70 @@ "type": "github" } }, + "nixpkgs-2003_16": { + "locked": { + "lastModified": 1620055814, + "narHash": "sha256-8LEHoYSJiL901bTMVatq+rf8y7QtWuZhwwpKE2fyaRY=", + "owner": "NixOS", + "repo": "nixpkgs", + "rev": "1db42b7fe3878f3f5f7a4f2dc210772fd080e205", + "type": "github" + }, + "original": { + "owner": "NixOS", + "ref": "nixpkgs-20.03-darwin", + "repo": "nixpkgs", + "type": "github" + } + }, + "nixpkgs-2003_17": { + "locked": { + "lastModified": 1620055814, + "narHash": "sha256-8LEHoYSJiL901bTMVatq+rf8y7QtWuZhwwpKE2fyaRY=", + "owner": "NixOS", + "repo": "nixpkgs", + "rev": "1db42b7fe3878f3f5f7a4f2dc210772fd080e205", + "type": "github" + }, + "original": { + "owner": "NixOS", + "ref": "nixpkgs-20.03-darwin", + "repo": "nixpkgs", + "type": "github" + } + }, + "nixpkgs-2003_18": { + "locked": { + "lastModified": 1620055814, + "narHash": "sha256-8LEHoYSJiL901bTMVatq+rf8y7QtWuZhwwpKE2fyaRY=", + "owner": "NixOS", + "repo": "nixpkgs", + "rev": "1db42b7fe3878f3f5f7a4f2dc210772fd080e205", + "type": "github" + }, + "original": { + "owner": "NixOS", + "ref": "nixpkgs-20.03-darwin", + "repo": "nixpkgs", + "type": "github" + } + }, + "nixpkgs-2003_19": { + "locked": { + "lastModified": 1620055814, + "narHash": "sha256-8LEHoYSJiL901bTMVatq+rf8y7QtWuZhwwpKE2fyaRY=", + "owner": "NixOS", + "repo": "nixpkgs", + "rev": "1db42b7fe3878f3f5f7a4f2dc210772fd080e205", + "type": "github" + }, + "original": { + "owner": "NixOS", + "ref": "nixpkgs-20.03-darwin", + "repo": "nixpkgs", + "type": "github" + } + }, "nixpkgs-2003_2": { "locked": { "lastModified": 1620055814, @@ -8163,6 +12055,54 @@ "type": "github" } }, + "nixpkgs-2003_20": { + "locked": { + "lastModified": 1620055814, + "narHash": "sha256-8LEHoYSJiL901bTMVatq+rf8y7QtWuZhwwpKE2fyaRY=", + "owner": "NixOS", + "repo": "nixpkgs", + "rev": "1db42b7fe3878f3f5f7a4f2dc210772fd080e205", + "type": "github" + }, + "original": { + "owner": "NixOS", + "ref": "nixpkgs-20.03-darwin", + "repo": "nixpkgs", + "type": "github" + } + }, + "nixpkgs-2003_21": { + "locked": { + "lastModified": 1620055814, + "narHash": "sha256-8LEHoYSJiL901bTMVatq+rf8y7QtWuZhwwpKE2fyaRY=", + "owner": "NixOS", + "repo": "nixpkgs", + "rev": "1db42b7fe3878f3f5f7a4f2dc210772fd080e205", + "type": "github" + }, + "original": { + "owner": "NixOS", + "ref": "nixpkgs-20.03-darwin", + "repo": "nixpkgs", + "type": "github" + } + }, + "nixpkgs-2003_22": { + "locked": { + "lastModified": 1620055814, + "narHash": "sha256-8LEHoYSJiL901bTMVatq+rf8y7QtWuZhwwpKE2fyaRY=", + "owner": "NixOS", + "repo": "nixpkgs", + "rev": "1db42b7fe3878f3f5f7a4f2dc210772fd080e205", + "type": "github" + }, + "original": { + "owner": "NixOS", + "ref": "nixpkgs-20.03-darwin", + "repo": "nixpkgs", + "type": "github" + } + }, "nixpkgs-2003_3": { "locked": { "lastModified": 1620055814, @@ -8387,6 +12327,70 @@ "type": "github" } }, + "nixpkgs-2105_16": { + "locked": { + "lastModified": 1645296114, + "narHash": "sha256-y53N7TyIkXsjMpOG7RhvqJFGDacLs9HlyHeSTBioqYU=", + "owner": "NixOS", + "repo": "nixpkgs", + "rev": "530a53dcbc9437363471167a5e4762c5fcfa34a1", + "type": "github" + }, + "original": { + "owner": "NixOS", + "ref": "nixpkgs-21.05-darwin", + "repo": "nixpkgs", + "type": "github" + } + }, + "nixpkgs-2105_17": { + "locked": { + "lastModified": 1645296114, + "narHash": "sha256-y53N7TyIkXsjMpOG7RhvqJFGDacLs9HlyHeSTBioqYU=", + "owner": "NixOS", + "repo": "nixpkgs", + "rev": "530a53dcbc9437363471167a5e4762c5fcfa34a1", + "type": "github" + }, + "original": { + "owner": "NixOS", + "ref": "nixpkgs-21.05-darwin", + "repo": "nixpkgs", + "type": "github" + } + }, + "nixpkgs-2105_18": { + "locked": { + "lastModified": 1645296114, + "narHash": "sha256-y53N7TyIkXsjMpOG7RhvqJFGDacLs9HlyHeSTBioqYU=", + "owner": "NixOS", + "repo": "nixpkgs", + "rev": "530a53dcbc9437363471167a5e4762c5fcfa34a1", + "type": "github" + }, + "original": { + "owner": "NixOS", + "ref": "nixpkgs-21.05-darwin", + "repo": "nixpkgs", + "type": "github" + } + }, + "nixpkgs-2105_19": { + "locked": { + "lastModified": 1645296114, + "narHash": "sha256-y53N7TyIkXsjMpOG7RhvqJFGDacLs9HlyHeSTBioqYU=", + "owner": "NixOS", + "repo": "nixpkgs", + "rev": "530a53dcbc9437363471167a5e4762c5fcfa34a1", + "type": "github" + }, + "original": { + "owner": "NixOS", + "ref": "nixpkgs-21.05-darwin", + "repo": "nixpkgs", + "type": "github" + } + }, "nixpkgs-2105_2": { "locked": { "lastModified": 1645296114, @@ -8403,6 +12407,54 @@ "type": "github" } }, + "nixpkgs-2105_20": { + "locked": { + "lastModified": 1645296114, + "narHash": "sha256-y53N7TyIkXsjMpOG7RhvqJFGDacLs9HlyHeSTBioqYU=", + "owner": "NixOS", + "repo": "nixpkgs", + "rev": "530a53dcbc9437363471167a5e4762c5fcfa34a1", + "type": "github" + }, + "original": { + "owner": "NixOS", + "ref": "nixpkgs-21.05-darwin", + "repo": "nixpkgs", + "type": "github" + } + }, + "nixpkgs-2105_21": { + "locked": { + "lastModified": 1645296114, + "narHash": "sha256-y53N7TyIkXsjMpOG7RhvqJFGDacLs9HlyHeSTBioqYU=", + "owner": "NixOS", + "repo": "nixpkgs", + "rev": "530a53dcbc9437363471167a5e4762c5fcfa34a1", + "type": "github" + }, + "original": { + "owner": "NixOS", + "ref": "nixpkgs-21.05-darwin", + "repo": "nixpkgs", + "type": "github" + } + }, + "nixpkgs-2105_22": { + "locked": { + "lastModified": 1645296114, + "narHash": "sha256-y53N7TyIkXsjMpOG7RhvqJFGDacLs9HlyHeSTBioqYU=", + "owner": "NixOS", + "repo": "nixpkgs", + "rev": "530a53dcbc9437363471167a5e4762c5fcfa34a1", + "type": "github" + }, + "original": { + "owner": "NixOS", + "ref": "nixpkgs-21.05-darwin", + "repo": "nixpkgs", + "type": "github" + } + }, "nixpkgs-2105_3": { "locked": { "lastModified": 1645296114, @@ -8613,11 +12665,11 @@ }, "nixpkgs-2111_15": { "locked": { - "lastModified": 1658346836, - "narHash": "sha256-c9BZZbi0tqCQ4j6CMVDlsut3Q3ET1Fezf+qIslCfkhs=", + "lastModified": 1659446231, + "narHash": "sha256-hekabNdTdgR/iLsgce5TGWmfIDZ86qjPhxDg/8TlzhE=", "owner": "NixOS", "repo": "nixpkgs", - "rev": "a1fe662eb26ffc2a036b37c4670392ade632c413", + "rev": "eabc38219184cc3e04a974fe31857d8e0eac098d", "type": "github" }, "original": { @@ -8677,11 +12729,11 @@ }, "nixpkgs-2111_19": { "locked": { - "lastModified": 1659446231, - "narHash": "sha256-hekabNdTdgR/iLsgce5TGWmfIDZ86qjPhxDg/8TlzhE=", + "lastModified": 1658346836, + "narHash": "sha256-c9BZZbi0tqCQ4j6CMVDlsut3Q3ET1Fezf+qIslCfkhs=", "owner": "NixOS", "repo": "nixpkgs", - "rev": "eabc38219184cc3e04a974fe31857d8e0eac098d", + "rev": "a1fe662eb26ffc2a036b37c4670392ade632c413", "type": "github" }, "original": { @@ -8725,11 +12777,11 @@ }, "nixpkgs-2111_21": { "locked": { - "lastModified": 1658346836, - "narHash": "sha256-c9BZZbi0tqCQ4j6CMVDlsut3Q3ET1Fezf+qIslCfkhs=", + "lastModified": 1648744337, + "narHash": "sha256-bYe1dFJAXovjqiaPKrmAbSBEK5KUkgwVaZcTbSoJ7hg=", "owner": "NixOS", "repo": "nixpkgs", - "rev": "a1fe662eb26ffc2a036b37c4670392ade632c413", + "rev": "0a58eebd8ec65ffdef2ce9562784123a73922052", "type": "github" }, "original": { @@ -8853,11 +12905,11 @@ }, "nixpkgs-2111_29": { "locked": { - "lastModified": 1659446231, - "narHash": "sha256-hekabNdTdgR/iLsgce5TGWmfIDZ86qjPhxDg/8TlzhE=", + "lastModified": 1658346836, + "narHash": "sha256-c9BZZbi0tqCQ4j6CMVDlsut3Q3ET1Fezf+qIslCfkhs=", "owner": "NixOS", "repo": "nixpkgs", - "rev": "eabc38219184cc3e04a974fe31857d8e0eac098d", + "rev": "a1fe662eb26ffc2a036b37c4670392ade632c413", "type": "github" }, "original": { @@ -8899,6 +12951,150 @@ "type": "github" } }, + "nixpkgs-2111_31": { + "locked": { + "lastModified": 1659446231, + "narHash": "sha256-hekabNdTdgR/iLsgce5TGWmfIDZ86qjPhxDg/8TlzhE=", + "owner": "NixOS", + "repo": "nixpkgs", + "rev": "eabc38219184cc3e04a974fe31857d8e0eac098d", + "type": "github" + }, + "original": { + "owner": "NixOS", + "ref": "nixpkgs-21.11-darwin", + "repo": "nixpkgs", + "type": "github" + } + }, + "nixpkgs-2111_32": { + "locked": { + "lastModified": 1648744337, + "narHash": "sha256-bYe1dFJAXovjqiaPKrmAbSBEK5KUkgwVaZcTbSoJ7hg=", + "owner": "NixOS", + "repo": "nixpkgs", + "rev": "0a58eebd8ec65ffdef2ce9562784123a73922052", + "type": "github" + }, + "original": { + "owner": "NixOS", + "ref": "nixpkgs-21.11-darwin", + "repo": "nixpkgs", + "type": "github" + } + }, + "nixpkgs-2111_33": { + "locked": { + "lastModified": 1659446231, + "narHash": "sha256-hekabNdTdgR/iLsgce5TGWmfIDZ86qjPhxDg/8TlzhE=", + "owner": "NixOS", + "repo": "nixpkgs", + "rev": "eabc38219184cc3e04a974fe31857d8e0eac098d", + "type": "github" + }, + "original": { + "owner": "NixOS", + "ref": "nixpkgs-21.11-darwin", + "repo": "nixpkgs", + "type": "github" + } + }, + "nixpkgs-2111_34": { + "locked": { + "lastModified": 1648744337, + "narHash": "sha256-bYe1dFJAXovjqiaPKrmAbSBEK5KUkgwVaZcTbSoJ7hg=", + "owner": "NixOS", + "repo": "nixpkgs", + "rev": "0a58eebd8ec65ffdef2ce9562784123a73922052", + "type": "github" + }, + "original": { + "owner": "NixOS", + "ref": "nixpkgs-21.11-darwin", + "repo": "nixpkgs", + "type": "github" + } + }, + "nixpkgs-2111_35": { + "locked": { + "lastModified": 1658346836, + "narHash": "sha256-c9BZZbi0tqCQ4j6CMVDlsut3Q3ET1Fezf+qIslCfkhs=", + "owner": "NixOS", + "repo": "nixpkgs", + "rev": "a1fe662eb26ffc2a036b37c4670392ade632c413", + "type": "github" + }, + "original": { + "owner": "NixOS", + "ref": "nixpkgs-21.11-darwin", + "repo": "nixpkgs", + "type": "github" + } + }, + "nixpkgs-2111_36": { + "locked": { + "lastModified": 1648744337, + "narHash": "sha256-bYe1dFJAXovjqiaPKrmAbSBEK5KUkgwVaZcTbSoJ7hg=", + "owner": "NixOS", + "repo": "nixpkgs", + "rev": "0a58eebd8ec65ffdef2ce9562784123a73922052", + "type": "github" + }, + "original": { + "owner": "NixOS", + "ref": "nixpkgs-21.11-darwin", + "repo": "nixpkgs", + "type": "github" + } + }, + "nixpkgs-2111_37": { + "locked": { + "lastModified": 1659446231, + "narHash": "sha256-hekabNdTdgR/iLsgce5TGWmfIDZ86qjPhxDg/8TlzhE=", + "owner": "NixOS", + "repo": "nixpkgs", + "rev": "eabc38219184cc3e04a974fe31857d8e0eac098d", + "type": "github" + }, + "original": { + "owner": "NixOS", + "ref": "nixpkgs-21.11-darwin", + "repo": "nixpkgs", + "type": "github" + } + }, + "nixpkgs-2111_38": { + "locked": { + "lastModified": 1648744337, + "narHash": "sha256-bYe1dFJAXovjqiaPKrmAbSBEK5KUkgwVaZcTbSoJ7hg=", + "owner": "NixOS", + "repo": "nixpkgs", + "rev": "0a58eebd8ec65ffdef2ce9562784123a73922052", + "type": "github" + }, + "original": { + "owner": "NixOS", + "ref": "nixpkgs-21.11-darwin", + "repo": "nixpkgs", + "type": "github" + } + }, + "nixpkgs-2111_39": { + "locked": { + "lastModified": 1659446231, + "narHash": "sha256-hekabNdTdgR/iLsgce5TGWmfIDZ86qjPhxDg/8TlzhE=", + "owner": "NixOS", + "repo": "nixpkgs", + "rev": "eabc38219184cc3e04a974fe31857d8e0eac098d", + "type": "github" + }, + "original": { + "owner": "NixOS", + "ref": "nixpkgs-21.11-darwin", + "repo": "nixpkgs", + "type": "github" + } + }, "nixpkgs-2111_4": { "locked": { "lastModified": 1648744337, @@ -8915,6 +13111,54 @@ "type": "github" } }, + "nixpkgs-2111_40": { + "locked": { + "lastModified": 1648744337, + "narHash": "sha256-bYe1dFJAXovjqiaPKrmAbSBEK5KUkgwVaZcTbSoJ7hg=", + "owner": "NixOS", + "repo": "nixpkgs", + "rev": "0a58eebd8ec65ffdef2ce9562784123a73922052", + "type": "github" + }, + "original": { + "owner": "NixOS", + "ref": "nixpkgs-21.11-darwin", + "repo": "nixpkgs", + "type": "github" + } + }, + "nixpkgs-2111_41": { + "locked": { + "lastModified": 1658346836, + "narHash": "sha256-c9BZZbi0tqCQ4j6CMVDlsut3Q3ET1Fezf+qIslCfkhs=", + "owner": "NixOS", + "repo": "nixpkgs", + "rev": "a1fe662eb26ffc2a036b37c4670392ade632c413", + "type": "github" + }, + "original": { + "owner": "NixOS", + "ref": "nixpkgs-21.11-darwin", + "repo": "nixpkgs", + "type": "github" + } + }, + "nixpkgs-2111_42": { + "locked": { + "lastModified": 1648744337, + "narHash": "sha256-bYe1dFJAXovjqiaPKrmAbSBEK5KUkgwVaZcTbSoJ7hg=", + "owner": "NixOS", + "repo": "nixpkgs", + "rev": "0a58eebd8ec65ffdef2ce9562784123a73922052", + "type": "github" + }, + "original": { + "owner": "NixOS", + "ref": "nixpkgs-21.11-darwin", + "repo": "nixpkgs", + "type": "github" + } + }, "nixpkgs-2111_5": { "locked": { "lastModified": 1658346836, @@ -9013,16 +13257,16 @@ }, "nixpkgs-2205_10": { "locked": { - "lastModified": 1653936696, - "narHash": "sha256-M6bJShji9AIDZ7Kh7CPwPBPb/T7RiVev2PAcOi4fxDQ=", + "lastModified": 1660033036, + "narHash": "sha256-GjwzXmdN5SVTT0RIZ11uDTQxaHLTLt9/AbBeIHNfidQ=", "owner": "NixOS", "repo": "nixpkgs", - "rev": "ce6aa13369b667ac2542593170993504932eb836", + "rev": "490f6174c03132bf8f078d0f3a6e5890a47f9b30", "type": "github" }, "original": { "owner": "NixOS", - "ref": "22.05", + "ref": "nixos-22.05", "repo": "nixpkgs", "type": "github" } @@ -9044,6 +13288,38 @@ } }, "nixpkgs-2205_12": { + "locked": { + "lastModified": 1653936696, + "narHash": "sha256-M6bJShji9AIDZ7Kh7CPwPBPb/T7RiVev2PAcOi4fxDQ=", + "owner": "NixOS", + "repo": "nixpkgs", + "rev": "ce6aa13369b667ac2542593170993504932eb836", + "type": "github" + }, + "original": { + "owner": "NixOS", + "ref": "22.05", + "repo": "nixpkgs", + "type": "github" + } + }, + "nixpkgs-2205_13": { + "locked": { + "lastModified": 1658957357, + "narHash": "sha256-GbpJRBv1EPjY6EaMquXGq3miuYbnn2XT2Cd4nmj7Ev8=", + "owner": "NixOS", + "repo": "nixpkgs", + "rev": "76e54678eb7fd4d9bfda9b13858a6a8df4501582", + "type": "github" + }, + "original": { + "owner": "NixOS", + "ref": "nixpkgs-22.05-darwin", + "repo": "nixpkgs", + "type": "github" + } + }, + "nixpkgs-2205_14": { "locked": { "lastModified": 1660033036, "narHash": "sha256-GjwzXmdN5SVTT0RIZ11uDTQxaHLTLt9/AbBeIHNfidQ=", @@ -9059,7 +13335,39 @@ "type": "github" } }, - "nixpkgs-2205_13": { + "nixpkgs-2205_15": { + "locked": { + "lastModified": 1660033036, + "narHash": "sha256-GjwzXmdN5SVTT0RIZ11uDTQxaHLTLt9/AbBeIHNfidQ=", + "owner": "NixOS", + "repo": "nixpkgs", + "rev": "490f6174c03132bf8f078d0f3a6e5890a47f9b30", + "type": "github" + }, + "original": { + "owner": "NixOS", + "ref": "nixos-22.05", + "repo": "nixpkgs", + "type": "github" + } + }, + "nixpkgs-2205_16": { + "locked": { + "lastModified": 1660033036, + "narHash": "sha256-GjwzXmdN5SVTT0RIZ11uDTQxaHLTLt9/AbBeIHNfidQ=", + "owner": "NixOS", + "repo": "nixpkgs", + "rev": "490f6174c03132bf8f078d0f3a6e5890a47f9b30", + "type": "github" + }, + "original": { + "owner": "NixOS", + "ref": "nixos-22.05", + "repo": "nixpkgs", + "type": "github" + } + }, + "nixpkgs-2205_17": { "locked": { "lastModified": 1653936696, "narHash": "sha256-M6bJShji9AIDZ7Kh7CPwPBPb/T7RiVev2PAcOi4fxDQ=", @@ -9075,7 +13383,23 @@ "type": "github" } }, - "nixpkgs-2205_14": { + "nixpkgs-2205_18": { + "locked": { + "lastModified": 1660033036, + "narHash": "sha256-GjwzXmdN5SVTT0RIZ11uDTQxaHLTLt9/AbBeIHNfidQ=", + "owner": "NixOS", + "repo": "nixpkgs", + "rev": "490f6174c03132bf8f078d0f3a6e5890a47f9b30", + "type": "github" + }, + "original": { + "owner": "NixOS", + "ref": "nixos-22.05", + "repo": "nixpkgs", + "type": "github" + } + }, + "nixpkgs-2205_19": { "locked": { "lastModified": 1660033036, "narHash": "sha256-GjwzXmdN5SVTT0RIZ11uDTQxaHLTLt9/AbBeIHNfidQ=", @@ -9107,6 +13431,22 @@ "type": "github" } }, + "nixpkgs-2205_20": { + "locked": { + "lastModified": 1653936696, + "narHash": "sha256-M6bJShji9AIDZ7Kh7CPwPBPb/T7RiVev2PAcOi4fxDQ=", + "owner": "NixOS", + "repo": "nixpkgs", + "rev": "ce6aa13369b667ac2542593170993504932eb836", + "type": "github" + }, + "original": { + "owner": "NixOS", + "ref": "22.05", + "repo": "nixpkgs", + "type": "github" + } + }, "nixpkgs-2205_3": { "locked": { "lastModified": 1653936696, @@ -9205,16 +13545,16 @@ }, "nixpkgs-2205_9": { "locked": { - "lastModified": 1660033036, - "narHash": "sha256-GjwzXmdN5SVTT0RIZ11uDTQxaHLTLt9/AbBeIHNfidQ=", + "lastModified": 1653936696, + "narHash": "sha256-M6bJShji9AIDZ7Kh7CPwPBPb/T7RiVev2PAcOi4fxDQ=", "owner": "NixOS", "repo": "nixpkgs", - "rev": "490f6174c03132bf8f078d0f3a6e5890a47f9b30", + "rev": "ce6aa13369b667ac2542593170993504932eb836", "type": "github" }, "original": { "owner": "NixOS", - "ref": "nixos-22.05", + "ref": "22.05", "repo": "nixpkgs", "type": "github" } @@ -9316,17 +13656,17 @@ }, "nixpkgs-latest_15": { "locked": { - "lastModified": 1653918805, - "narHash": "sha256-6ahwAnBNGgqSNSn/6RnsxrlFi+fkA+RyT6o/5S1915o=", + "lastModified": 1659622790, + "narHash": "sha256-fYelfx2ScXVprcivGPif+hi9cOZPt3/4wV5rC3AwZDs=", "owner": "NixOS", "repo": "nixpkgs", - "rev": "a0a69be4b5ee63f1b5e75887a406e9194012b492", + "rev": "cf63df0364f67848083ff75bc8ac9b7ca7aa5a01", "type": "github" }, "original": { "owner": "NixOS", "repo": "nixpkgs", - "rev": "a0a69be4b5ee63f1b5e75887a406e9194012b492", + "rev": "cf63df0364f67848083ff75bc8ac9b7ca7aa5a01", "type": "github" } }, @@ -9348,16 +13688,17 @@ }, "nixpkgs-latest_17": { "locked": { - "lastModified": 1663696179, - "narHash": "sha256-vjsfJKxW+z2t2RrYJ9gs71m48kX97+p+fpCHVmH3xxc=", + "lastModified": 1659622790, + "narHash": "sha256-fYelfx2ScXVprcivGPif+hi9cOZPt3/4wV5rC3AwZDs=", "owner": "NixOS", "repo": "nixpkgs", - "rev": "d4717ad12898f9c36f9b9538da0ca9df175ee05e", + "rev": "cf63df0364f67848083ff75bc8ac9b7ca7aa5a01", "type": "github" }, "original": { "owner": "NixOS", "repo": "nixpkgs", + "rev": "cf63df0364f67848083ff75bc8ac9b7ca7aa5a01", "type": "github" } }, @@ -9442,22 +13783,6 @@ } }, "nixpkgs-latest_22": { - "locked": { - "lastModified": 1653918805, - "narHash": "sha256-6ahwAnBNGgqSNSn/6RnsxrlFi+fkA+RyT6o/5S1915o=", - "owner": "NixOS", - "repo": "nixpkgs", - "rev": "a0a69be4b5ee63f1b5e75887a406e9194012b492", - "type": "github" - }, - "original": { - "owner": "NixOS", - "repo": "nixpkgs", - "rev": "a0a69be4b5ee63f1b5e75887a406e9194012b492", - "type": "github" - } - }, - "nixpkgs-latest_23": { "locked": { "lastModified": 1659622790, "narHash": "sha256-fYelfx2ScXVprcivGPif+hi9cOZPt3/4wV5rC3AwZDs=", @@ -9473,6 +13798,22 @@ "type": "github" } }, + "nixpkgs-latest_23": { + "locked": { + "lastModified": 1653918805, + "narHash": "sha256-6ahwAnBNGgqSNSn/6RnsxrlFi+fkA+RyT6o/5S1915o=", + "owner": "NixOS", + "repo": "nixpkgs", + "rev": "a0a69be4b5ee63f1b5e75887a406e9194012b492", + "type": "github" + }, + "original": { + "owner": "NixOS", + "repo": "nixpkgs", + "rev": "a0a69be4b5ee63f1b5e75887a406e9194012b492", + "type": "github" + } + }, "nixpkgs-latest_24": { "locked": { "lastModified": 1653918805, @@ -9491,17 +13832,17 @@ }, "nixpkgs-latest_25": { "locked": { - "lastModified": 1659622790, - "narHash": "sha256-fYelfx2ScXVprcivGPif+hi9cOZPt3/4wV5rC3AwZDs=", + "lastModified": 1653918805, + "narHash": "sha256-6ahwAnBNGgqSNSn/6RnsxrlFi+fkA+RyT6o/5S1915o=", "owner": "NixOS", "repo": "nixpkgs", - "rev": "cf63df0364f67848083ff75bc8ac9b7ca7aa5a01", + "rev": "a0a69be4b5ee63f1b5e75887a406e9194012b492", "type": "github" }, "original": { "owner": "NixOS", "repo": "nixpkgs", - "rev": "cf63df0364f67848083ff75bc8ac9b7ca7aa5a01", + "rev": "a0a69be4b5ee63f1b5e75887a406e9194012b492", "type": "github" } }, @@ -9555,17 +13896,17 @@ }, "nixpkgs-latest_29": { "locked": { - "lastModified": 1659622790, - "narHash": "sha256-fYelfx2ScXVprcivGPif+hi9cOZPt3/4wV5rC3AwZDs=", + "lastModified": 1653918805, + "narHash": "sha256-6ahwAnBNGgqSNSn/6RnsxrlFi+fkA+RyT6o/5S1915o=", "owner": "NixOS", "repo": "nixpkgs", - "rev": "cf63df0364f67848083ff75bc8ac9b7ca7aa5a01", + "rev": "a0a69be4b5ee63f1b5e75887a406e9194012b492", "type": "github" }, "original": { "owner": "NixOS", "repo": "nixpkgs", - "rev": "cf63df0364f67848083ff75bc8ac9b7ca7aa5a01", + "rev": "a0a69be4b5ee63f1b5e75887a406e9194012b492", "type": "github" } }, @@ -9586,6 +13927,149 @@ } }, "nixpkgs-latest_30": { + "locked": { + "lastModified": 1663696179, + "narHash": "sha256-vjsfJKxW+z2t2RrYJ9gs71m48kX97+p+fpCHVmH3xxc=", + "owner": "NixOS", + "repo": "nixpkgs", + "rev": "d4717ad12898f9c36f9b9538da0ca9df175ee05e", + "type": "github" + }, + "original": { + "owner": "NixOS", + "repo": "nixpkgs", + "type": "github" + } + }, + "nixpkgs-latest_31": { + "locked": { + "lastModified": 1653918805, + "narHash": "sha256-6ahwAnBNGgqSNSn/6RnsxrlFi+fkA+RyT6o/5S1915o=", + "owner": "NixOS", + "repo": "nixpkgs", + "rev": "a0a69be4b5ee63f1b5e75887a406e9194012b492", + "type": "github" + }, + "original": { + "owner": "NixOS", + "repo": "nixpkgs", + "rev": "a0a69be4b5ee63f1b5e75887a406e9194012b492", + "type": "github" + } + }, + "nixpkgs-latest_32": { + "locked": { + "lastModified": 1653918805, + "narHash": "sha256-6ahwAnBNGgqSNSn/6RnsxrlFi+fkA+RyT6o/5S1915o=", + "owner": "NixOS", + "repo": "nixpkgs", + "rev": "a0a69be4b5ee63f1b5e75887a406e9194012b492", + "type": "github" + }, + "original": { + "owner": "NixOS", + "repo": "nixpkgs", + "rev": "a0a69be4b5ee63f1b5e75887a406e9194012b492", + "type": "github" + } + }, + "nixpkgs-latest_33": { + "locked": { + "lastModified": 1653918805, + "narHash": "sha256-6ahwAnBNGgqSNSn/6RnsxrlFi+fkA+RyT6o/5S1915o=", + "owner": "NixOS", + "repo": "nixpkgs", + "rev": "a0a69be4b5ee63f1b5e75887a406e9194012b492", + "type": "github" + }, + "original": { + "owner": "NixOS", + "repo": "nixpkgs", + "rev": "a0a69be4b5ee63f1b5e75887a406e9194012b492", + "type": "github" + } + }, + "nixpkgs-latest_34": { + "locked": { + "lastModified": 1653918805, + "narHash": "sha256-6ahwAnBNGgqSNSn/6RnsxrlFi+fkA+RyT6o/5S1915o=", + "owner": "NixOS", + "repo": "nixpkgs", + "rev": "a0a69be4b5ee63f1b5e75887a406e9194012b492", + "type": "github" + }, + "original": { + "owner": "NixOS", + "repo": "nixpkgs", + "rev": "a0a69be4b5ee63f1b5e75887a406e9194012b492", + "type": "github" + } + }, + "nixpkgs-latest_35": { + "locked": { + "lastModified": 1653918805, + "narHash": "sha256-6ahwAnBNGgqSNSn/6RnsxrlFi+fkA+RyT6o/5S1915o=", + "owner": "NixOS", + "repo": "nixpkgs", + "rev": "a0a69be4b5ee63f1b5e75887a406e9194012b492", + "type": "github" + }, + "original": { + "owner": "NixOS", + "repo": "nixpkgs", + "rev": "a0a69be4b5ee63f1b5e75887a406e9194012b492", + "type": "github" + } + }, + "nixpkgs-latest_36": { + "locked": { + "lastModified": 1659622790, + "narHash": "sha256-fYelfx2ScXVprcivGPif+hi9cOZPt3/4wV5rC3AwZDs=", + "owner": "NixOS", + "repo": "nixpkgs", + "rev": "cf63df0364f67848083ff75bc8ac9b7ca7aa5a01", + "type": "github" + }, + "original": { + "owner": "NixOS", + "repo": "nixpkgs", + "rev": "cf63df0364f67848083ff75bc8ac9b7ca7aa5a01", + "type": "github" + } + }, + "nixpkgs-latest_37": { + "locked": { + "lastModified": 1653918805, + "narHash": "sha256-6ahwAnBNGgqSNSn/6RnsxrlFi+fkA+RyT6o/5S1915o=", + "owner": "NixOS", + "repo": "nixpkgs", + "rev": "a0a69be4b5ee63f1b5e75887a406e9194012b492", + "type": "github" + }, + "original": { + "owner": "NixOS", + "repo": "nixpkgs", + "rev": "a0a69be4b5ee63f1b5e75887a406e9194012b492", + "type": "github" + } + }, + "nixpkgs-latest_38": { + "locked": { + "lastModified": 1659622790, + "narHash": "sha256-fYelfx2ScXVprcivGPif+hi9cOZPt3/4wV5rC3AwZDs=", + "owner": "NixOS", + "repo": "nixpkgs", + "rev": "cf63df0364f67848083ff75bc8ac9b7ca7aa5a01", + "type": "github" + }, + "original": { + "owner": "NixOS", + "repo": "nixpkgs", + "rev": "cf63df0364f67848083ff75bc8ac9b7ca7aa5a01", + "type": "github" + } + }, + "nixpkgs-latest_39": { "locked": { "lastModified": 1653918805, "narHash": "sha256-6ahwAnBNGgqSNSn/6RnsxrlFi+fkA+RyT6o/5S1915o=", @@ -9617,6 +14101,38 @@ "type": "github" } }, + "nixpkgs-latest_40": { + "locked": { + "lastModified": 1653918805, + "narHash": "sha256-6ahwAnBNGgqSNSn/6RnsxrlFi+fkA+RyT6o/5S1915o=", + "owner": "NixOS", + "repo": "nixpkgs", + "rev": "a0a69be4b5ee63f1b5e75887a406e9194012b492", + "type": "github" + }, + "original": { + "owner": "NixOS", + "repo": "nixpkgs", + "rev": "a0a69be4b5ee63f1b5e75887a406e9194012b492", + "type": "github" + } + }, + "nixpkgs-latest_41": { + "locked": { + "lastModified": 1653918805, + "narHash": "sha256-6ahwAnBNGgqSNSn/6RnsxrlFi+fkA+RyT6o/5S1915o=", + "owner": "NixOS", + "repo": "nixpkgs", + "rev": "a0a69be4b5ee63f1b5e75887a406e9194012b492", + "type": "github" + }, + "original": { + "owner": "NixOS", + "repo": "nixpkgs", + "rev": "a0a69be4b5ee63f1b5e75887a406e9194012b492", + "type": "github" + } + }, "nixpkgs-latest_5": { "locked": { "lastModified": 1653918805, @@ -9683,17 +14199,16 @@ }, "nixpkgs-latest_9": { "locked": { - "lastModified": 1659622790, - "narHash": "sha256-fYelfx2ScXVprcivGPif+hi9cOZPt3/4wV5rC3AwZDs=", + "lastModified": 1663696179, + "narHash": "sha256-vjsfJKxW+z2t2RrYJ9gs71m48kX97+p+fpCHVmH3xxc=", "owner": "NixOS", "repo": "nixpkgs", - "rev": "cf63df0364f67848083ff75bc8ac9b7ca7aa5a01", + "rev": "d4717ad12898f9c36f9b9538da0ca9df175ee05e", "type": "github" }, "original": { "owner": "NixOS", "repo": "nixpkgs", - "rev": "cf63df0364f67848083ff75bc8ac9b7ca7aa5a01", "type": "github" } }, @@ -9802,6 +14317,66 @@ "type": "indirect" } }, + "nixpkgs-regression_16": { + "locked": { + "lastModified": 1643052045, + "narHash": "sha256-uGJ0VXIhWKGXxkeNnq4TvV3CIOkUJ3PAoLZ3HMzNVMw=", + "owner": "NixOS", + "repo": "nixpkgs", + "rev": "215d4d0fd80ca5163643b03a33fde804a29cc1e2", + "type": "github" + }, + "original": { + "id": "nixpkgs", + "rev": "215d4d0fd80ca5163643b03a33fde804a29cc1e2", + "type": "indirect" + } + }, + "nixpkgs-regression_17": { + "locked": { + "lastModified": 1643052045, + "narHash": "sha256-uGJ0VXIhWKGXxkeNnq4TvV3CIOkUJ3PAoLZ3HMzNVMw=", + "owner": "NixOS", + "repo": "nixpkgs", + "rev": "215d4d0fd80ca5163643b03a33fde804a29cc1e2", + "type": "github" + }, + "original": { + "id": "nixpkgs", + "rev": "215d4d0fd80ca5163643b03a33fde804a29cc1e2", + "type": "indirect" + } + }, + "nixpkgs-regression_18": { + "locked": { + "lastModified": 1643052045, + "narHash": "sha256-uGJ0VXIhWKGXxkeNnq4TvV3CIOkUJ3PAoLZ3HMzNVMw=", + "owner": "NixOS", + "repo": "nixpkgs", + "rev": "215d4d0fd80ca5163643b03a33fde804a29cc1e2", + "type": "github" + }, + "original": { + "id": "nixpkgs", + "rev": "215d4d0fd80ca5163643b03a33fde804a29cc1e2", + "type": "indirect" + } + }, + "nixpkgs-regression_19": { + "locked": { + "lastModified": 1643052045, + "narHash": "sha256-uGJ0VXIhWKGXxkeNnq4TvV3CIOkUJ3PAoLZ3HMzNVMw=", + "owner": "NixOS", + "repo": "nixpkgs", + "rev": "215d4d0fd80ca5163643b03a33fde804a29cc1e2", + "type": "github" + }, + "original": { + "id": "nixpkgs", + "rev": "215d4d0fd80ca5163643b03a33fde804a29cc1e2", + "type": "indirect" + } + }, "nixpkgs-regression_2": { "locked": { "lastModified": 1643052045, @@ -9817,6 +14392,51 @@ "type": "indirect" } }, + "nixpkgs-regression_20": { + "locked": { + "lastModified": 1643052045, + "narHash": "sha256-uGJ0VXIhWKGXxkeNnq4TvV3CIOkUJ3PAoLZ3HMzNVMw=", + "owner": "NixOS", + "repo": "nixpkgs", + "rev": "215d4d0fd80ca5163643b03a33fde804a29cc1e2", + "type": "github" + }, + "original": { + "id": "nixpkgs", + "rev": "215d4d0fd80ca5163643b03a33fde804a29cc1e2", + "type": "indirect" + } + }, + "nixpkgs-regression_21": { + "locked": { + "lastModified": 1643052045, + "narHash": "sha256-uGJ0VXIhWKGXxkeNnq4TvV3CIOkUJ3PAoLZ3HMzNVMw=", + "owner": "NixOS", + "repo": "nixpkgs", + "rev": "215d4d0fd80ca5163643b03a33fde804a29cc1e2", + "type": "github" + }, + "original": { + "id": "nixpkgs", + "rev": "215d4d0fd80ca5163643b03a33fde804a29cc1e2", + "type": "indirect" + } + }, + "nixpkgs-regression_22": { + "locked": { + "lastModified": 1643052045, + "narHash": "sha256-uGJ0VXIhWKGXxkeNnq4TvV3CIOkUJ3PAoLZ3HMzNVMw=", + "owner": "NixOS", + "repo": "nixpkgs", + "rev": "215d4d0fd80ca5163643b03a33fde804a29cc1e2", + "type": "github" + }, + "original": { + "id": "nixpkgs", + "rev": "215d4d0fd80ca5163643b03a33fde804a29cc1e2", + "type": "indirect" + } + }, "nixpkgs-regression_3": { "locked": { "lastModified": 1643052045, @@ -10034,6 +14654,70 @@ "type": "github" } }, + "nixpkgs-unstable_16": { + "locked": { + "lastModified": 1648219316, + "narHash": "sha256-Ctij+dOi0ZZIfX5eMhgwugfvB+WZSrvVNAyAuANOsnQ=", + "owner": "NixOS", + "repo": "nixpkgs", + "rev": "30d3d79b7d3607d56546dd2a6b49e156ba0ec634", + "type": "github" + }, + "original": { + "owner": "NixOS", + "ref": "nixpkgs-unstable", + "repo": "nixpkgs", + "type": "github" + } + }, + "nixpkgs-unstable_17": { + "locked": { + "lastModified": 1648219316, + "narHash": "sha256-Ctij+dOi0ZZIfX5eMhgwugfvB+WZSrvVNAyAuANOsnQ=", + "owner": "NixOS", + "repo": "nixpkgs", + "rev": "30d3d79b7d3607d56546dd2a6b49e156ba0ec634", + "type": "github" + }, + "original": { + "owner": "NixOS", + "ref": "nixpkgs-unstable", + "repo": "nixpkgs", + "type": "github" + } + }, + "nixpkgs-unstable_18": { + "locked": { + "lastModified": 1648219316, + "narHash": "sha256-Ctij+dOi0ZZIfX5eMhgwugfvB+WZSrvVNAyAuANOsnQ=", + "owner": "NixOS", + "repo": "nixpkgs", + "rev": "30d3d79b7d3607d56546dd2a6b49e156ba0ec634", + "type": "github" + }, + "original": { + "owner": "NixOS", + "ref": "nixpkgs-unstable", + "repo": "nixpkgs", + "type": "github" + } + }, + "nixpkgs-unstable_19": { + "locked": { + "lastModified": 1648219316, + "narHash": "sha256-Ctij+dOi0ZZIfX5eMhgwugfvB+WZSrvVNAyAuANOsnQ=", + "owner": "NixOS", + "repo": "nixpkgs", + "rev": "30d3d79b7d3607d56546dd2a6b49e156ba0ec634", + "type": "github" + }, + "original": { + "owner": "NixOS", + "ref": "nixpkgs-unstable", + "repo": "nixpkgs", + "type": "github" + } + }, "nixpkgs-unstable_2": { "locked": { "lastModified": 1648219316, @@ -10050,6 +14734,54 @@ "type": "github" } }, + "nixpkgs-unstable_20": { + "locked": { + "lastModified": 1648219316, + "narHash": "sha256-Ctij+dOi0ZZIfX5eMhgwugfvB+WZSrvVNAyAuANOsnQ=", + "owner": "NixOS", + "repo": "nixpkgs", + "rev": "30d3d79b7d3607d56546dd2a6b49e156ba0ec634", + "type": "github" + }, + "original": { + "owner": "NixOS", + "ref": "nixpkgs-unstable", + "repo": "nixpkgs", + "type": "github" + } + }, + "nixpkgs-unstable_21": { + "locked": { + "lastModified": 1648219316, + "narHash": "sha256-Ctij+dOi0ZZIfX5eMhgwugfvB+WZSrvVNAyAuANOsnQ=", + "owner": "NixOS", + "repo": "nixpkgs", + "rev": "30d3d79b7d3607d56546dd2a6b49e156ba0ec634", + "type": "github" + }, + "original": { + "owner": "NixOS", + "ref": "nixpkgs-unstable", + "repo": "nixpkgs", + "type": "github" + } + }, + "nixpkgs-unstable_22": { + "locked": { + "lastModified": 1648219316, + "narHash": "sha256-Ctij+dOi0ZZIfX5eMhgwugfvB+WZSrvVNAyAuANOsnQ=", + "owner": "NixOS", + "repo": "nixpkgs", + "rev": "30d3d79b7d3607d56546dd2a6b49e156ba0ec634", + "type": "github" + }, + "original": { + "owner": "NixOS", + "ref": "nixpkgs-unstable", + "repo": "nixpkgs", + "type": "github" + } + }, "nixpkgs-unstable_3": { "locked": { "lastModified": 1648219316, @@ -10288,33 +15020,30 @@ }, "nixpkgs_18": { "locked": { - "lastModified": 1632864508, - "narHash": "sha256-d127FIvGR41XbVRDPVvozUPQ/uRHbHwvfyKHwEt5xFM=", + "lastModified": 1657292830, + "narHash": "sha256-ldfVSTveWceDCmW6gf3B4kR6vwmz/XS80y5wsLLHFJU=", "owner": "NixOS", "repo": "nixpkgs", - "rev": "82891b5e2c2359d7e58d08849e4c89511ab94234", + "rev": "334ec8b503c3981e37a04b817a70e8d026ea9e84", "type": "github" }, "original": { "id": "nixpkgs", - "ref": "nixos-21.05-small", "type": "indirect" } }, "nixpkgs_19": { "locked": { - "lastModified": 1647297614, - "narHash": "sha256-ulGq3W5XsrBMU/u5k9d4oPy65pQTkunR4HKKtTq0RwY=", + "lastModified": 1657292830, + "narHash": "sha256-ldfVSTveWceDCmW6gf3B4kR6vwmz/XS80y5wsLLHFJU=", "owner": "NixOS", "repo": "nixpkgs", - "rev": "73ad5f9e147c0d2a2061f1d4bd91e05078dc0b58", + "rev": "334ec8b503c3981e37a04b817a70e8d026ea9e84", "type": "github" }, "original": { - "owner": "NixOS", - "ref": "nixos-unstable", - "repo": "nixpkgs", - "type": "github" + "id": "nixpkgs", + "type": "indirect" } }, "nixpkgs_2": { @@ -10332,85 +15061,54 @@ } }, "nixpkgs_20": { - "flake": false, "locked": { - "lastModified": 1645493675, - "narHash": "sha256-9xundbZQbhFodsQRh6QMN1GeSXfo3y/5NL0CZcJULz0=", + "lastModified": 1632864508, + "narHash": "sha256-d127FIvGR41XbVRDPVvozUPQ/uRHbHwvfyKHwEt5xFM=", "owner": "NixOS", "repo": "nixpkgs", - "rev": "74b10859829153d5c5d50f7c77b86763759e8654", + "rev": "82891b5e2c2359d7e58d08849e4c89511ab94234", "type": "github" }, "original": { - "owner": "NixOS", - "ref": "nixpkgs-unstable", - "repo": "nixpkgs", - "type": "github" + "id": "nixpkgs", + "ref": "nixos-21.05-small", + "type": "indirect" } }, "nixpkgs_21": { "locked": { - "lastModified": 1657292830, - "narHash": "sha256-ldfVSTveWceDCmW6gf3B4kR6vwmz/XS80y5wsLLHFJU=", + "lastModified": 1647297614, + "narHash": "sha256-ulGq3W5XsrBMU/u5k9d4oPy65pQTkunR4HKKtTq0RwY=", "owner": "NixOS", "repo": "nixpkgs", - "rev": "334ec8b503c3981e37a04b817a70e8d026ea9e84", + "rev": "73ad5f9e147c0d2a2061f1d4bd91e05078dc0b58", "type": "github" }, "original": { - "id": "nixpkgs", - "type": "indirect" + "owner": "NixOS", + "ref": "nixos-unstable", + "repo": "nixpkgs", + "type": "github" } }, "nixpkgs_22": { + "flake": false, "locked": { - "lastModified": 1632864508, - "narHash": "sha256-d127FIvGR41XbVRDPVvozUPQ/uRHbHwvfyKHwEt5xFM=", + "lastModified": 1645493675, + "narHash": "sha256-9xundbZQbhFodsQRh6QMN1GeSXfo3y/5NL0CZcJULz0=", "owner": "NixOS", "repo": "nixpkgs", - "rev": "82891b5e2c2359d7e58d08849e4c89511ab94234", + "rev": "74b10859829153d5c5d50f7c77b86763759e8654", "type": "github" }, "original": { - "id": "nixpkgs", - "ref": "nixos-21.05-small", - "type": "indirect" + "owner": "NixOS", + "ref": "nixpkgs-unstable", + "repo": "nixpkgs", + "type": "github" } }, "nixpkgs_23": { - "locked": { - "lastModified": 1647297614, - "narHash": "sha256-ulGq3W5XsrBMU/u5k9d4oPy65pQTkunR4HKKtTq0RwY=", - "owner": "NixOS", - "repo": "nixpkgs", - "rev": "73ad5f9e147c0d2a2061f1d4bd91e05078dc0b58", - "type": "github" - }, - "original": { - "owner": "NixOS", - "ref": "nixos-unstable", - "repo": "nixpkgs", - "type": "github" - } - }, - "nixpkgs_24": { - "flake": false, - "locked": { - "lastModified": 1645493675, - "narHash": "sha256-9xundbZQbhFodsQRh6QMN1GeSXfo3y/5NL0CZcJULz0=", - "owner": "NixOS", - "repo": "nixpkgs", - "rev": "74b10859829153d5c5d50f7c77b86763759e8654", - "type": "github" - }, - "original": { - "owner": "NixOS", - "ref": "nixpkgs-unstable", - "repo": "nixpkgs", - "type": "github" - } - }, - "nixpkgs_25": { "locked": { "lastModified": 1657292830, "narHash": "sha256-ldfVSTveWceDCmW6gf3B4kR6vwmz/XS80y5wsLLHFJU=", @@ -10424,7 +15122,7 @@ "type": "indirect" } }, - "nixpkgs_26": { + "nixpkgs_24": { "locked": { "lastModified": 1632864508, "narHash": "sha256-d127FIvGR41XbVRDPVvozUPQ/uRHbHwvfyKHwEt5xFM=", @@ -10439,7 +15137,7 @@ "type": "indirect" } }, - "nixpkgs_27": { + "nixpkgs_25": { "locked": { "lastModified": 1647297614, "narHash": "sha256-ulGq3W5XsrBMU/u5k9d4oPy65pQTkunR4HKKtTq0RwY=", @@ -10455,7 +15153,7 @@ "type": "github" } }, - "nixpkgs_28": { + "nixpkgs_26": { "flake": false, "locked": { "lastModified": 1645493675, @@ -10472,7 +15170,7 @@ "type": "github" } }, - "nixpkgs_29": { + "nixpkgs_27": { "locked": { "lastModified": 1657292830, "narHash": "sha256-ldfVSTveWceDCmW6gf3B4kR6vwmz/XS80y5wsLLHFJU=", @@ -10486,6 +15184,37 @@ "type": "indirect" } }, + "nixpkgs_28": { + "locked": { + "lastModified": 1632864508, + "narHash": "sha256-d127FIvGR41XbVRDPVvozUPQ/uRHbHwvfyKHwEt5xFM=", + "owner": "NixOS", + "repo": "nixpkgs", + "rev": "82891b5e2c2359d7e58d08849e4c89511ab94234", + "type": "github" + }, + "original": { + "id": "nixpkgs", + "ref": "nixos-21.05-small", + "type": "indirect" + } + }, + "nixpkgs_29": { + "locked": { + "lastModified": 1647297614, + "narHash": "sha256-ulGq3W5XsrBMU/u5k9d4oPy65pQTkunR4HKKtTq0RwY=", + "owner": "NixOS", + "repo": "nixpkgs", + "rev": "73ad5f9e147c0d2a2061f1d4bd91e05078dc0b58", + "type": "github" + }, + "original": { + "owner": "NixOS", + "ref": "nixos-unstable", + "repo": "nixpkgs", + "type": "github" + } + }, "nixpkgs_3": { "locked": { "lastModified": 1632864508, @@ -10502,37 +15231,6 @@ } }, "nixpkgs_30": { - "locked": { - "lastModified": 1632864508, - "narHash": "sha256-d127FIvGR41XbVRDPVvozUPQ/uRHbHwvfyKHwEt5xFM=", - "owner": "NixOS", - "repo": "nixpkgs", - "rev": "82891b5e2c2359d7e58d08849e4c89511ab94234", - "type": "github" - }, - "original": { - "id": "nixpkgs", - "ref": "nixos-21.05-small", - "type": "indirect" - } - }, - "nixpkgs_31": { - "locked": { - "lastModified": 1647297614, - "narHash": "sha256-ulGq3W5XsrBMU/u5k9d4oPy65pQTkunR4HKKtTq0RwY=", - "owner": "NixOS", - "repo": "nixpkgs", - "rev": "73ad5f9e147c0d2a2061f1d4bd91e05078dc0b58", - "type": "github" - }, - "original": { - "owner": "NixOS", - "ref": "nixos-unstable", - "repo": "nixpkgs", - "type": "github" - } - }, - "nixpkgs_32": { "flake": false, "locked": { "lastModified": 1645493675, @@ -10549,7 +15247,7 @@ "type": "github" } }, - "nixpkgs_33": { + "nixpkgs_31": { "locked": { "lastModified": 1657292830, "narHash": "sha256-ldfVSTveWceDCmW6gf3B4kR6vwmz/XS80y5wsLLHFJU=", @@ -10563,20 +15261,54 @@ "type": "indirect" } }, - "nixpkgs_34": { + "nixpkgs_32": { "locked": { - "lastModified": 1657292830, - "narHash": "sha256-ldfVSTveWceDCmW6gf3B4kR6vwmz/XS80y5wsLLHFJU=", + "lastModified": 1632864508, + "narHash": "sha256-d127FIvGR41XbVRDPVvozUPQ/uRHbHwvfyKHwEt5xFM=", "owner": "NixOS", "repo": "nixpkgs", - "rev": "334ec8b503c3981e37a04b817a70e8d026ea9e84", + "rev": "82891b5e2c2359d7e58d08849e4c89511ab94234", "type": "github" }, "original": { "id": "nixpkgs", + "ref": "nixos-21.05-small", "type": "indirect" } }, + "nixpkgs_33": { + "locked": { + "lastModified": 1647297614, + "narHash": "sha256-ulGq3W5XsrBMU/u5k9d4oPy65pQTkunR4HKKtTq0RwY=", + "owner": "NixOS", + "repo": "nixpkgs", + "rev": "73ad5f9e147c0d2a2061f1d4bd91e05078dc0b58", + "type": "github" + }, + "original": { + "owner": "NixOS", + "ref": "nixos-unstable", + "repo": "nixpkgs", + "type": "github" + } + }, + "nixpkgs_34": { + "flake": false, + "locked": { + "lastModified": 1645493675, + "narHash": "sha256-9xundbZQbhFodsQRh6QMN1GeSXfo3y/5NL0CZcJULz0=", + "owner": "NixOS", + "repo": "nixpkgs", + "rev": "74b10859829153d5c5d50f7c77b86763759e8654", + "type": "github" + }, + "original": { + "owner": "NixOS", + "ref": "nixpkgs-unstable", + "repo": "nixpkgs", + "type": "github" + } + }, "nixpkgs_35": { "locked": { "lastModified": 1632864508, @@ -10705,73 +15437,42 @@ }, "nixpkgs_42": { "locked": { - "lastModified": 1657292830, - "narHash": "sha256-ldfVSTveWceDCmW6gf3B4kR6vwmz/XS80y5wsLLHFJU=", + "lastModified": 1632864508, + "narHash": "sha256-d127FIvGR41XbVRDPVvozUPQ/uRHbHwvfyKHwEt5xFM=", "owner": "NixOS", "repo": "nixpkgs", - "rev": "334ec8b503c3981e37a04b817a70e8d026ea9e84", + "rev": "82891b5e2c2359d7e58d08849e4c89511ab94234", "type": "github" }, "original": { "id": "nixpkgs", + "ref": "nixos-21.05-small", "type": "indirect" } }, "nixpkgs_43": { "locked": { - "lastModified": 1632864508, - "narHash": "sha256-d127FIvGR41XbVRDPVvozUPQ/uRHbHwvfyKHwEt5xFM=", - "owner": "NixOS", + "lastModified": 1652885393, + "narHash": "sha256-YIgvvlk4iQ1Hi7KD9o5gsojc+ApB+jiH1d5stK8uXiw=", + "owner": "nixos", "repo": "nixpkgs", - "rev": "82891b5e2c2359d7e58d08849e4c89511ab94234", + "rev": "48037fd90426e44e4bf03e6479e88a11453b9b66", "type": "github" }, "original": { - "id": "nixpkgs", - "ref": "nixos-21.05-small", - "type": "indirect" + "owner": "nixos", + "ref": "nixos-unstable", + "repo": "nixpkgs", + "type": "github" } }, "nixpkgs_44": { "locked": { - "lastModified": 1647297614, - "narHash": "sha256-ulGq3W5XsrBMU/u5k9d4oPy65pQTkunR4HKKtTq0RwY=", + "lastModified": 1653117584, + "narHash": "sha256-5uUrHeHBIaySBTrRExcCoW8fBBYVSDjDYDU5A6iOl+k=", "owner": "NixOS", "repo": "nixpkgs", - "rev": "73ad5f9e147c0d2a2061f1d4bd91e05078dc0b58", - "type": "github" - }, - "original": { - "owner": "NixOS", - "ref": "nixos-unstable", - "repo": "nixpkgs", - "type": "github" - } - }, - "nixpkgs_45": { - "flake": false, - "locked": { - "lastModified": 1645493675, - "narHash": "sha256-9xundbZQbhFodsQRh6QMN1GeSXfo3y/5NL0CZcJULz0=", - "owner": "NixOS", - "repo": "nixpkgs", - "rev": "74b10859829153d5c5d50f7c77b86763759e8654", - "type": "github" - }, - "original": { - "owner": "NixOS", - "ref": "nixpkgs-unstable", - "repo": "nixpkgs", - "type": "github" - } - }, - "nixpkgs_46": { - "locked": { - "lastModified": 1657292830, - "narHash": "sha256-ldfVSTveWceDCmW6gf3B4kR6vwmz/XS80y5wsLLHFJU=", - "owner": "NixOS", - "repo": "nixpkgs", - "rev": "334ec8b503c3981e37a04b817a70e8d026ea9e84", + "rev": "f4dfed73ee886b115a99e5b85fdfbeb683290d83", "type": "github" }, "original": { @@ -10779,7 +15480,7 @@ "type": "indirect" } }, - "nixpkgs_47": { + "nixpkgs_45": { "locked": { "lastModified": 1632864508, "narHash": "sha256-d127FIvGR41XbVRDPVvozUPQ/uRHbHwvfyKHwEt5xFM=", @@ -10794,7 +15495,7 @@ "type": "indirect" } }, - "nixpkgs_48": { + "nixpkgs_46": { "locked": { "lastModified": 1647297614, "narHash": "sha256-ulGq3W5XsrBMU/u5k9d4oPy65pQTkunR4HKKtTq0RwY=", @@ -10810,7 +15511,7 @@ "type": "github" } }, - "nixpkgs_49": { + "nixpkgs_47": { "flake": false, "locked": { "lastModified": 1645493675, @@ -10827,6 +15528,35 @@ "type": "github" } }, + "nixpkgs_48": { + "locked": { + "lastModified": 1645655918, + "narHash": "sha256-ZfbEFRW7o237+A1P7eTKhXje435FCAoe0blj2n20Was=", + "owner": "nixos", + "repo": "nixpkgs", + "rev": "77a7a4197740213879b9a1d2e1788c6c8ade4274", + "type": "github" + }, + "original": { + "id": "nixpkgs", + "type": "indirect" + } + }, + "nixpkgs_49": { + "locked": { + "lastModified": 1632864508, + "narHash": "sha256-d127FIvGR41XbVRDPVvozUPQ/uRHbHwvfyKHwEt5xFM=", + "owner": "NixOS", + "repo": "nixpkgs", + "rev": "82891b5e2c2359d7e58d08849e4c89511ab94234", + "type": "github" + }, + "original": { + "id": "nixpkgs", + "ref": "nixos-21.05-small", + "type": "indirect" + } + }, "nixpkgs_5": { "flake": false, "locked": { @@ -10845,21 +15575,6 @@ } }, "nixpkgs_50": { - "locked": { - "lastModified": 1632864508, - "narHash": "sha256-d127FIvGR41XbVRDPVvozUPQ/uRHbHwvfyKHwEt5xFM=", - "owner": "NixOS", - "repo": "nixpkgs", - "rev": "82891b5e2c2359d7e58d08849e4c89511ab94234", - "type": "github" - }, - "original": { - "id": "nixpkgs", - "ref": "nixos-21.05-small", - "type": "indirect" - } - }, - "nixpkgs_51": { "locked": { "lastModified": 1647297614, "narHash": "sha256-ulGq3W5XsrBMU/u5k9d4oPy65pQTkunR4HKKtTq0RwY=", @@ -10875,24 +15590,24 @@ "type": "github" } }, + "nixpkgs_51": { + "flake": false, + "locked": { + "lastModified": 1645493675, + "narHash": "sha256-9xundbZQbhFodsQRh6QMN1GeSXfo3y/5NL0CZcJULz0=", + "owner": "NixOS", + "repo": "nixpkgs", + "rev": "74b10859829153d5c5d50f7c77b86763759e8654", + "type": "github" + }, + "original": { + "owner": "NixOS", + "ref": "nixpkgs-unstable", + "repo": "nixpkgs", + "type": "github" + } + }, "nixpkgs_52": { - "flake": false, - "locked": { - "lastModified": 1645493675, - "narHash": "sha256-9xundbZQbhFodsQRh6QMN1GeSXfo3y/5NL0CZcJULz0=", - "owner": "NixOS", - "repo": "nixpkgs", - "rev": "74b10859829153d5c5d50f7c77b86763759e8654", - "type": "github" - }, - "original": { - "owner": "NixOS", - "ref": "nixpkgs-unstable", - "repo": "nixpkgs", - "type": "github" - } - }, - "nixpkgs_53": { "locked": { "lastModified": 1657292830, "narHash": "sha256-ldfVSTveWceDCmW6gf3B4kR6vwmz/XS80y5wsLLHFJU=", @@ -10906,22 +15621,22 @@ "type": "indirect" } }, + "nixpkgs_53": { + "locked": { + "lastModified": 1632864508, + "narHash": "sha256-d127FIvGR41XbVRDPVvozUPQ/uRHbHwvfyKHwEt5xFM=", + "owner": "NixOS", + "repo": "nixpkgs", + "rev": "82891b5e2c2359d7e58d08849e4c89511ab94234", + "type": "github" + }, + "original": { + "id": "nixpkgs", + "ref": "nixos-21.05-small", + "type": "indirect" + } + }, "nixpkgs_54": { - "locked": { - "lastModified": 1632864508, - "narHash": "sha256-d127FIvGR41XbVRDPVvozUPQ/uRHbHwvfyKHwEt5xFM=", - "owner": "NixOS", - "repo": "nixpkgs", - "rev": "82891b5e2c2359d7e58d08849e4c89511ab94234", - "type": "github" - }, - "original": { - "id": "nixpkgs", - "ref": "nixos-21.05-small", - "type": "indirect" - } - }, - "nixpkgs_55": { "locked": { "lastModified": 1647297614, "narHash": "sha256-ulGq3W5XsrBMU/u5k9d4oPy65pQTkunR4HKKtTq0RwY=", @@ -10937,7 +15652,7 @@ "type": "github" } }, - "nixpkgs_56": { + "nixpkgs_55": { "flake": false, "locked": { "lastModified": 1645493675, @@ -10954,7 +15669,7 @@ "type": "github" } }, - "nixpkgs_57": { + "nixpkgs_56": { "locked": { "lastModified": 1657292830, "narHash": "sha256-ldfVSTveWceDCmW6gf3B4kR6vwmz/XS80y5wsLLHFJU=", @@ -10968,7 +15683,7 @@ "type": "indirect" } }, - "nixpkgs_58": { + "nixpkgs_57": { "locked": { "lastModified": 1632864508, "narHash": "sha256-d127FIvGR41XbVRDPVvozUPQ/uRHbHwvfyKHwEt5xFM=", @@ -10983,7 +15698,7 @@ "type": "indirect" } }, - "nixpkgs_59": { + "nixpkgs_58": { "locked": { "lastModified": 1647297614, "narHash": "sha256-ulGq3W5XsrBMU/u5k9d4oPy65pQTkunR4HKKtTq0RwY=", @@ -10999,6 +15714,23 @@ "type": "github" } }, + "nixpkgs_59": { + "flake": false, + "locked": { + "lastModified": 1645493675, + "narHash": "sha256-9xundbZQbhFodsQRh6QMN1GeSXfo3y/5NL0CZcJULz0=", + "owner": "NixOS", + "repo": "nixpkgs", + "rev": "74b10859829153d5c5d50f7c77b86763759e8654", + "type": "github" + }, + "original": { + "owner": "NixOS", + "ref": "nixpkgs-unstable", + "repo": "nixpkgs", + "type": "github" + } + }, "nixpkgs_6": { "locked": { "lastModified": 1657292830, @@ -11014,6 +15746,51 @@ } }, "nixpkgs_60": { + "locked": { + "lastModified": 1657292830, + "narHash": "sha256-ldfVSTveWceDCmW6gf3B4kR6vwmz/XS80y5wsLLHFJU=", + "owner": "NixOS", + "repo": "nixpkgs", + "rev": "334ec8b503c3981e37a04b817a70e8d026ea9e84", + "type": "github" + }, + "original": { + "id": "nixpkgs", + "type": "indirect" + } + }, + "nixpkgs_61": { + "locked": { + "lastModified": 1632864508, + "narHash": "sha256-d127FIvGR41XbVRDPVvozUPQ/uRHbHwvfyKHwEt5xFM=", + "owner": "NixOS", + "repo": "nixpkgs", + "rev": "82891b5e2c2359d7e58d08849e4c89511ab94234", + "type": "github" + }, + "original": { + "id": "nixpkgs", + "ref": "nixos-21.05-small", + "type": "indirect" + } + }, + "nixpkgs_62": { + "locked": { + "lastModified": 1647297614, + "narHash": "sha256-ulGq3W5XsrBMU/u5k9d4oPy65pQTkunR4HKKtTq0RwY=", + "owner": "NixOS", + "repo": "nixpkgs", + "rev": "73ad5f9e147c0d2a2061f1d4bd91e05078dc0b58", + "type": "github" + }, + "original": { + "owner": "NixOS", + "ref": "nixos-unstable", + "repo": "nixpkgs", + "type": "github" + } + }, + "nixpkgs_63": { "flake": false, "locked": { "lastModified": 1645493675, @@ -11030,6 +15807,96 @@ "type": "github" } }, + "nixpkgs_64": { + "locked": { + "lastModified": 1657292830, + "narHash": "sha256-ldfVSTveWceDCmW6gf3B4kR6vwmz/XS80y5wsLLHFJU=", + "owner": "NixOS", + "repo": "nixpkgs", + "rev": "334ec8b503c3981e37a04b817a70e8d026ea9e84", + "type": "github" + }, + "original": { + "id": "nixpkgs", + "type": "indirect" + } + }, + "nixpkgs_65": { + "locked": { + "lastModified": 1657292830, + "narHash": "sha256-ldfVSTveWceDCmW6gf3B4kR6vwmz/XS80y5wsLLHFJU=", + "owner": "NixOS", + "repo": "nixpkgs", + "rev": "334ec8b503c3981e37a04b817a70e8d026ea9e84", + "type": "github" + }, + "original": { + "id": "nixpkgs", + "type": "indirect" + } + }, + "nixpkgs_66": { + "locked": { + "lastModified": 1632864508, + "narHash": "sha256-d127FIvGR41XbVRDPVvozUPQ/uRHbHwvfyKHwEt5xFM=", + "owner": "NixOS", + "repo": "nixpkgs", + "rev": "82891b5e2c2359d7e58d08849e4c89511ab94234", + "type": "github" + }, + "original": { + "id": "nixpkgs", + "ref": "nixos-21.05-small", + "type": "indirect" + } + }, + "nixpkgs_67": { + "locked": { + "lastModified": 1647297614, + "narHash": "sha256-ulGq3W5XsrBMU/u5k9d4oPy65pQTkunR4HKKtTq0RwY=", + "owner": "NixOS", + "repo": "nixpkgs", + "rev": "73ad5f9e147c0d2a2061f1d4bd91e05078dc0b58", + "type": "github" + }, + "original": { + "owner": "NixOS", + "ref": "nixos-unstable", + "repo": "nixpkgs", + "type": "github" + } + }, + "nixpkgs_68": { + "flake": false, + "locked": { + "lastModified": 1645493675, + "narHash": "sha256-9xundbZQbhFodsQRh6QMN1GeSXfo3y/5NL0CZcJULz0=", + "owner": "NixOS", + "repo": "nixpkgs", + "rev": "74b10859829153d5c5d50f7c77b86763759e8654", + "type": "github" + }, + "original": { + "owner": "NixOS", + "ref": "nixpkgs-unstable", + "repo": "nixpkgs", + "type": "github" + } + }, + "nixpkgs_69": { + "locked": { + "lastModified": 1657292830, + "narHash": "sha256-ldfVSTveWceDCmW6gf3B4kR6vwmz/XS80y5wsLLHFJU=", + "owner": "NixOS", + "repo": "nixpkgs", + "rev": "334ec8b503c3981e37a04b817a70e8d026ea9e84", + "type": "github" + }, + "original": { + "id": "nixpkgs", + "type": "indirect" + } + }, "nixpkgs_7": { "locked": { "lastModified": 1632864508, @@ -11045,6 +15912,161 @@ "type": "indirect" } }, + "nixpkgs_70": { + "locked": { + "lastModified": 1632864508, + "narHash": "sha256-d127FIvGR41XbVRDPVvozUPQ/uRHbHwvfyKHwEt5xFM=", + "owner": "NixOS", + "repo": "nixpkgs", + "rev": "82891b5e2c2359d7e58d08849e4c89511ab94234", + "type": "github" + }, + "original": { + "id": "nixpkgs", + "ref": "nixos-21.05-small", + "type": "indirect" + } + }, + "nixpkgs_71": { + "locked": { + "lastModified": 1647297614, + "narHash": "sha256-ulGq3W5XsrBMU/u5k9d4oPy65pQTkunR4HKKtTq0RwY=", + "owner": "NixOS", + "repo": "nixpkgs", + "rev": "73ad5f9e147c0d2a2061f1d4bd91e05078dc0b58", + "type": "github" + }, + "original": { + "owner": "NixOS", + "ref": "nixos-unstable", + "repo": "nixpkgs", + "type": "github" + } + }, + "nixpkgs_72": { + "flake": false, + "locked": { + "lastModified": 1645493675, + "narHash": "sha256-9xundbZQbhFodsQRh6QMN1GeSXfo3y/5NL0CZcJULz0=", + "owner": "NixOS", + "repo": "nixpkgs", + "rev": "74b10859829153d5c5d50f7c77b86763759e8654", + "type": "github" + }, + "original": { + "owner": "NixOS", + "ref": "nixpkgs-unstable", + "repo": "nixpkgs", + "type": "github" + } + }, + "nixpkgs_73": { + "locked": { + "lastModified": 1657292830, + "narHash": "sha256-ldfVSTveWceDCmW6gf3B4kR6vwmz/XS80y5wsLLHFJU=", + "owner": "NixOS", + "repo": "nixpkgs", + "rev": "334ec8b503c3981e37a04b817a70e8d026ea9e84", + "type": "github" + }, + "original": { + "id": "nixpkgs", + "type": "indirect" + } + }, + "nixpkgs_74": { + "locked": { + "lastModified": 1632864508, + "narHash": "sha256-d127FIvGR41XbVRDPVvozUPQ/uRHbHwvfyKHwEt5xFM=", + "owner": "NixOS", + "repo": "nixpkgs", + "rev": "82891b5e2c2359d7e58d08849e4c89511ab94234", + "type": "github" + }, + "original": { + "id": "nixpkgs", + "ref": "nixos-21.05-small", + "type": "indirect" + } + }, + "nixpkgs_75": { + "locked": { + "lastModified": 1647297614, + "narHash": "sha256-ulGq3W5XsrBMU/u5k9d4oPy65pQTkunR4HKKtTq0RwY=", + "owner": "NixOS", + "repo": "nixpkgs", + "rev": "73ad5f9e147c0d2a2061f1d4bd91e05078dc0b58", + "type": "github" + }, + "original": { + "owner": "NixOS", + "ref": "nixos-unstable", + "repo": "nixpkgs", + "type": "github" + } + }, + "nixpkgs_76": { + "flake": false, + "locked": { + "lastModified": 1645493675, + "narHash": "sha256-9xundbZQbhFodsQRh6QMN1GeSXfo3y/5NL0CZcJULz0=", + "owner": "NixOS", + "repo": "nixpkgs", + "rev": "74b10859829153d5c5d50f7c77b86763759e8654", + "type": "github" + }, + "original": { + "owner": "NixOS", + "ref": "nixpkgs-unstable", + "repo": "nixpkgs", + "type": "github" + } + }, + "nixpkgs_77": { + "locked": { + "lastModified": 1657292830, + "narHash": "sha256-ldfVSTveWceDCmW6gf3B4kR6vwmz/XS80y5wsLLHFJU=", + "owner": "NixOS", + "repo": "nixpkgs", + "rev": "334ec8b503c3981e37a04b817a70e8d026ea9e84", + "type": "github" + }, + "original": { + "id": "nixpkgs", + "type": "indirect" + } + }, + "nixpkgs_78": { + "locked": { + "lastModified": 1632864508, + "narHash": "sha256-d127FIvGR41XbVRDPVvozUPQ/uRHbHwvfyKHwEt5xFM=", + "owner": "NixOS", + "repo": "nixpkgs", + "rev": "82891b5e2c2359d7e58d08849e4c89511ab94234", + "type": "github" + }, + "original": { + "id": "nixpkgs", + "ref": "nixos-21.05-small", + "type": "indirect" + } + }, + "nixpkgs_79": { + "locked": { + "lastModified": 1647297614, + "narHash": "sha256-ulGq3W5XsrBMU/u5k9d4oPy65pQTkunR4HKKtTq0RwY=", + "owner": "NixOS", + "repo": "nixpkgs", + "rev": "73ad5f9e147c0d2a2061f1d4bd91e05078dc0b58", + "type": "github" + }, + "original": { + "owner": "NixOS", + "ref": "nixos-unstable", + "repo": "nixpkgs", + "type": "github" + } + }, "nixpkgs_8": { "locked": { "lastModified": 1647297614, @@ -11061,6 +16083,133 @@ "type": "github" } }, + "nixpkgs_80": { + "flake": false, + "locked": { + "lastModified": 1645493675, + "narHash": "sha256-9xundbZQbhFodsQRh6QMN1GeSXfo3y/5NL0CZcJULz0=", + "owner": "NixOS", + "repo": "nixpkgs", + "rev": "74b10859829153d5c5d50f7c77b86763759e8654", + "type": "github" + }, + "original": { + "owner": "NixOS", + "ref": "nixpkgs-unstable", + "repo": "nixpkgs", + "type": "github" + } + }, + "nixpkgs_81": { + "locked": { + "lastModified": 1632864508, + "narHash": "sha256-d127FIvGR41XbVRDPVvozUPQ/uRHbHwvfyKHwEt5xFM=", + "owner": "NixOS", + "repo": "nixpkgs", + "rev": "82891b5e2c2359d7e58d08849e4c89511ab94234", + "type": "github" + }, + "original": { + "id": "nixpkgs", + "ref": "nixos-21.05-small", + "type": "indirect" + } + }, + "nixpkgs_82": { + "locked": { + "lastModified": 1647297614, + "narHash": "sha256-ulGq3W5XsrBMU/u5k9d4oPy65pQTkunR4HKKtTq0RwY=", + "owner": "NixOS", + "repo": "nixpkgs", + "rev": "73ad5f9e147c0d2a2061f1d4bd91e05078dc0b58", + "type": "github" + }, + "original": { + "owner": "NixOS", + "ref": "nixos-unstable", + "repo": "nixpkgs", + "type": "github" + } + }, + "nixpkgs_83": { + "flake": false, + "locked": { + "lastModified": 1645493675, + "narHash": "sha256-9xundbZQbhFodsQRh6QMN1GeSXfo3y/5NL0CZcJULz0=", + "owner": "NixOS", + "repo": "nixpkgs", + "rev": "74b10859829153d5c5d50f7c77b86763759e8654", + "type": "github" + }, + "original": { + "owner": "NixOS", + "ref": "nixpkgs-unstable", + "repo": "nixpkgs", + "type": "github" + } + }, + "nixpkgs_84": { + "locked": { + "lastModified": 1657292830, + "narHash": "sha256-ldfVSTveWceDCmW6gf3B4kR6vwmz/XS80y5wsLLHFJU=", + "owner": "NixOS", + "repo": "nixpkgs", + "rev": "334ec8b503c3981e37a04b817a70e8d026ea9e84", + "type": "github" + }, + "original": { + "id": "nixpkgs", + "type": "indirect" + } + }, + "nixpkgs_85": { + "locked": { + "lastModified": 1632864508, + "narHash": "sha256-d127FIvGR41XbVRDPVvozUPQ/uRHbHwvfyKHwEt5xFM=", + "owner": "NixOS", + "repo": "nixpkgs", + "rev": "82891b5e2c2359d7e58d08849e4c89511ab94234", + "type": "github" + }, + "original": { + "id": "nixpkgs", + "ref": "nixos-21.05-small", + "type": "indirect" + } + }, + "nixpkgs_86": { + "locked": { + "lastModified": 1647297614, + "narHash": "sha256-ulGq3W5XsrBMU/u5k9d4oPy65pQTkunR4HKKtTq0RwY=", + "owner": "NixOS", + "repo": "nixpkgs", + "rev": "73ad5f9e147c0d2a2061f1d4bd91e05078dc0b58", + "type": "github" + }, + "original": { + "owner": "NixOS", + "ref": "nixos-unstable", + "repo": "nixpkgs", + "type": "github" + } + }, + "nixpkgs_87": { + "flake": false, + "locked": { + "lastModified": 1645493675, + "narHash": "sha256-9xundbZQbhFodsQRh6QMN1GeSXfo3y/5NL0CZcJULz0=", + "owner": "NixOS", + "repo": "nixpkgs", + "rev": "74b10859829153d5c5d50f7c77b86763759e8654", + "type": "github" + }, + "original": { + "owner": "NixOS", + "ref": "nixpkgs-unstable", + "repo": "nixpkgs", + "type": "github" + } + }, "nixpkgs_9": { "flake": false, "locked": { @@ -11197,6 +16346,74 @@ "type": "github" } }, + "old-ghc-nix_16": { + "flake": false, + "locked": { + "lastModified": 1631092763, + "narHash": "sha256-sIKgO+z7tj4lw3u6oBZxqIhDrzSkvpHtv0Kki+lh9Fg=", + "owner": "angerman", + "repo": "old-ghc-nix", + "rev": "af48a7a7353e418119b6dfe3cd1463a657f342b8", + "type": "github" + }, + "original": { + "owner": "angerman", + "ref": "master", + "repo": "old-ghc-nix", + "type": "github" + } + }, + "old-ghc-nix_17": { + "flake": false, + "locked": { + "lastModified": 1631092763, + "narHash": "sha256-sIKgO+z7tj4lw3u6oBZxqIhDrzSkvpHtv0Kki+lh9Fg=", + "owner": "angerman", + "repo": "old-ghc-nix", + "rev": "af48a7a7353e418119b6dfe3cd1463a657f342b8", + "type": "github" + }, + "original": { + "owner": "angerman", + "ref": "master", + "repo": "old-ghc-nix", + "type": "github" + } + }, + "old-ghc-nix_18": { + "flake": false, + "locked": { + "lastModified": 1631092763, + "narHash": "sha256-sIKgO+z7tj4lw3u6oBZxqIhDrzSkvpHtv0Kki+lh9Fg=", + "owner": "angerman", + "repo": "old-ghc-nix", + "rev": "af48a7a7353e418119b6dfe3cd1463a657f342b8", + "type": "github" + }, + "original": { + "owner": "angerman", + "ref": "master", + "repo": "old-ghc-nix", + "type": "github" + } + }, + "old-ghc-nix_19": { + "flake": false, + "locked": { + "lastModified": 1631092763, + "narHash": "sha256-sIKgO+z7tj4lw3u6oBZxqIhDrzSkvpHtv0Kki+lh9Fg=", + "owner": "angerman", + "repo": "old-ghc-nix", + "rev": "af48a7a7353e418119b6dfe3cd1463a657f342b8", + "type": "github" + }, + "original": { + "owner": "angerman", + "ref": "master", + "repo": "old-ghc-nix", + "type": "github" + } + }, "old-ghc-nix_2": { "flake": false, "locked": { @@ -11214,6 +16431,57 @@ "type": "github" } }, + "old-ghc-nix_20": { + "flake": false, + "locked": { + "lastModified": 1631092763, + "narHash": "sha256-sIKgO+z7tj4lw3u6oBZxqIhDrzSkvpHtv0Kki+lh9Fg=", + "owner": "angerman", + "repo": "old-ghc-nix", + "rev": "af48a7a7353e418119b6dfe3cd1463a657f342b8", + "type": "github" + }, + "original": { + "owner": "angerman", + "ref": "master", + "repo": "old-ghc-nix", + "type": "github" + } + }, + "old-ghc-nix_21": { + "flake": false, + "locked": { + "lastModified": 1631092763, + "narHash": "sha256-sIKgO+z7tj4lw3u6oBZxqIhDrzSkvpHtv0Kki+lh9Fg=", + "owner": "angerman", + "repo": "old-ghc-nix", + "rev": "af48a7a7353e418119b6dfe3cd1463a657f342b8", + "type": "github" + }, + "original": { + "owner": "angerman", + "ref": "master", + "repo": "old-ghc-nix", + "type": "github" + } + }, + "old-ghc-nix_22": { + "flake": false, + "locked": { + "lastModified": 1631092763, + "narHash": "sha256-sIKgO+z7tj4lw3u6oBZxqIhDrzSkvpHtv0Kki+lh9Fg=", + "owner": "angerman", + "repo": "old-ghc-nix", + "rev": "af48a7a7353e418119b6dfe3cd1463a657f342b8", + "type": "github" + }, + "original": { + "owner": "angerman", + "ref": "master", + "repo": "old-ghc-nix", + "type": "github" + } + }, "old-ghc-nix_3": { "flake": false, "locked": { @@ -11333,6 +16601,23 @@ "type": "github" } }, + "pandoc-link-context": { + "flake": false, + "locked": { + "lastModified": 1653170888, + "narHash": "sha256-bA/Oj2pt3H2b4lqWqVBYo3Qhvhd01r4vM39+vLuPMtA=", + "owner": "srid", + "repo": "pandoc-link-context", + "rev": "c3a3de34b291b2bfec04387af65e0cc0822373c5", + "type": "github" + }, + "original": { + "owner": "srid", + "ref": "master", + "repo": "pandoc-link-context", + "type": "github" + } + }, "plutarch": { "inputs": { "cardano-base": "cardano-base", @@ -11428,6 +16713,63 @@ } }, "plutarch-context-builder_2": { + "inputs": { + "haskell-language-server": [ + "liqwid-script-export", + "liqwid-plutarch-extra", + "plutarch-context-builder", + "plutarch", + "haskell-language-server" + ], + "haskell-nix": [ + "liqwid-script-export", + "liqwid-plutarch-extra", + "plutarch-context-builder", + "plutarch", + "haskell-nix" + ], + "haskell-nix-extra-hackage": [ + "liqwid-script-export", + "liqwid-plutarch-extra", + "plutarch-context-builder", + "plutarch", + "haskell-nix-extra-hackage" + ], + "iohk-nix": [ + "liqwid-script-export", + "liqwid-plutarch-extra", + "plutarch-context-builder", + "plutarch", + "iohk-nix" + ], + "liqwid-nix": "liqwid-nix_8", + "nixpkgs": [ + "liqwid-script-export", + "liqwid-plutarch-extra", + "plutarch-context-builder", + "plutarch", + "nixpkgs" + ], + "nixpkgs-2111": "nixpkgs-2111_11", + "nixpkgs-latest": "nixpkgs-latest_11", + "plutarch": "plutarch_6" + }, + "locked": { + "lastModified": 1663679353, + "narHash": "sha256-CK+hgOoU9qARRnaUlxlh9ZBWb0G6d8F0VslAbXd8mIM=", + "owner": "Liqwid-Labs", + "repo": "plutarch-context-builder", + "rev": "3bc59acb11264c4fa43c95fa615a4dbf69e0f981", + "type": "github" + }, + "original": { + "owner": "Liqwid-Labs", + "ref": "main", + "repo": "plutarch-context-builder", + "type": "github" + } + }, + "plutarch-context-builder_3": { "inputs": { "haskell-language-server": [ "plutarch-context-builder", @@ -11449,15 +16791,15 @@ "plutarch", "iohk-nix" ], - "liqwid-nix": "liqwid-nix_6", + "liqwid-nix": "liqwid-nix_12", "nixpkgs": [ "plutarch-context-builder", "plutarch", "nixpkgs" ], - "nixpkgs-2111": "nixpkgs-2111_11", - "nixpkgs-latest": "nixpkgs-latest_11", - "plutarch": "plutarch_6" + "nixpkgs-2111": "nixpkgs-2111_25", + "nixpkgs-latest": "nixpkgs-latest_24", + "plutarch": "plutarch_13" }, "locked": { "lastModified": 1664495234, @@ -11474,7 +16816,7 @@ "type": "github" } }, - "plutarch-context-builder_3": { + "plutarch-context-builder_4": { "inputs": { "haskell-language-server": [ "plutarch-safe-money", @@ -11504,7 +16846,7 @@ "plutarch", "iohk-nix" ], - "liqwid-nix": "liqwid-nix_11", + "liqwid-nix": "liqwid-nix_17", "nixpkgs": [ "plutarch-safe-money", "liqwid-plutarch-extra", @@ -11512,9 +16854,9 @@ "plutarch", "nixpkgs" ], - "nixpkgs-2111": "nixpkgs-2111_19", - "nixpkgs-latest": "nixpkgs-latest_19", - "plutarch": "plutarch_10" + "nixpkgs-2111": "nixpkgs-2111_33", + "nixpkgs-latest": "nixpkgs-latest_32", + "plutarch": "plutarch_17" }, "locked": { "lastModified": 1663679353, @@ -11586,27 +16928,37 @@ "plutarch-numeric_2": { "inputs": { "haskell-language-server": [ + "liqwid-script-export", + "liqwid-plutarch-extra", "plutarch-numeric", "plutarch", "haskell-language-server" ], "haskell-nix": [ + "liqwid-script-export", + "liqwid-plutarch-extra", "plutarch-numeric", "plutarch", "haskell-nix" ], "haskell-nix-extra-hackage": [ + "liqwid-script-export", + "liqwid-plutarch-extra", "plutarch-numeric", "plutarch", "haskell-nix-extra-hackage" ], "iohk-nix": [ + "liqwid-script-export", + "liqwid-plutarch-extra", "plutarch-numeric", "plutarch", "iohk-nix" ], - "liqwid-nix": "liqwid-nix_7", + "liqwid-nix": "liqwid-nix_9", "nixpkgs": [ + "liqwid-script-export", + "liqwid-plutarch-extra", "plutarch-numeric", "plutarch", "nixpkgs" @@ -11618,13 +16970,13 @@ "locked": { "lastModified": 1661989108, "narHash": "sha256-4oNo5hjyo7oRJiyNC9k16Z2u1ZkyyrbdFJEvBsDtfCQ=", - "owner": "Liqwid-Labs", + "owner": "liqwid-labs", "repo": "plutarch-numeric", "rev": "031a524347f6b5bda46f744e8a32aa05fb9d902e", "type": "github" }, "original": { - "owner": "Liqwid-Labs", + "owner": "liqwid-labs", "ref": "main", "repo": "plutarch-numeric", "type": "github" @@ -11633,44 +16985,39 @@ "plutarch-numeric_3": { "inputs": { "haskell-language-server": [ - "plutarch-safe-money", - "liqwid-plutarch-extra", + "liqwid-script-export", "plutarch-numeric", "plutarch", "haskell-language-server" ], "haskell-nix": [ - "plutarch-safe-money", - "liqwid-plutarch-extra", + "liqwid-script-export", "plutarch-numeric", "plutarch", "haskell-nix" ], "haskell-nix-extra-hackage": [ - "plutarch-safe-money", - "liqwid-plutarch-extra", + "liqwid-script-export", "plutarch-numeric", "plutarch", "haskell-nix-extra-hackage" ], "iohk-nix": [ - "plutarch-safe-money", - "liqwid-plutarch-extra", + "liqwid-script-export", "plutarch-numeric", "plutarch", "iohk-nix" ], - "liqwid-nix": "liqwid-nix_12", + "liqwid-nix": "liqwid-nix_11", "nixpkgs": [ - "plutarch-safe-money", - "liqwid-plutarch-extra", + "liqwid-script-export", "plutarch-numeric", "plutarch", "nixpkgs" ], - "nixpkgs-2111": "nixpkgs-2111_21", - "nixpkgs-latest": "nixpkgs-latest_21", - "plutarch": "plutarch_11" + "nixpkgs-2111": "nixpkgs-2111_19", + "nixpkgs-latest": "nixpkgs-latest_19", + "plutarch": "plutarch_10" }, "locked": { "lastModified": 1661989108, @@ -11688,6 +17035,110 @@ } }, "plutarch-numeric_4": { + "inputs": { + "haskell-language-server": [ + "plutarch-numeric", + "plutarch", + "haskell-language-server" + ], + "haskell-nix": [ + "plutarch-numeric", + "plutarch", + "haskell-nix" + ], + "haskell-nix-extra-hackage": [ + "plutarch-numeric", + "plutarch", + "haskell-nix-extra-hackage" + ], + "iohk-nix": [ + "plutarch-numeric", + "plutarch", + "iohk-nix" + ], + "liqwid-nix": "liqwid-nix_13", + "nixpkgs": [ + "plutarch-numeric", + "plutarch", + "nixpkgs" + ], + "nixpkgs-2111": "nixpkgs-2111_27", + "nixpkgs-latest": "nixpkgs-latest_26", + "plutarch": "plutarch_14" + }, + "locked": { + "lastModified": 1661989108, + "narHash": "sha256-4oNo5hjyo7oRJiyNC9k16Z2u1ZkyyrbdFJEvBsDtfCQ=", + "owner": "Liqwid-Labs", + "repo": "plutarch-numeric", + "rev": "031a524347f6b5bda46f744e8a32aa05fb9d902e", + "type": "github" + }, + "original": { + "owner": "Liqwid-Labs", + "ref": "main", + "repo": "plutarch-numeric", + "type": "github" + } + }, + "plutarch-numeric_5": { + "inputs": { + "haskell-language-server": [ + "plutarch-safe-money", + "liqwid-plutarch-extra", + "plutarch-numeric", + "plutarch", + "haskell-language-server" + ], + "haskell-nix": [ + "plutarch-safe-money", + "liqwid-plutarch-extra", + "plutarch-numeric", + "plutarch", + "haskell-nix" + ], + "haskell-nix-extra-hackage": [ + "plutarch-safe-money", + "liqwid-plutarch-extra", + "plutarch-numeric", + "plutarch", + "haskell-nix-extra-hackage" + ], + "iohk-nix": [ + "plutarch-safe-money", + "liqwid-plutarch-extra", + "plutarch-numeric", + "plutarch", + "iohk-nix" + ], + "liqwid-nix": "liqwid-nix_18", + "nixpkgs": [ + "plutarch-safe-money", + "liqwid-plutarch-extra", + "plutarch-numeric", + "plutarch", + "nixpkgs" + ], + "nixpkgs-2111": "nixpkgs-2111_35", + "nixpkgs-latest": "nixpkgs-latest_34", + "plutarch": "plutarch_18" + }, + "locked": { + "lastModified": 1661989108, + "narHash": "sha256-4oNo5hjyo7oRJiyNC9k16Z2u1ZkyyrbdFJEvBsDtfCQ=", + "owner": "liqwid-labs", + "repo": "plutarch-numeric", + "rev": "031a524347f6b5bda46f744e8a32aa05fb9d902e", + "type": "github" + }, + "original": { + "owner": "liqwid-labs", + "ref": "main", + "repo": "plutarch-numeric", + "type": "github" + } + }, + "plutarch-numeric_6": { "inputs": { "haskell-language-server": [ "plutarch-safe-money", @@ -11713,16 +17164,16 @@ "plutarch", "iohk-nix" ], - "liqwid-nix": "liqwid-nix_14", + "liqwid-nix": "liqwid-nix_20", "nixpkgs": [ "plutarch-safe-money", "plutarch-numeric", "plutarch", "nixpkgs" ], - "nixpkgs-2111": "nixpkgs-2111_27", - "nixpkgs-latest": "nixpkgs-latest_27", - "plutarch": "plutarch_14" + "nixpkgs-2111": "nixpkgs-2111_41", + "nixpkgs-latest": "nixpkgs-latest_40", + "plutarch": "plutarch_21" }, "locked": { "lastModified": 1661989108, @@ -11793,6 +17244,64 @@ } }, "plutarch-quickcheck_2": { + "inputs": { + "haskell-language-server": [ + "liqwid-script-export", + "liqwid-plutarch-extra", + "plutarch-quickcheck", + "plutarch", + "haskell-language-server" + ], + "haskell-nix": [ + "liqwid-script-export", + "liqwid-plutarch-extra", + "plutarch-quickcheck", + "plutarch", + "haskell-nix" + ], + "haskell-nix-extra-hackage": [ + "liqwid-script-export", + "liqwid-plutarch-extra", + "plutarch-quickcheck", + "plutarch", + "haskell-nix-extra-hackage" + ], + "iohk-nix": [ + "liqwid-script-export", + "liqwid-plutarch-extra", + "plutarch-quickcheck", + "plutarch", + "iohk-nix" + ], + "liqwid-nix": "liqwid-nix_10", + "nixpkgs": [ + "liqwid-script-export", + "liqwid-plutarch-extra", + "plutarch-quickcheck", + "plutarch", + "nixpkgs" + ], + "nixpkgs-2111": "nixpkgs-2111_15", + "nixpkgs-2205": "nixpkgs-2205_12", + "nixpkgs-latest": "nixpkgs-latest_15", + "plutarch": "plutarch_8" + }, + "locked": { + "lastModified": 1662396899, + "narHash": "sha256-viJ8K/KiIIIZNFMPwTaMCFL0f8Z0NtTtTylvK52ZBfc=", + "owner": "liqwid-labs", + "repo": "plutarch-quickcheck", + "rev": "e68e42f3522e47bd0f2a4dd408adf04ba37e11d3", + "type": "github" + }, + "original": { + "owner": "liqwid-labs", + "ref": "main", + "repo": "plutarch-quickcheck", + "type": "github" + } + }, + "plutarch-quickcheck_3": { "inputs": { "haskell-language-server": [ "plutarch-quickcheck", @@ -11814,15 +17323,15 @@ "plutarch", "iohk-nix" ], - "liqwid-nix": "liqwid-nix_8", + "liqwid-nix": "liqwid-nix_14", "nixpkgs": [ "plutarch-quickcheck", "plutarch", "nixpkgs" ], - "nixpkgs-2111": "nixpkgs-2111_15", - "nixpkgs-latest": "nixpkgs-latest_15", - "plutarch": "plutarch_8" + "nixpkgs-2111": "nixpkgs-2111_29", + "nixpkgs-latest": "nixpkgs-latest_28", + "plutarch": "plutarch_15" }, "locked": { "lastModified": 1659450065, @@ -11839,7 +17348,7 @@ "type": "github" } }, - "plutarch-quickcheck_3": { + "plutarch-quickcheck_4": { "inputs": { "haskell-language-server": [ "plutarch-safe-money", @@ -11869,7 +17378,7 @@ "plutarch", "iohk-nix" ], - "liqwid-nix": "liqwid-nix_13", + "liqwid-nix": "liqwid-nix_19", "nixpkgs": [ "plutarch-safe-money", "liqwid-plutarch-extra", @@ -11877,10 +17386,10 @@ "plutarch", "nixpkgs" ], - "nixpkgs-2111": "nixpkgs-2111_23", - "nixpkgs-2205": "nixpkgs-2205_13", - "nixpkgs-latest": "nixpkgs-latest_23", - "plutarch": "plutarch_12" + "nixpkgs-2111": "nixpkgs-2111_37", + "nixpkgs-2205": "nixpkgs-2205_20", + "nixpkgs-latest": "nixpkgs-latest_36", + "plutarch": "plutarch_19" }, "locked": { "lastModified": 1662396899, @@ -11919,17 +17428,17 @@ "plutarch", "iohk-nix" ], - "liqwid-nix": "liqwid-nix_9", - "liqwid-plutarch-extra": "liqwid-plutarch-extra_2", + "liqwid-nix": "liqwid-nix_15", + "liqwid-plutarch-extra": "liqwid-plutarch-extra_3", "nixpkgs": [ "plutarch-safe-money", "plutarch", "nixpkgs" ], - "nixpkgs-2111": "nixpkgs-2111_25", - "nixpkgs-latest": "nixpkgs-latest_25", - "plutarch": "plutarch_13", - "plutarch-numeric": "plutarch-numeric_4" + "nixpkgs-2111": "nixpkgs-2111_39", + "nixpkgs-latest": "nixpkgs-latest_38", + "plutarch": "plutarch_20", + "plutarch-numeric": "plutarch-numeric_6" }, "locked": { "lastModified": 1663761210, @@ -11946,62 +17455,14 @@ "type": "github" } }, - "plutarch-script-export": { - "inputs": { - "haskell-language-server": [ - "plutarch-script-export", - "plutarch", - "haskell-language-server" - ], - "haskell-nix": [ - "plutarch-script-export", - "plutarch", - "haskell-nix" - ], - "haskell-nix-extra-hackage": [ - "plutarch-script-export", - "plutarch", - "haskell-nix-extra-hackage" - ], - "iohk-nix": [ - "plutarch-script-export", - "plutarch", - "iohk-nix" - ], - "liqwid-nix": "liqwid-nix_15", - "nixpkgs": [ - "plutarch-script-export", - "plutarch", - "nixpkgs" - ], - "nixpkgs-2111": "nixpkgs-2111_29", - "nixpkgs-latest": "nixpkgs-latest_29", - "plutarch": "plutarch_15" - }, - "locked": { - "lastModified": 1664220695, - "narHash": "sha256-thMEO1P/ciHjnMFyL0bla781TG5C/nB5EEtebb3Boik=", - "owner": "Liqwid-Labs", - "repo": "plutarch-script-export", - "rev": "eba175e63516a4fed43ceab1826ea6522f28dd0f", - "type": "github" - }, - "original": { - "owner": "Liqwid-Labs", - "ref": "main", - "repo": "plutarch-script-export", - "type": "github" - } - }, "plutarch_10": { "inputs": { "cardano-base": "cardano-base_10", "cardano-crypto": "cardano-crypto_10", "cardano-prelude": "cardano-prelude_10", "emanote": [ - "plutarch-safe-money", - "liqwid-plutarch-extra", - "plutarch-context-builder", + "liqwid-script-export", + "plutarch-numeric", "plutarch", "haskell-nix", "nixpkgs-unstable" @@ -12013,9 +17474,8 @@ "hercules-ci-effects": "hercules-ci-effects_10", "iohk-nix": "iohk-nix_19", "nixpkgs": [ - "plutarch-safe-money", - "liqwid-plutarch-extra", - "plutarch-context-builder", + "liqwid-script-export", + "plutarch-numeric", "plutarch", "haskell-nix", "nixpkgs-unstable" @@ -12042,125 +17502,67 @@ }, "plutarch_11": { "inputs": { - "cardano-base": "cardano-base_11", - "cardano-crypto": "cardano-crypto_11", - "cardano-prelude": "cardano-prelude_11", - "emanote": [ - "plutarch-safe-money", - "liqwid-plutarch-extra", - "plutarch-numeric", - "plutarch", - "haskell-nix", - "nixpkgs-unstable" - ], - "flat": "flat_11", + "cardano-base": "cardano-base_12", + "cardano-crypto": "cardano-crypto_12", + "cardano-prelude": "cardano-prelude_12", + "emanote": "emanote", + "flat": "flat_12", "haskell-language-server": "haskell-language-server_21", - "haskell-nix": "haskell-nix_21", + "haskell-nix": "haskell-nix_22", "haskell-nix-extra-hackage": "haskell-nix-extra-hackage_11", "hercules-ci-effects": "hercules-ci-effects_11", - "iohk-nix": "iohk-nix_21", + "iohk-nix": "iohk-nix_22", "nixpkgs": [ - "plutarch-safe-money", - "liqwid-plutarch-extra", - "plutarch-numeric", + "liqwid-script-export", + "ply", "plutarch", "haskell-nix", "nixpkgs-unstable" ], - "nixpkgs-latest": "nixpkgs-latest_22", + "nixpkgs-latest": "nixpkgs-latest_21", "plutus": "plutus_11", "protolude": "protolude_11", "secp256k1-haskell": "secp256k1-haskell_11" }, "locked": { - "lastModified": 1659381657, + "lastModified": 1659381725, "narHash": "sha256-W0EWY0DV2idbIeqtJnShVHQ83exME8TK2GYQGbVpz8A=", "owner": "Plutonomicon", "repo": "plutarch-plutus", - "rev": "45b7c77a9ee9bd6c7dc25ddebcc3d12c58c4c3a2", + "rev": "3140f47adefae4523a0ca777fc09e724703d9269", "type": "github" }, "original": { "owner": "Plutonomicon", - "ref": "staging", "repo": "plutarch-plutus", "type": "github" } }, "plutarch_12": { - "inputs": { - "cardano-base": "cardano-base_12", - "cardano-crypto": "cardano-crypto_12", - "cardano-prelude": "cardano-prelude_12", - "emanote": [ - "plutarch-safe-money", - "liqwid-plutarch-extra", - "plutarch-quickcheck", - "plutarch", - "haskell-nix", - "nixpkgs-unstable" - ], - "flat": "flat_12", - "haskell-language-server": "haskell-language-server_23", - "haskell-nix": "haskell-nix_23", - "haskell-nix-extra-hackage": "haskell-nix-extra-hackage_12", - "hercules-ci-effects": "hercules-ci-effects_12", - "iohk-nix": "iohk-nix_23", - "nixpkgs": [ - "plutarch-safe-money", - "liqwid-plutarch-extra", - "plutarch-quickcheck", - "plutarch", - "haskell-nix", - "nixpkgs-unstable" - ], - "nixpkgs-latest": "nixpkgs-latest_24", - "plutus": "plutus_12", - "protolude": "protolude_12", - "secp256k1-haskell": "secp256k1-haskell_12" - }, - "locked": { - "lastModified": 1660577072, - "narHash": "sha256-FGx86CLJbkzHnhkTHKb4P37WZmPIJuO/0PjvK6VMnrE=", - "owner": "Plutonomicon", - "repo": "plutarch-plutus", - "rev": "79127ad4379828c525200f5e5173894246fa6566", - "type": "github" - }, - "original": { - "owner": "Plutonomicon", - "ref": "master", - "repo": "plutarch-plutus", - "type": "github" - } - }, - "plutarch_13": { "inputs": { "cardano-base": "cardano-base_13", "cardano-crypto": "cardano-crypto_13", "cardano-prelude": "cardano-prelude_13", "emanote": [ - "plutarch-safe-money", "plutarch", "haskell-nix", "nixpkgs-unstable" ], "flat": "flat_13", - "haskell-language-server": "haskell-language-server_25", - "haskell-nix": "haskell-nix_25", - "haskell-nix-extra-hackage": "haskell-nix-extra-hackage_13", - "hercules-ci-effects": "hercules-ci-effects_13", - "iohk-nix": "iohk-nix_25", + "haskell-language-server": "haskell-language-server_23", + "haskell-nix": "haskell-nix_24", + "haskell-nix-extra-hackage": "haskell-nix-extra-hackage_12", + "hercules-ci-effects": "hercules-ci-effects_12", + "iohk-nix": "iohk-nix_24", "nixpkgs": [ - "plutarch-safe-money", "plutarch", "haskell-nix", "nixpkgs-unstable" ], - "nixpkgs-latest": "nixpkgs-latest_26", + "nixpkgs-latest": "nixpkgs-latest_23", "plutus": "plutus_13", - "protolude": "protolude_13", - "secp256k1-haskell": "secp256k1-haskell_13" + "protolude": "protolude_12", + "secp256k1-haskell": "secp256k1-haskell_12" }, "locked": { "lastModified": 1663242420, @@ -12177,33 +17579,74 @@ "type": "github" } }, - "plutarch_14": { + "plutarch_13": { "inputs": { "cardano-base": "cardano-base_14", "cardano-crypto": "cardano-crypto_14", "cardano-prelude": "cardano-prelude_14", "emanote": [ - "plutarch-safe-money", - "plutarch-numeric", + "plutarch-context-builder", "plutarch", "haskell-nix", "nixpkgs-unstable" ], "flat": "flat_14", - "haskell-language-server": "haskell-language-server_27", - "haskell-nix": "haskell-nix_27", - "haskell-nix-extra-hackage": "haskell-nix-extra-hackage_14", - "hercules-ci-effects": "hercules-ci-effects_14", - "iohk-nix": "iohk-nix_27", + "haskell-language-server": "haskell-language-server_25", + "haskell-nix": "haskell-nix_26", + "haskell-nix-extra-hackage": "haskell-nix-extra-hackage_13", + "hercules-ci-effects": "hercules-ci-effects_13", + "iohk-nix": "iohk-nix_26", "nixpkgs": [ - "plutarch-safe-money", + "plutarch-context-builder", + "plutarch", + "haskell-nix", + "nixpkgs-unstable" + ], + "nixpkgs-latest": "nixpkgs-latest_25", + "plutus": "plutus_14", + "protolude": "protolude_13", + "secp256k1-haskell": "secp256k1-haskell_13" + }, + "locked": { + "lastModified": 1659381657, + "narHash": "sha256-W0EWY0DV2idbIeqtJnShVHQ83exME8TK2GYQGbVpz8A=", + "owner": "Plutonomicon", + "repo": "plutarch-plutus", + "rev": "45b7c77a9ee9bd6c7dc25ddebcc3d12c58c4c3a2", + "type": "github" + }, + "original": { + "owner": "Plutonomicon", + "ref": "staging", + "repo": "plutarch-plutus", + "type": "github" + } + }, + "plutarch_14": { + "inputs": { + "cardano-base": "cardano-base_15", + "cardano-crypto": "cardano-crypto_15", + "cardano-prelude": "cardano-prelude_15", + "emanote": [ "plutarch-numeric", "plutarch", "haskell-nix", "nixpkgs-unstable" ], - "nixpkgs-latest": "nixpkgs-latest_28", - "plutus": "plutus_14", + "flat": "flat_15", + "haskell-language-server": "haskell-language-server_27", + "haskell-nix": "haskell-nix_28", + "haskell-nix-extra-hackage": "haskell-nix-extra-hackage_14", + "hercules-ci-effects": "hercules-ci-effects_14", + "iohk-nix": "iohk-nix_28", + "nixpkgs": [ + "plutarch-numeric", + "plutarch", + "haskell-nix", + "nixpkgs-unstable" + ], + "nixpkgs-latest": "nixpkgs-latest_27", + "plutus": "plutus_15", "protolude": "protolude_14", "secp256k1-haskell": "secp256k1-haskell_14" }, @@ -12224,38 +17667,38 @@ }, "plutarch_15": { "inputs": { - "cardano-base": "cardano-base_15", - "cardano-crypto": "cardano-crypto_15", - "cardano-prelude": "cardano-prelude_15", + "cardano-base": "cardano-base_16", + "cardano-crypto": "cardano-crypto_16", + "cardano-prelude": "cardano-prelude_16", "emanote": [ - "plutarch-script-export", + "plutarch-quickcheck", "plutarch", "haskell-nix", "nixpkgs-unstable" ], - "flat": "flat_15", + "flat": "flat_16", "haskell-language-server": "haskell-language-server_29", - "haskell-nix": "haskell-nix_29", + "haskell-nix": "haskell-nix_30", "haskell-nix-extra-hackage": "haskell-nix-extra-hackage_15", "hercules-ci-effects": "hercules-ci-effects_15", - "iohk-nix": "iohk-nix_29", + "iohk-nix": "iohk-nix_30", "nixpkgs": [ - "plutarch-script-export", + "plutarch-quickcheck", "plutarch", "haskell-nix", "nixpkgs-unstable" ], - "nixpkgs-latest": "nixpkgs-latest_30", - "plutus": "plutus_15", + "nixpkgs-latest": "nixpkgs-latest_29", + "plutus": "plutus_16", "protolude": "protolude_15", "secp256k1-haskell": "secp256k1-haskell_15" }, "locked": { - "lastModified": 1660670400, - "narHash": "sha256-EoPMfaFCXzcHIiUYprCR51yxLb5mlsfuIJ29adBeyEU=", + "lastModified": 1659381657, + "narHash": "sha256-W0EWY0DV2idbIeqtJnShVHQ83exME8TK2GYQGbVpz8A=", "owner": "Plutonomicon", "repo": "plutarch-plutus", - "rev": "f0805033ec7ad83643ba3c90902673ba6e5b90c3", + "rev": "45b7c77a9ee9bd6c7dc25ddebcc3d12c58c4c3a2", "type": "github" }, "original": { @@ -12265,6 +17708,191 @@ "type": "github" } }, + "plutarch_16": { + "inputs": { + "cardano-base": "cardano-base_17", + "cardano-crypto": "cardano-crypto_17", + "cardano-prelude": "cardano-prelude_17", + "emanote": [ + "plutarch-safe-money", + "liqwid-plutarch-extra", + "plutarch", + "haskell-nix", + "nixpkgs-unstable" + ], + "flat": "flat_17", + "haskell-language-server": "haskell-language-server_31", + "haskell-nix": "haskell-nix_32", + "haskell-nix-extra-hackage": "haskell-nix-extra-hackage_16", + "hercules-ci-effects": "hercules-ci-effects_16", + "iohk-nix": "iohk-nix_32", + "nixpkgs": [ + "plutarch-safe-money", + "liqwid-plutarch-extra", + "plutarch", + "haskell-nix", + "nixpkgs-unstable" + ], + "nixpkgs-latest": "nixpkgs-latest_31", + "plutus": "plutus_17", + "protolude": "protolude_16", + "secp256k1-haskell": "secp256k1-haskell_16" + }, + "locked": { + "lastModified": 1663242420, + "narHash": "sha256-r6UVl3pBdJnectz8NDUexh3rY/4XcEqd9ILU+m/jVH8=", + "owner": "Plutonomicon", + "repo": "plutarch-plutus", + "rev": "67d38e6e14b762eb5a48b884bb96f89687d1a62d", + "type": "github" + }, + "original": { + "owner": "Plutonomicon", + "repo": "plutarch-plutus", + "type": "github" + } + }, + "plutarch_17": { + "inputs": { + "cardano-base": "cardano-base_18", + "cardano-crypto": "cardano-crypto_18", + "cardano-prelude": "cardano-prelude_18", + "emanote": [ + "plutarch-safe-money", + "liqwid-plutarch-extra", + "plutarch-context-builder", + "plutarch", + "haskell-nix", + "nixpkgs-unstable" + ], + "flat": "flat_18", + "haskell-language-server": "haskell-language-server_33", + "haskell-nix": "haskell-nix_34", + "haskell-nix-extra-hackage": "haskell-nix-extra-hackage_17", + "hercules-ci-effects": "hercules-ci-effects_17", + "iohk-nix": "iohk-nix_34", + "nixpkgs": [ + "plutarch-safe-money", + "liqwid-plutarch-extra", + "plutarch-context-builder", + "plutarch", + "haskell-nix", + "nixpkgs-unstable" + ], + "nixpkgs-latest": "nixpkgs-latest_33", + "plutus": "plutus_18", + "protolude": "protolude_17", + "secp256k1-haskell": "secp256k1-haskell_17" + }, + "locked": { + "lastModified": 1659381657, + "narHash": "sha256-W0EWY0DV2idbIeqtJnShVHQ83exME8TK2GYQGbVpz8A=", + "owner": "Plutonomicon", + "repo": "plutarch-plutus", + "rev": "45b7c77a9ee9bd6c7dc25ddebcc3d12c58c4c3a2", + "type": "github" + }, + "original": { + "owner": "Plutonomicon", + "ref": "staging", + "repo": "plutarch-plutus", + "type": "github" + } + }, + "plutarch_18": { + "inputs": { + "cardano-base": "cardano-base_19", + "cardano-crypto": "cardano-crypto_19", + "cardano-prelude": "cardano-prelude_19", + "emanote": [ + "plutarch-safe-money", + "liqwid-plutarch-extra", + "plutarch-numeric", + "plutarch", + "haskell-nix", + "nixpkgs-unstable" + ], + "flat": "flat_19", + "haskell-language-server": "haskell-language-server_35", + "haskell-nix": "haskell-nix_36", + "haskell-nix-extra-hackage": "haskell-nix-extra-hackage_18", + "hercules-ci-effects": "hercules-ci-effects_18", + "iohk-nix": "iohk-nix_36", + "nixpkgs": [ + "plutarch-safe-money", + "liqwid-plutarch-extra", + "plutarch-numeric", + "plutarch", + "haskell-nix", + "nixpkgs-unstable" + ], + "nixpkgs-latest": "nixpkgs-latest_35", + "plutus": "plutus_19", + "protolude": "protolude_18", + "secp256k1-haskell": "secp256k1-haskell_18" + }, + "locked": { + "lastModified": 1659381657, + "narHash": "sha256-W0EWY0DV2idbIeqtJnShVHQ83exME8TK2GYQGbVpz8A=", + "owner": "Plutonomicon", + "repo": "plutarch-plutus", + "rev": "45b7c77a9ee9bd6c7dc25ddebcc3d12c58c4c3a2", + "type": "github" + }, + "original": { + "owner": "Plutonomicon", + "ref": "staging", + "repo": "plutarch-plutus", + "type": "github" + } + }, + "plutarch_19": { + "inputs": { + "cardano-base": "cardano-base_20", + "cardano-crypto": "cardano-crypto_20", + "cardano-prelude": "cardano-prelude_20", + "emanote": [ + "plutarch-safe-money", + "liqwid-plutarch-extra", + "plutarch-quickcheck", + "plutarch", + "haskell-nix", + "nixpkgs-unstable" + ], + "flat": "flat_20", + "haskell-language-server": "haskell-language-server_37", + "haskell-nix": "haskell-nix_38", + "haskell-nix-extra-hackage": "haskell-nix-extra-hackage_19", + "hercules-ci-effects": "hercules-ci-effects_19", + "iohk-nix": "iohk-nix_38", + "nixpkgs": [ + "plutarch-safe-money", + "liqwid-plutarch-extra", + "plutarch-quickcheck", + "plutarch", + "haskell-nix", + "nixpkgs-unstable" + ], + "nixpkgs-latest": "nixpkgs-latest_37", + "plutus": "plutus_20", + "protolude": "protolude_19", + "secp256k1-haskell": "secp256k1-haskell_19" + }, + "locked": { + "lastModified": 1660577072, + "narHash": "sha256-FGx86CLJbkzHnhkTHKb4P37WZmPIJuO/0PjvK6VMnrE=", + "owner": "Plutonomicon", + "repo": "plutarch-plutus", + "rev": "79127ad4379828c525200f5e5173894246fa6566", + "type": "github" + }, + "original": { + "owner": "Plutonomicon", + "ref": "master", + "repo": "plutarch-plutus", + "type": "github" + } + }, "plutarch_2": { "inputs": { "cardano-base": "cardano-base_2", @@ -12310,6 +17938,94 @@ "type": "github" } }, + "plutarch_20": { + "inputs": { + "cardano-base": "cardano-base_21", + "cardano-crypto": "cardano-crypto_21", + "cardano-prelude": "cardano-prelude_21", + "emanote": [ + "plutarch-safe-money", + "plutarch", + "haskell-nix", + "nixpkgs-unstable" + ], + "flat": "flat_21", + "haskell-language-server": "haskell-language-server_39", + "haskell-nix": "haskell-nix_40", + "haskell-nix-extra-hackage": "haskell-nix-extra-hackage_20", + "hercules-ci-effects": "hercules-ci-effects_20", + "iohk-nix": "iohk-nix_40", + "nixpkgs": [ + "plutarch-safe-money", + "plutarch", + "haskell-nix", + "nixpkgs-unstable" + ], + "nixpkgs-latest": "nixpkgs-latest_39", + "plutus": "plutus_21", + "protolude": "protolude_20", + "secp256k1-haskell": "secp256k1-haskell_20" + }, + "locked": { + "lastModified": 1663242420, + "narHash": "sha256-r6UVl3pBdJnectz8NDUexh3rY/4XcEqd9ILU+m/jVH8=", + "owner": "Plutonomicon", + "repo": "plutarch-plutus", + "rev": "67d38e6e14b762eb5a48b884bb96f89687d1a62d", + "type": "github" + }, + "original": { + "owner": "Plutonomicon", + "ref": "master", + "repo": "plutarch-plutus", + "type": "github" + } + }, + "plutarch_21": { + "inputs": { + "cardano-base": "cardano-base_22", + "cardano-crypto": "cardano-crypto_22", + "cardano-prelude": "cardano-prelude_22", + "emanote": [ + "plutarch-safe-money", + "plutarch-numeric", + "plutarch", + "haskell-nix", + "nixpkgs-unstable" + ], + "flat": "flat_22", + "haskell-language-server": "haskell-language-server_41", + "haskell-nix": "haskell-nix_42", + "haskell-nix-extra-hackage": "haskell-nix-extra-hackage_21", + "hercules-ci-effects": "hercules-ci-effects_21", + "iohk-nix": "iohk-nix_42", + "nixpkgs": [ + "plutarch-safe-money", + "plutarch-numeric", + "plutarch", + "haskell-nix", + "nixpkgs-unstable" + ], + "nixpkgs-latest": "nixpkgs-latest_41", + "plutus": "plutus_22", + "protolude": "protolude_21", + "secp256k1-haskell": "secp256k1-haskell_21" + }, + "locked": { + "lastModified": 1659381657, + "narHash": "sha256-W0EWY0DV2idbIeqtJnShVHQ83exME8TK2GYQGbVpz8A=", + "owner": "Plutonomicon", + "repo": "plutarch-plutus", + "rev": "45b7c77a9ee9bd6c7dc25ddebcc3d12c58c4c3a2", + "type": "github" + }, + "original": { + "owner": "Plutonomicon", + "ref": "staging", + "repo": "plutarch-plutus", + "type": "github" + } + }, "plutarch_3": { "inputs": { "cardano-base": "cardano-base_3", @@ -12406,6 +18122,8 @@ "cardano-crypto": "cardano-crypto_5", "cardano-prelude": "cardano-prelude_5", "emanote": [ + "liqwid-script-export", + "liqwid-plutarch-extra", "plutarch", "haskell-nix", "nixpkgs-unstable" @@ -12417,6 +18135,8 @@ "hercules-ci-effects": "hercules-ci-effects_5", "iohk-nix": "iohk-nix_9", "nixpkgs": [ + "liqwid-script-export", + "liqwid-plutarch-extra", "plutarch", "haskell-nix", "nixpkgs-unstable" @@ -12436,7 +18156,6 @@ }, "original": { "owner": "Plutonomicon", - "ref": "master", "repo": "plutarch-plutus", "type": "github" } @@ -12447,6 +18166,8 @@ "cardano-crypto": "cardano-crypto_6", "cardano-prelude": "cardano-prelude_6", "emanote": [ + "liqwid-script-export", + "liqwid-plutarch-extra", "plutarch-context-builder", "plutarch", "haskell-nix", @@ -12459,6 +18180,8 @@ "hercules-ci-effects": "hercules-ci-effects_6", "iohk-nix": "iohk-nix_11", "nixpkgs": [ + "liqwid-script-export", + "liqwid-plutarch-extra", "plutarch-context-builder", "plutarch", "haskell-nix", @@ -12490,6 +18213,8 @@ "cardano-crypto": "cardano-crypto_7", "cardano-prelude": "cardano-prelude_7", "emanote": [ + "liqwid-script-export", + "liqwid-plutarch-extra", "plutarch-numeric", "plutarch", "haskell-nix", @@ -12502,6 +18227,8 @@ "hercules-ci-effects": "hercules-ci-effects_7", "iohk-nix": "iohk-nix_13", "nixpkgs": [ + "liqwid-script-export", + "liqwid-plutarch-extra", "plutarch-numeric", "plutarch", "haskell-nix", @@ -12533,6 +18260,8 @@ "cardano-crypto": "cardano-crypto_8", "cardano-prelude": "cardano-prelude_8", "emanote": [ + "liqwid-script-export", + "liqwid-plutarch-extra", "plutarch-quickcheck", "plutarch", "haskell-nix", @@ -12545,6 +18274,8 @@ "hercules-ci-effects": "hercules-ci-effects_8", "iohk-nix": "iohk-nix_15", "nixpkgs": [ + "liqwid-script-export", + "liqwid-plutarch-extra", "plutarch-quickcheck", "plutarch", "haskell-nix", @@ -12556,16 +18287,16 @@ "secp256k1-haskell": "secp256k1-haskell_8" }, "locked": { - "lastModified": 1659381657, - "narHash": "sha256-W0EWY0DV2idbIeqtJnShVHQ83exME8TK2GYQGbVpz8A=", + "lastModified": 1660577072, + "narHash": "sha256-FGx86CLJbkzHnhkTHKb4P37WZmPIJuO/0PjvK6VMnrE=", "owner": "Plutonomicon", "repo": "plutarch-plutus", - "rev": "45b7c77a9ee9bd6c7dc25ddebcc3d12c58c4c3a2", + "rev": "79127ad4379828c525200f5e5173894246fa6566", "type": "github" }, "original": { "owner": "Plutonomicon", - "ref": "staging", + "ref": "master", "repo": "plutarch-plutus", "type": "github" } @@ -12576,8 +18307,7 @@ "cardano-crypto": "cardano-crypto_9", "cardano-prelude": "cardano-prelude_9", "emanote": [ - "plutarch-safe-money", - "liqwid-plutarch-extra", + "liqwid-script-export", "plutarch", "haskell-nix", "nixpkgs-unstable" @@ -12589,8 +18319,7 @@ "hercules-ci-effects": "hercules-ci-effects_9", "iohk-nix": "iohk-nix_17", "nixpkgs": [ - "plutarch-safe-money", - "liqwid-plutarch-extra", + "liqwid-script-export", "plutarch", "haskell-nix", "nixpkgs-unstable" @@ -12601,15 +18330,16 @@ "secp256k1-haskell": "secp256k1-haskell_9" }, "locked": { - "lastModified": 1663242420, - "narHash": "sha256-r6UVl3pBdJnectz8NDUexh3rY/4XcEqd9ILU+m/jVH8=", + "lastModified": 1663948969, + "narHash": "sha256-ZLajgt0RA9qaNeoxZuybN8G5hsGEwI7pVQEkL71DV2E=", "owner": "Plutonomicon", "repo": "plutarch-plutus", - "rev": "67d38e6e14b762eb5a48b884bb96f89687d1a62d", + "rev": "979471de3c02cca61b58b71e96dc880cd8061ab7", "type": "github" }, "original": { "owner": "Plutonomicon", + "ref": "staging", "repo": "plutarch-plutus", "type": "github" } @@ -12672,9 +18402,9 @@ "gitignore-nix": "gitignore-nix_11", "hackage-nix": "hackage-nix_11", "haskell-language-server": "haskell-language-server_22", - "haskell-nix": "haskell-nix_22", - "iohk-nix": "iohk-nix_22", - "nixpkgs": "nixpkgs_45", + "haskell-nix": "haskell-nix_23", + "iohk-nix": "iohk-nix_23", + "nixpkgs": "nixpkgs_47", "pre-commit-hooks-nix": "pre-commit-hooks-nix_11", "sphinxcontrib-haddock": "sphinxcontrib-haddock_11" }, @@ -12693,14 +18423,31 @@ } }, "plutus_12": { + "flake": false, + "locked": { + "lastModified": 1656595231, + "narHash": "sha256-3EBhSroECMOSP02qZGT0Zb3QHWibI/tYjdcaT5/YotY=", + "owner": "input-output-hk", + "repo": "plutus", + "rev": "b39a526e983cb931d0cc49b7d073d6d43abd22b5", + "type": "github" + }, + "original": { + "owner": "input-output-hk", + "repo": "plutus", + "rev": "b39a526e983cb931d0cc49b7d073d6d43abd22b5", + "type": "github" + } + }, + "plutus_13": { "inputs": { "cardano-repo-tool": "cardano-repo-tool_12", "gitignore-nix": "gitignore-nix_12", "hackage-nix": "hackage-nix_12", "haskell-language-server": "haskell-language-server_24", - "haskell-nix": "haskell-nix_24", - "iohk-nix": "iohk-nix_24", - "nixpkgs": "nixpkgs_49", + "haskell-nix": "haskell-nix_25", + "iohk-nix": "iohk-nix_25", + "nixpkgs": "nixpkgs_51", "pre-commit-hooks-nix": "pre-commit-hooks-nix_12", "sphinxcontrib-haddock": "sphinxcontrib-haddock_12" }, @@ -12718,15 +18465,15 @@ "type": "github" } }, - "plutus_13": { + "plutus_14": { "inputs": { "cardano-repo-tool": "cardano-repo-tool_13", "gitignore-nix": "gitignore-nix_13", "hackage-nix": "hackage-nix_13", "haskell-language-server": "haskell-language-server_26", - "haskell-nix": "haskell-nix_26", - "iohk-nix": "iohk-nix_26", - "nixpkgs": "nixpkgs_52", + "haskell-nix": "haskell-nix_27", + "iohk-nix": "iohk-nix_27", + "nixpkgs": "nixpkgs_55", "pre-commit-hooks-nix": "pre-commit-hooks-nix_13", "sphinxcontrib-haddock": "sphinxcontrib-haddock_13" }, @@ -12744,15 +18491,15 @@ "type": "github" } }, - "plutus_14": { + "plutus_15": { "inputs": { "cardano-repo-tool": "cardano-repo-tool_14", "gitignore-nix": "gitignore-nix_14", "hackage-nix": "hackage-nix_14", "haskell-language-server": "haskell-language-server_28", - "haskell-nix": "haskell-nix_28", - "iohk-nix": "iohk-nix_28", - "nixpkgs": "nixpkgs_56", + "haskell-nix": "haskell-nix_29", + "iohk-nix": "iohk-nix_29", + "nixpkgs": "nixpkgs_59", "pre-commit-hooks-nix": "pre-commit-hooks-nix_14", "sphinxcontrib-haddock": "sphinxcontrib-haddock_14" }, @@ -12770,15 +18517,15 @@ "type": "github" } }, - "plutus_15": { + "plutus_16": { "inputs": { "cardano-repo-tool": "cardano-repo-tool_15", "gitignore-nix": "gitignore-nix_15", "hackage-nix": "hackage-nix_15", "haskell-language-server": "haskell-language-server_30", - "haskell-nix": "haskell-nix_30", - "iohk-nix": "iohk-nix_30", - "nixpkgs": "nixpkgs_60", + "haskell-nix": "haskell-nix_31", + "iohk-nix": "iohk-nix_31", + "nixpkgs": "nixpkgs_63", "pre-commit-hooks-nix": "pre-commit-hooks-nix_15", "sphinxcontrib-haddock": "sphinxcontrib-haddock_15" }, @@ -12796,6 +18543,84 @@ "type": "github" } }, + "plutus_17": { + "inputs": { + "cardano-repo-tool": "cardano-repo-tool_16", + "gitignore-nix": "gitignore-nix_16", + "hackage-nix": "hackage-nix_16", + "haskell-language-server": "haskell-language-server_32", + "haskell-nix": "haskell-nix_33", + "iohk-nix": "iohk-nix_33", + "nixpkgs": "nixpkgs_68", + "pre-commit-hooks-nix": "pre-commit-hooks-nix_16", + "sphinxcontrib-haddock": "sphinxcontrib-haddock_16" + }, + "locked": { + "lastModified": 1656595231, + "narHash": "sha256-3EBhSroECMOSP02qZGT0Zb3QHWibI/tYjdcaT5/YotY=", + "owner": "input-output-hk", + "repo": "plutus", + "rev": "b39a526e983cb931d0cc49b7d073d6d43abd22b5", + "type": "github" + }, + "original": { + "owner": "input-output-hk", + "repo": "plutus", + "type": "github" + } + }, + "plutus_18": { + "inputs": { + "cardano-repo-tool": "cardano-repo-tool_17", + "gitignore-nix": "gitignore-nix_17", + "hackage-nix": "hackage-nix_17", + "haskell-language-server": "haskell-language-server_34", + "haskell-nix": "haskell-nix_35", + "iohk-nix": "iohk-nix_35", + "nixpkgs": "nixpkgs_72", + "pre-commit-hooks-nix": "pre-commit-hooks-nix_17", + "sphinxcontrib-haddock": "sphinxcontrib-haddock_17" + }, + "locked": { + "lastModified": 1656595231, + "narHash": "sha256-3EBhSroECMOSP02qZGT0Zb3QHWibI/tYjdcaT5/YotY=", + "owner": "input-output-hk", + "repo": "plutus", + "rev": "b39a526e983cb931d0cc49b7d073d6d43abd22b5", + "type": "github" + }, + "original": { + "owner": "input-output-hk", + "repo": "plutus", + "type": "github" + } + }, + "plutus_19": { + "inputs": { + "cardano-repo-tool": "cardano-repo-tool_18", + "gitignore-nix": "gitignore-nix_18", + "hackage-nix": "hackage-nix_18", + "haskell-language-server": "haskell-language-server_36", + "haskell-nix": "haskell-nix_37", + "iohk-nix": "iohk-nix_37", + "nixpkgs": "nixpkgs_76", + "pre-commit-hooks-nix": "pre-commit-hooks-nix_18", + "sphinxcontrib-haddock": "sphinxcontrib-haddock_18" + }, + "locked": { + "lastModified": 1656595231, + "narHash": "sha256-3EBhSroECMOSP02qZGT0Zb3QHWibI/tYjdcaT5/YotY=", + "owner": "input-output-hk", + "repo": "plutus", + "rev": "b39a526e983cb931d0cc49b7d073d6d43abd22b5", + "type": "github" + }, + "original": { + "owner": "input-output-hk", + "repo": "plutus", + "type": "github" + } + }, "plutus_2": { "inputs": { "cardano-repo-tool": "cardano-repo-tool_2", @@ -12822,6 +18647,84 @@ "type": "github" } }, + "plutus_20": { + "inputs": { + "cardano-repo-tool": "cardano-repo-tool_19", + "gitignore-nix": "gitignore-nix_19", + "hackage-nix": "hackage-nix_19", + "haskell-language-server": "haskell-language-server_38", + "haskell-nix": "haskell-nix_39", + "iohk-nix": "iohk-nix_39", + "nixpkgs": "nixpkgs_80", + "pre-commit-hooks-nix": "pre-commit-hooks-nix_19", + "sphinxcontrib-haddock": "sphinxcontrib-haddock_19" + }, + "locked": { + "lastModified": 1656595231, + "narHash": "sha256-3EBhSroECMOSP02qZGT0Zb3QHWibI/tYjdcaT5/YotY=", + "owner": "input-output-hk", + "repo": "plutus", + "rev": "b39a526e983cb931d0cc49b7d073d6d43abd22b5", + "type": "github" + }, + "original": { + "owner": "input-output-hk", + "repo": "plutus", + "type": "github" + } + }, + "plutus_21": { + "inputs": { + "cardano-repo-tool": "cardano-repo-tool_20", + "gitignore-nix": "gitignore-nix_20", + "hackage-nix": "hackage-nix_20", + "haskell-language-server": "haskell-language-server_40", + "haskell-nix": "haskell-nix_41", + "iohk-nix": "iohk-nix_41", + "nixpkgs": "nixpkgs_83", + "pre-commit-hooks-nix": "pre-commit-hooks-nix_20", + "sphinxcontrib-haddock": "sphinxcontrib-haddock_20" + }, + "locked": { + "lastModified": 1656595231, + "narHash": "sha256-3EBhSroECMOSP02qZGT0Zb3QHWibI/tYjdcaT5/YotY=", + "owner": "input-output-hk", + "repo": "plutus", + "rev": "b39a526e983cb931d0cc49b7d073d6d43abd22b5", + "type": "github" + }, + "original": { + "owner": "input-output-hk", + "repo": "plutus", + "type": "github" + } + }, + "plutus_22": { + "inputs": { + "cardano-repo-tool": "cardano-repo-tool_21", + "gitignore-nix": "gitignore-nix_21", + "hackage-nix": "hackage-nix_21", + "haskell-language-server": "haskell-language-server_42", + "haskell-nix": "haskell-nix_43", + "iohk-nix": "iohk-nix_43", + "nixpkgs": "nixpkgs_87", + "pre-commit-hooks-nix": "pre-commit-hooks-nix_21", + "sphinxcontrib-haddock": "sphinxcontrib-haddock_21" + }, + "locked": { + "lastModified": 1656595231, + "narHash": "sha256-3EBhSroECMOSP02qZGT0Zb3QHWibI/tYjdcaT5/YotY=", + "owner": "input-output-hk", + "repo": "plutus", + "rev": "b39a526e983cb931d0cc49b7d073d6d43abd22b5", + "type": "github" + }, + "original": { + "owner": "input-output-hk", + "repo": "plutus", + "type": "github" + } + }, "plutus_3": { "inputs": { "cardano-repo-tool": "cardano-repo-tool_3", @@ -12882,7 +18785,7 @@ "haskell-language-server": "haskell-language-server_10", "haskell-nix": "haskell-nix_10", "iohk-nix": "iohk-nix_10", - "nixpkgs": "nixpkgs_20", + "nixpkgs": "nixpkgs_22", "pre-commit-hooks-nix": "pre-commit-hooks-nix_5", "sphinxcontrib-haddock": "sphinxcontrib-haddock_5" }, @@ -12908,7 +18811,7 @@ "haskell-language-server": "haskell-language-server_12", "haskell-nix": "haskell-nix_12", "iohk-nix": "iohk-nix_12", - "nixpkgs": "nixpkgs_24", + "nixpkgs": "nixpkgs_26", "pre-commit-hooks-nix": "pre-commit-hooks-nix_6", "sphinxcontrib-haddock": "sphinxcontrib-haddock_6" }, @@ -12934,7 +18837,7 @@ "haskell-language-server": "haskell-language-server_14", "haskell-nix": "haskell-nix_14", "iohk-nix": "iohk-nix_14", - "nixpkgs": "nixpkgs_28", + "nixpkgs": "nixpkgs_30", "pre-commit-hooks-nix": "pre-commit-hooks-nix_7", "sphinxcontrib-haddock": "sphinxcontrib-haddock_7" }, @@ -12960,7 +18863,7 @@ "haskell-language-server": "haskell-language-server_16", "haskell-nix": "haskell-nix_16", "iohk-nix": "iohk-nix_16", - "nixpkgs": "nixpkgs_32", + "nixpkgs": "nixpkgs_34", "pre-commit-hooks-nix": "pre-commit-hooks-nix_8", "sphinxcontrib-haddock": "sphinxcontrib-haddock_8" }, @@ -13004,6 +18907,59 @@ "type": "github" } }, + "ply": { + "inputs": { + "cardano-base": "cardano-base_11", + "cardano-crypto": "cardano-crypto_11", + "cardano-prelude": "cardano-prelude_11", + "extra-hackage": "extra-hackage", + "flat": "flat_11", + "haskell-nix": "haskell-nix_21", + "iohk-nix": "iohk-nix_21", + "nixpkgs": [ + "liqwid-script-export", + "ply", + "haskell-nix", + "nixpkgs-unstable" + ], + "plutarch": "plutarch_11", + "plutus": "plutus_12", + "pre-commit-hooks": "pre-commit-hooks" + }, + "locked": { + "lastModified": 1665077183, + "narHash": "sha256-ADwfJQ82FVvcr/aVdMkEwE9UU4jbjp9n6wzH31YRIQY=", + "owner": "mlabs-haskell", + "repo": "ply", + "rev": "2d63c6ae2629041385b0fb78db5ace2bab5923ea", + "type": "github" + }, + "original": { + "owner": "mlabs-haskell", + "ref": "master", + "repo": "ply", + "type": "github" + } + }, + "pre-commit-hooks": { + "inputs": { + "flake-utils": "flake-utils_15", + "nixpkgs": "nixpkgs_48" + }, + "locked": { + "lastModified": 1658611562, + "narHash": "sha256-jktQ3mRrFAiFzzmVxQXh+8IxZOEE4hfr7St3ncXeVy4=", + "owner": "cachix", + "repo": "pre-commit-hooks.nix", + "rev": "f436e6dbc10bb3500775785072a40eefe057b18e", + "type": "github" + }, + "original": { + "owner": "cachix", + "repo": "pre-commit-hooks.nix", + "type": "github" + } + }, "pre-commit-hooks-nix": { "flake": false, "locked": { @@ -13116,6 +19072,70 @@ "type": "github" } }, + "pre-commit-hooks-nix_16": { + "flake": false, + "locked": { + "lastModified": 1624971177, + "narHash": "sha256-Amf/nBj1E77RmbSSmV+hg6YOpR+rddCbbVgo5C7BS0I=", + "owner": "cachix", + "repo": "pre-commit-hooks.nix", + "rev": "397f0713d007250a2c7a745e555fa16c5dc8cadb", + "type": "github" + }, + "original": { + "owner": "cachix", + "repo": "pre-commit-hooks.nix", + "type": "github" + } + }, + "pre-commit-hooks-nix_17": { + "flake": false, + "locked": { + "lastModified": 1624971177, + "narHash": "sha256-Amf/nBj1E77RmbSSmV+hg6YOpR+rddCbbVgo5C7BS0I=", + "owner": "cachix", + "repo": "pre-commit-hooks.nix", + "rev": "397f0713d007250a2c7a745e555fa16c5dc8cadb", + "type": "github" + }, + "original": { + "owner": "cachix", + "repo": "pre-commit-hooks.nix", + "type": "github" + } + }, + "pre-commit-hooks-nix_18": { + "flake": false, + "locked": { + "lastModified": 1624971177, + "narHash": "sha256-Amf/nBj1E77RmbSSmV+hg6YOpR+rddCbbVgo5C7BS0I=", + "owner": "cachix", + "repo": "pre-commit-hooks.nix", + "rev": "397f0713d007250a2c7a745e555fa16c5dc8cadb", + "type": "github" + }, + "original": { + "owner": "cachix", + "repo": "pre-commit-hooks.nix", + "type": "github" + } + }, + "pre-commit-hooks-nix_19": { + "flake": false, + "locked": { + "lastModified": 1624971177, + "narHash": "sha256-Amf/nBj1E77RmbSSmV+hg6YOpR+rddCbbVgo5C7BS0I=", + "owner": "cachix", + "repo": "pre-commit-hooks.nix", + "rev": "397f0713d007250a2c7a745e555fa16c5dc8cadb", + "type": "github" + }, + "original": { + "owner": "cachix", + "repo": "pre-commit-hooks.nix", + "type": "github" + } + }, "pre-commit-hooks-nix_2": { "flake": false, "locked": { @@ -13132,6 +19152,38 @@ "type": "github" } }, + "pre-commit-hooks-nix_20": { + "flake": false, + "locked": { + "lastModified": 1624971177, + "narHash": "sha256-Amf/nBj1E77RmbSSmV+hg6YOpR+rddCbbVgo5C7BS0I=", + "owner": "cachix", + "repo": "pre-commit-hooks.nix", + "rev": "397f0713d007250a2c7a745e555fa16c5dc8cadb", + "type": "github" + }, + "original": { + "owner": "cachix", + "repo": "pre-commit-hooks.nix", + "type": "github" + } + }, + "pre-commit-hooks-nix_21": { + "flake": false, + "locked": { + "lastModified": 1624971177, + "narHash": "sha256-Amf/nBj1E77RmbSSmV+hg6YOpR+rddCbbVgo5C7BS0I=", + "owner": "cachix", + "repo": "pre-commit-hooks.nix", + "rev": "397f0713d007250a2c7a745e555fa16c5dc8cadb", + "type": "github" + }, + "original": { + "owner": "cachix", + "repo": "pre-commit-hooks.nix", + "type": "github" + } + }, "pre-commit-hooks-nix_3": { "flake": false, "locked": { @@ -13356,6 +19408,70 @@ "type": "github" } }, + "protolude_16": { + "flake": false, + "locked": { + "lastModified": 1647139352, + "narHash": "sha256-JyHAQfTTUswP8MeGEZibx/2/v01Q7cU5mNpnmDazh24=", + "owner": "protolude", + "repo": "protolude", + "rev": "3e249724fd0ead27370c8c297b1ecd38f92cbd5b", + "type": "github" + }, + "original": { + "owner": "protolude", + "repo": "protolude", + "type": "github" + } + }, + "protolude_17": { + "flake": false, + "locked": { + "lastModified": 1647139352, + "narHash": "sha256-JyHAQfTTUswP8MeGEZibx/2/v01Q7cU5mNpnmDazh24=", + "owner": "protolude", + "repo": "protolude", + "rev": "3e249724fd0ead27370c8c297b1ecd38f92cbd5b", + "type": "github" + }, + "original": { + "owner": "protolude", + "repo": "protolude", + "type": "github" + } + }, + "protolude_18": { + "flake": false, + "locked": { + "lastModified": 1647139352, + "narHash": "sha256-JyHAQfTTUswP8MeGEZibx/2/v01Q7cU5mNpnmDazh24=", + "owner": "protolude", + "repo": "protolude", + "rev": "3e249724fd0ead27370c8c297b1ecd38f92cbd5b", + "type": "github" + }, + "original": { + "owner": "protolude", + "repo": "protolude", + "type": "github" + } + }, + "protolude_19": { + "flake": false, + "locked": { + "lastModified": 1647139352, + "narHash": "sha256-JyHAQfTTUswP8MeGEZibx/2/v01Q7cU5mNpnmDazh24=", + "owner": "protolude", + "repo": "protolude", + "rev": "3e249724fd0ead27370c8c297b1ecd38f92cbd5b", + "type": "github" + }, + "original": { + "owner": "protolude", + "repo": "protolude", + "type": "github" + } + }, "protolude_2": { "flake": false, "locked": { @@ -13372,6 +19488,38 @@ "type": "github" } }, + "protolude_20": { + "flake": false, + "locked": { + "lastModified": 1647139352, + "narHash": "sha256-JyHAQfTTUswP8MeGEZibx/2/v01Q7cU5mNpnmDazh24=", + "owner": "protolude", + "repo": "protolude", + "rev": "3e249724fd0ead27370c8c297b1ecd38f92cbd5b", + "type": "github" + }, + "original": { + "owner": "protolude", + "repo": "protolude", + "type": "github" + } + }, + "protolude_21": { + "flake": false, + "locked": { + "lastModified": 1647139352, + "narHash": "sha256-JyHAQfTTUswP8MeGEZibx/2/v01Q7cU5mNpnmDazh24=", + "owner": "protolude", + "repo": "protolude", + "rev": "3e249724fd0ead27370c8c297b1ecd38f92cbd5b", + "type": "github" + }, + "original": { + "owner": "protolude", + "repo": "protolude", + "type": "github" + } + }, "protolude_3": { "flake": false, "locked": { @@ -13504,18 +19652,18 @@ ], "liqwid-nix": "liqwid-nix", "liqwid-plutarch-extra": "liqwid-plutarch-extra", + "liqwid-script-export": "liqwid-script-export", "nixpkgs": [ "plutarch", "nixpkgs" ], - "nixpkgs-2111": "nixpkgs-2111_9", - "nixpkgs-latest": "nixpkgs-latest_9", - "plutarch": "plutarch_5", - "plutarch-context-builder": "plutarch-context-builder_2", - "plutarch-numeric": "plutarch-numeric_2", - "plutarch-quickcheck": "plutarch-quickcheck_2", - "plutarch-safe-money": "plutarch-safe-money", - "plutarch-script-export": "plutarch-script-export" + "nixpkgs-2111": "nixpkgs-2111_23", + "nixpkgs-latest": "nixpkgs-latest_22", + "plutarch": "plutarch_12", + "plutarch-context-builder": "plutarch-context-builder_3", + "plutarch-numeric": "plutarch-numeric_4", + "plutarch-quickcheck": "plutarch-quickcheck_3", + "plutarch-safe-money": "plutarch-safe-money" } }, "secp256k1-haskell": { @@ -13630,6 +19778,70 @@ "type": "github" } }, + "secp256k1-haskell_16": { + "flake": false, + "locked": { + "lastModified": 1650290419, + "narHash": "sha256-XrjiqCC7cNTFib78gdMPGNettAkwAxQlbC/n+/mRFt4=", + "owner": "haskoin", + "repo": "secp256k1-haskell", + "rev": "3df963ab6ae14ec122691a97af09a7331511a387", + "type": "github" + }, + "original": { + "owner": "haskoin", + "repo": "secp256k1-haskell", + "type": "github" + } + }, + "secp256k1-haskell_17": { + "flake": false, + "locked": { + "lastModified": 1650290419, + "narHash": "sha256-XrjiqCC7cNTFib78gdMPGNettAkwAxQlbC/n+/mRFt4=", + "owner": "haskoin", + "repo": "secp256k1-haskell", + "rev": "3df963ab6ae14ec122691a97af09a7331511a387", + "type": "github" + }, + "original": { + "owner": "haskoin", + "repo": "secp256k1-haskell", + "type": "github" + } + }, + "secp256k1-haskell_18": { + "flake": false, + "locked": { + "lastModified": 1650290419, + "narHash": "sha256-XrjiqCC7cNTFib78gdMPGNettAkwAxQlbC/n+/mRFt4=", + "owner": "haskoin", + "repo": "secp256k1-haskell", + "rev": "3df963ab6ae14ec122691a97af09a7331511a387", + "type": "github" + }, + "original": { + "owner": "haskoin", + "repo": "secp256k1-haskell", + "type": "github" + } + }, + "secp256k1-haskell_19": { + "flake": false, + "locked": { + "lastModified": 1650290419, + "narHash": "sha256-XrjiqCC7cNTFib78gdMPGNettAkwAxQlbC/n+/mRFt4=", + "owner": "haskoin", + "repo": "secp256k1-haskell", + "rev": "3df963ab6ae14ec122691a97af09a7331511a387", + "type": "github" + }, + "original": { + "owner": "haskoin", + "repo": "secp256k1-haskell", + "type": "github" + } + }, "secp256k1-haskell_2": { "flake": false, "locked": { @@ -13646,6 +19858,38 @@ "type": "github" } }, + "secp256k1-haskell_20": { + "flake": false, + "locked": { + "lastModified": 1650290419, + "narHash": "sha256-XrjiqCC7cNTFib78gdMPGNettAkwAxQlbC/n+/mRFt4=", + "owner": "haskoin", + "repo": "secp256k1-haskell", + "rev": "3df963ab6ae14ec122691a97af09a7331511a387", + "type": "github" + }, + "original": { + "owner": "haskoin", + "repo": "secp256k1-haskell", + "type": "github" + } + }, + "secp256k1-haskell_21": { + "flake": false, + "locked": { + "lastModified": 1650290419, + "narHash": "sha256-XrjiqCC7cNTFib78gdMPGNettAkwAxQlbC/n+/mRFt4=", + "owner": "haskoin", + "repo": "secp256k1-haskell", + "rev": "3df963ab6ae14ec122691a97af09a7331511a387", + "type": "github" + }, + "original": { + "owner": "haskoin", + "repo": "secp256k1-haskell", + "type": "github" + } + }, "secp256k1-haskell_3": { "flake": false, "locked": { @@ -13870,6 +20114,70 @@ "type": "github" } }, + "sphinxcontrib-haddock_16": { + "flake": false, + "locked": { + "lastModified": 1594136664, + "narHash": "sha256-O9YT3iCUBHP3CEF88VDLLCO2HSP3HqkNA2q2939RnVY=", + "owner": "michaelpj", + "repo": "sphinxcontrib-haddock", + "rev": "f3956b3256962b2d27d5a4e96edb7951acf5de34", + "type": "github" + }, + "original": { + "owner": "michaelpj", + "repo": "sphinxcontrib-haddock", + "type": "github" + } + }, + "sphinxcontrib-haddock_17": { + "flake": false, + "locked": { + "lastModified": 1594136664, + "narHash": "sha256-O9YT3iCUBHP3CEF88VDLLCO2HSP3HqkNA2q2939RnVY=", + "owner": "michaelpj", + "repo": "sphinxcontrib-haddock", + "rev": "f3956b3256962b2d27d5a4e96edb7951acf5de34", + "type": "github" + }, + "original": { + "owner": "michaelpj", + "repo": "sphinxcontrib-haddock", + "type": "github" + } + }, + "sphinxcontrib-haddock_18": { + "flake": false, + "locked": { + "lastModified": 1594136664, + "narHash": "sha256-O9YT3iCUBHP3CEF88VDLLCO2HSP3HqkNA2q2939RnVY=", + "owner": "michaelpj", + "repo": "sphinxcontrib-haddock", + "rev": "f3956b3256962b2d27d5a4e96edb7951acf5de34", + "type": "github" + }, + "original": { + "owner": "michaelpj", + "repo": "sphinxcontrib-haddock", + "type": "github" + } + }, + "sphinxcontrib-haddock_19": { + "flake": false, + "locked": { + "lastModified": 1594136664, + "narHash": "sha256-O9YT3iCUBHP3CEF88VDLLCO2HSP3HqkNA2q2939RnVY=", + "owner": "michaelpj", + "repo": "sphinxcontrib-haddock", + "rev": "f3956b3256962b2d27d5a4e96edb7951acf5de34", + "type": "github" + }, + "original": { + "owner": "michaelpj", + "repo": "sphinxcontrib-haddock", + "type": "github" + } + }, "sphinxcontrib-haddock_2": { "flake": false, "locked": { @@ -13886,6 +20194,38 @@ "type": "github" } }, + "sphinxcontrib-haddock_20": { + "flake": false, + "locked": { + "lastModified": 1594136664, + "narHash": "sha256-O9YT3iCUBHP3CEF88VDLLCO2HSP3HqkNA2q2939RnVY=", + "owner": "michaelpj", + "repo": "sphinxcontrib-haddock", + "rev": "f3956b3256962b2d27d5a4e96edb7951acf5de34", + "type": "github" + }, + "original": { + "owner": "michaelpj", + "repo": "sphinxcontrib-haddock", + "type": "github" + } + }, + "sphinxcontrib-haddock_21": { + "flake": false, + "locked": { + "lastModified": 1594136664, + "narHash": "sha256-O9YT3iCUBHP3CEF88VDLLCO2HSP3HqkNA2q2939RnVY=", + "owner": "michaelpj", + "repo": "sphinxcontrib-haddock", + "rev": "f3956b3256962b2d27d5a4e96edb7951acf5de34", + "type": "github" + }, + "original": { + "owner": "michaelpj", + "repo": "sphinxcontrib-haddock", + "type": "github" + } + }, "sphinxcontrib-haddock_3": { "flake": false, "locked": { @@ -14033,11 +20373,11 @@ "stackage_11": { "flake": false, "locked": { - "lastModified": 1654046327, - "narHash": "sha256-IxX46Dh4OZpF3k7KPMa3tZSScYYGqFxXpCnMc0QRkuQ=", + "lastModified": 1653355076, + "narHash": "sha256-mQdOgAyFkLUJBPrVDZmZQ2JRtgHKOQkil//SDdcjP1U=", "owner": "input-output-hk", "repo": "stackage.nix", - "rev": "cc1d778723fcd431f9b2ed632a50c610c3e38b54", + "rev": "71b16ca68d6acd639121db43238896357fe53f54", "type": "github" }, "original": { @@ -14110,6 +20450,70 @@ "type": "github" } }, + "stackage_16": { + "flake": false, + "locked": { + "lastModified": 1654046327, + "narHash": "sha256-IxX46Dh4OZpF3k7KPMa3tZSScYYGqFxXpCnMc0QRkuQ=", + "owner": "input-output-hk", + "repo": "stackage.nix", + "rev": "cc1d778723fcd431f9b2ed632a50c610c3e38b54", + "type": "github" + }, + "original": { + "owner": "input-output-hk", + "repo": "stackage.nix", + "type": "github" + } + }, + "stackage_17": { + "flake": false, + "locked": { + "lastModified": 1654046327, + "narHash": "sha256-IxX46Dh4OZpF3k7KPMa3tZSScYYGqFxXpCnMc0QRkuQ=", + "owner": "input-output-hk", + "repo": "stackage.nix", + "rev": "cc1d778723fcd431f9b2ed632a50c610c3e38b54", + "type": "github" + }, + "original": { + "owner": "input-output-hk", + "repo": "stackage.nix", + "type": "github" + } + }, + "stackage_18": { + "flake": false, + "locked": { + "lastModified": 1654046327, + "narHash": "sha256-IxX46Dh4OZpF3k7KPMa3tZSScYYGqFxXpCnMc0QRkuQ=", + "owner": "input-output-hk", + "repo": "stackage.nix", + "rev": "cc1d778723fcd431f9b2ed632a50c610c3e38b54", + "type": "github" + }, + "original": { + "owner": "input-output-hk", + "repo": "stackage.nix", + "type": "github" + } + }, + "stackage_19": { + "flake": false, + "locked": { + "lastModified": 1654046327, + "narHash": "sha256-IxX46Dh4OZpF3k7KPMa3tZSScYYGqFxXpCnMc0QRkuQ=", + "owner": "input-output-hk", + "repo": "stackage.nix", + "rev": "cc1d778723fcd431f9b2ed632a50c610c3e38b54", + "type": "github" + }, + "original": { + "owner": "input-output-hk", + "repo": "stackage.nix", + "type": "github" + } + }, "stackage_2": { "flake": false, "locked": { @@ -14126,6 +20530,54 @@ "type": "github" } }, + "stackage_20": { + "flake": false, + "locked": { + "lastModified": 1654046327, + "narHash": "sha256-IxX46Dh4OZpF3k7KPMa3tZSScYYGqFxXpCnMc0QRkuQ=", + "owner": "input-output-hk", + "repo": "stackage.nix", + "rev": "cc1d778723fcd431f9b2ed632a50c610c3e38b54", + "type": "github" + }, + "original": { + "owner": "input-output-hk", + "repo": "stackage.nix", + "type": "github" + } + }, + "stackage_21": { + "flake": false, + "locked": { + "lastModified": 1654046327, + "narHash": "sha256-IxX46Dh4OZpF3k7KPMa3tZSScYYGqFxXpCnMc0QRkuQ=", + "owner": "input-output-hk", + "repo": "stackage.nix", + "rev": "cc1d778723fcd431f9b2ed632a50c610c3e38b54", + "type": "github" + }, + "original": { + "owner": "input-output-hk", + "repo": "stackage.nix", + "type": "github" + } + }, + "stackage_22": { + "flake": false, + "locked": { + "lastModified": 1654046327, + "narHash": "sha256-IxX46Dh4OZpF3k7KPMa3tZSScYYGqFxXpCnMc0QRkuQ=", + "owner": "input-output-hk", + "repo": "stackage.nix", + "rev": "cc1d778723fcd431f9b2ed632a50c610c3e38b54", + "type": "github" + }, + "original": { + "owner": "input-output-hk", + "repo": "stackage.nix", + "type": "github" + } + }, "stackage_3": { "flake": false, "locked": { @@ -14237,6 +20689,34 @@ "repo": "stackage.nix", "type": "github" } + }, + "tailwind-haskell": { + "inputs": { + "ema": [ + "liqwid-script-export", + "ply", + "plutarch", + "emanote", + "ema" + ], + "flake-compat": "flake-compat_2", + "flake-utils": "flake-utils_13", + "nixpkgs": "nixpkgs_44" + }, + "locked": { + "lastModified": 1653230344, + "narHash": "sha256-MNwayqvZHsIsP1uyqwQFvzcfFGBMejzZOqAapDjrV5I=", + "owner": "srid", + "repo": "tailwind-haskell", + "rev": "0fb8a18b0e770bafc17521836658f31c56e6dfdb", + "type": "github" + }, + "original": { + "owner": "srid", + "ref": "master", + "repo": "tailwind-haskell", + "type": "github" + } } }, "root": "root", diff --git a/flake.nix b/flake.nix index 5342111..a51de8f 100644 --- a/flake.nix +++ b/flake.nix @@ -33,8 +33,8 @@ "github:liqwid-labs/plutarch-quickcheck?ref=staging"; plutarch-context-builder.url = "github:Liqwid-Labs/plutarch-context-builder?ref=main"; - plutarch-script-export.url = - "github:Liqwid-Labs/plutarch-script-export?ref=main"; + liqwid-script-export.url = + "github:Liqwid-Labs/liqwid-script-export?ref=main"; liqwid-nix.url = "github:Liqwid-Labs/liqwid-nix?ref=main"; }; @@ -85,7 +85,9 @@ "${inputs.plutarch-quickcheck}" "${inputs.plutarch-context-builder}" "${inputs.liqwid-plutarch-extra}" - "${inputs.plutarch-script-export}" + "${inputs.liqwid-script-export}" + "${inputs.liqwid-script-export.inputs.ply}/ply-core" + "${inputs.liqwid-script-export.inputs.ply}/ply-plutarch" ]) (liqwid-nix.enableFormatCheck [ "-XQuasiQuotes"