Skip to content

Commit

Permalink
Update gh-pages
Browse files Browse the repository at this point in the history
Store path: /nix/store/hwi1vpc3wfiqrdffsg4jsn9l2qqiq3xs-combined-docs
  • Loading branch information
hercules-ci[bot] committed Nov 27, 2024
1 parent 29fd462 commit 071e4cc
Show file tree
Hide file tree
Showing 141 changed files with 15,093 additions and 15,473 deletions.
Binary file modified 01-index.tar
Binary file not shown.
Binary file modified 01-index.tar.gz
Binary file not shown.
12 changes: 5 additions & 7 deletions Typeclasses/PEqAndPOrd.html
Original file line number Diff line number Diff line change
Expand Up @@ -191,13 +191,11 @@ <h1 id="peq--pord"><a class="header" href="#peq--pord"><code>PEq</code> &amp; <c
<pre><code class="language-hs">1 #== 2
</code></pre>
<p>That would yield a <code>Term s PBool</code>, which you would probably use with <code>pif</code> (or similar).</p>
<p>Similarly, <code>PPartialOrd</code> (and <code>POrd</code>) emulates <code>Ord</code>: (where <code>PPartialOrd</code> represents partial orders
and <code>POrd</code> represents total orders)</p>
<pre><code class="language-hs">class PEq =&gt; PPartialOrd t where
<p>Similarly, <code>POrd</code> emulates <code>Ord</code>:</p>
<pre><code class="language-hs">-- The actual POrd has more methods, but these are the only required ones.
class PEq =&gt; POrd t where
(#&lt;) :: Term s t -&gt; Term s t -&gt; Term s PBool
(#&lt;=) :: Term s t -&gt; Term s t -&gt; Term s PBool

class PPartialOrd =&gt; POrd t
</code></pre>
<p>It works as you would expect:</p>
<pre><code class="language-hs">pif (1 #&lt; 7) "indeed" "what"
Expand All @@ -211,7 +209,7 @@ <h1 id="peq--pord"><a class="header" href="#peq--pord"><code>PEq</code> &amp; <c
deriving anyclass (PlutusType, PEq)
instance DerivePlutusType (PMaybe' a) where type DPTStrat _ = PlutusTypeScott
</code></pre>
<p>For data encoded types, you can derive <code>PEq</code>, <code>PPartialOrd</code> and <code>POrd</code> via there data representation:</p>
<p>For data encoded types, you can derive <code>PEq</code> and <code>POrd</code> via their data representation:</p>
<pre><code class="language-haskell">newtype PTriplet a s
= PTriplet
( Term
Expand All @@ -224,7 +222,7 @@ <h1 id="peq--pord"><a class="header" href="#peq--pord"><code>PEq</code> &amp; <c
)
)
deriving stock Generic
deriving anyclass (PlutusType, PEq, PPartialOrd)
deriving anyclass (PlutusType, PEq)

instance DerivePlutusType (PTriplet a) where type DPTStrat _ = PlutusTypeData
</code></pre>
Expand Down
3 changes: 1 addition & 2 deletions Usage/DerivingForNewtypes.html
Original file line number Diff line number Diff line change
Expand Up @@ -193,7 +193,7 @@ <h1 id="deriving-typeclasses-for-newtypes"><a class="header" href="#deriving-typ
<code>PPubKeyHash</code> as well. In this case, you can simply derive all those typeclasses for your <code>PPubKeyHash</code> type as well:</p>
<pre><code class="language-haskell">newtype PPubKeyHash (s :: S) = PPubKeyHash (Term s (PDataNewtype PByteString))
deriving stock (Generic)
deriving anyclass (PlutusType, PIsData, PEq, PPartialOrd, POrd, PShow)
deriving anyclass (PlutusType, PIsData, PEq, POrd, PShow)
instance DerivePlutusType PPubKeyHash where type DPTStrat _ = PlutusTypeNewtype

</code></pre>
Expand All @@ -215,7 +215,6 @@ <h1 id="deriving-typeclasses-for-newtypes"><a class="header" href="#deriving-typ
<li><code>PIsData</code></li>
<li><code>PNum</code></li>
<li><code>POrd</code></li>
<li><code>PPartialOrd</code></li>
<li><code>PShow</code></li>
<li><code>PlutusType</code></li>
</ul>
Expand Down
2 changes: 1 addition & 1 deletion Usage/DerivingWithGenerics.html
Original file line number Diff line number Diff line change
Expand Up @@ -200,7 +200,7 @@ <h1 id="deriving-typeclasses-with-generics"><a class="header" href="#deriving-ty
<ul>
<li><a href="./../Typeclasses/PlutusType,PCon,PMatch.html#implementing-plutustype-for-your-own-types-scott-encoding"><code>PlutusType</code></a> (Scott encoding only)</li>
<li><a href="./../Typeclasses/PEqAndPOrd.html"><code>PEq</code></a></li>
<li><a href="./../Typeclasses/PEqAndPOrd.html"><code>POrd</code>/ <code>PPartialOrd</code></a></li>
<li><a href="./../Typeclasses/PEqAndPOrd.html"><code>POrd</code></a></li>
<li><a href="./../Typeclasses/PTryFrom.html"><code>PTryFrom</code></a></li>
<li><code>PShow</code></li>
<li><code>PIsData</code></li>
Expand Down
2 changes: 1 addition & 1 deletion haddock/doc-index-All.html

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion haddock/doc-index-P.html

Large diffs are not rendered by default.

64 changes: 50 additions & 14 deletions haddock/doc-index.json

Large diffs are not rendered by default.

Large diffs are not rendered by default.

Large diffs are not rendered by default.

Large diffs are not rendered by default.

6 changes: 3 additions & 3 deletions haddock/plutarch-ledger-api/html/Plutarch-LedgerApi-V1.html

Large diffs are not rendered by default.

8 changes: 4 additions & 4 deletions haddock/plutarch-ledger-api/html/Plutarch-LedgerApi-V2.html

Large diffs are not rendered by default.

8 changes: 4 additions & 4 deletions haddock/plutarch-ledger-api/html/Plutarch-LedgerApi-V3.html

Large diffs are not rendered by default.

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion haddock/plutarch-ledger-api/html/doc-index-All.html

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion haddock/plutarch-ledger-api/html/doc-index-P.html

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion haddock/plutarch-ledger-api/html/doc-index.json

Large diffs are not rendered by default.

Binary file modified haddock/plutarch-ledger-api/html/plutarch-ledger-api.haddock
Binary file not shown.
48 changes: 30 additions & 18 deletions haddock/plutarch-ledger-api/html/plutarch-ledger-api.txt
Original file line number Diff line number Diff line change
Expand Up @@ -85,26 +85,21 @@ phull :: forall (a :: S -> Type) (s :: S). (POrd a, PIsData a) => Term s (PInter
pintersection :: forall (a :: S -> Type) (s :: S). (POrd a, PIsData a) => Term s (PInterval a :--> (PInterval a :--> PInterval a))
instance (Plutarch.Builtin.PIsData a, Plutarch.Show.PShow a) => Plutarch.Show.PShow (Plutarch.LedgerApi.Interval.PExtended a)
instance (Plutarch.Internal.Ord.POrd a, Plutarch.Builtin.PIsData a) => Plutarch.Internal.Ord.POrd (Plutarch.LedgerApi.Interval.PExtended a)
instance (Plutarch.Internal.Ord.POrd a, Plutarch.Builtin.PIsData a) => Plutarch.Internal.Ord.PPartialOrd (Plutarch.LedgerApi.Interval.PExtended a)
instance Plutarch.Internal.Eq.PEq (Plutarch.LedgerApi.Interval.PExtended a)
instance Plutarch.Builtin.PIsData (Plutarch.LedgerApi.Interval.PExtended a)
instance Plutarch.Internal.PlutusType.PlutusType (Plutarch.LedgerApi.Interval.PExtended a)
instance GHC.Generics.Generic (Plutarch.LedgerApi.Interval.PExtended a s)
instance (Plutarch.Builtin.PIsData a, Plutarch.Show.PShow a) => Plutarch.Show.PShow (Plutarch.LedgerApi.Interval.PUpperBound a)
instance (Plutarch.Builtin.PIsData a, Plutarch.Enum.PEnumerable a) => Plutarch.Internal.Ord.POrd (Plutarch.LedgerApi.Interval.PUpperBound a)
instance Plutarch.DataRepr.Internal.Field.PDataFields (Plutarch.LedgerApi.Interval.PUpperBound a)
instance Plutarch.Builtin.PIsData (Plutarch.LedgerApi.Interval.PUpperBound a)
instance Plutarch.Internal.PlutusType.PlutusType (Plutarch.LedgerApi.Interval.PUpperBound a)
instance GHC.Generics.Generic (Plutarch.LedgerApi.Interval.PUpperBound a s)
instance (Plutarch.Builtin.PIsData a, Plutarch.Show.PShow a) => Plutarch.Show.PShow (Plutarch.LedgerApi.Interval.PLowerBound a)
instance (Plutarch.Builtin.PIsData a, Plutarch.Enum.PCountable a) => Plutarch.Internal.Ord.POrd (Plutarch.LedgerApi.Interval.PLowerBound a)
instance Plutarch.DataRepr.Internal.Field.PDataFields (Plutarch.LedgerApi.Interval.PLowerBound a)
instance Plutarch.Builtin.PIsData (Plutarch.LedgerApi.Interval.PLowerBound a)
instance Plutarch.Internal.PlutusType.PlutusType (Plutarch.LedgerApi.Interval.PLowerBound a)
instance GHC.Generics.Generic (Plutarch.LedgerApi.Interval.PLowerBound a s)
instance (Plutarch.Builtin.PIsData a, Plutarch.Show.PShow a) => Plutarch.Show.PShow (Plutarch.LedgerApi.Interval.PInterval a)
instance (Plutarch.Builtin.PIsData a, Plutarch.Enum.PEnumerable a) => Plutarch.Internal.Ord.POrd (Plutarch.LedgerApi.Interval.PInterval a)
instance (Plutarch.Builtin.PIsData a, Plutarch.Enum.PEnumerable a) => Plutarch.Internal.Ord.PPartialOrd (Plutarch.LedgerApi.Interval.PInterval a)
instance Plutarch.Internal.Eq.PEq (Plutarch.LedgerApi.Interval.PInterval a)
instance Plutarch.DataRepr.Internal.Field.PDataFields (Plutarch.LedgerApi.Interval.PInterval a)
instance Plutarch.Builtin.PIsData (Plutarch.LedgerApi.Interval.PInterval a)
Expand All @@ -118,12 +113,12 @@ instance Plutarch.Internal.PlutusType.DerivePlutusType (Plutarch.LedgerApi.Inter
instance Plutarch.TryFrom.PTryFrom Plutarch.Builtin.PData a => Plutarch.TryFrom.PTryFrom Plutarch.Builtin.PData (Plutarch.LedgerApi.Interval.PInterval a)
instance Plutarch.TryFrom.PTryFrom Plutarch.Builtin.PData a => Plutarch.TryFrom.PTryFrom Plutarch.Builtin.PData (Plutarch.Builtin.PAsData (Plutarch.LedgerApi.Interval.PInterval a))
instance (Plutarch.Builtin.PIsData a, Plutarch.Enum.PCountable a) => Plutarch.Internal.Eq.PEq (Plutarch.LedgerApi.Interval.PLowerBound a)
instance (Plutarch.Builtin.PIsData a, Plutarch.Enum.PCountable a) => Plutarch.Internal.Ord.PPartialOrd (Plutarch.LedgerApi.Interval.PLowerBound a)
instance (Plutarch.Builtin.PIsData a, Plutarch.Enum.PCountable a) => Plutarch.Internal.Ord.POrd (Plutarch.LedgerApi.Interval.PLowerBound a)
instance Plutarch.Internal.PlutusType.DerivePlutusType (Plutarch.LedgerApi.Interval.PLowerBound a)
instance Plutarch.TryFrom.PTryFrom Plutarch.Builtin.PData a => Plutarch.TryFrom.PTryFrom Plutarch.Builtin.PData (Plutarch.LedgerApi.Interval.PLowerBound a)
instance Plutarch.TryFrom.PTryFrom Plutarch.Builtin.PData a => Plutarch.TryFrom.PTryFrom Plutarch.Builtin.PData (Plutarch.Builtin.PAsData (Plutarch.LedgerApi.Interval.PLowerBound a))
instance (Plutarch.Builtin.PIsData a, Plutarch.Enum.PEnumerable a) => Plutarch.Internal.Eq.PEq (Plutarch.LedgerApi.Interval.PUpperBound a)
instance (Plutarch.Builtin.PIsData a, Plutarch.Enum.PEnumerable a) => Plutarch.Internal.Ord.PPartialOrd (Plutarch.LedgerApi.Interval.PUpperBound a)
instance (Plutarch.Builtin.PIsData a, Plutarch.Enum.PEnumerable a) => Plutarch.Internal.Ord.POrd (Plutarch.LedgerApi.Interval.PUpperBound a)
instance Plutarch.Internal.PlutusType.DerivePlutusType (Plutarch.LedgerApi.Interval.PUpperBound a)
instance Plutarch.TryFrom.PTryFrom Plutarch.Builtin.PData a => Plutarch.TryFrom.PTryFrom Plutarch.Builtin.PData (Plutarch.LedgerApi.Interval.PUpperBound a)
instance Plutarch.TryFrom.PTryFrom Plutarch.Builtin.PData a => Plutarch.TryFrom.PTryFrom Plutarch.Builtin.PData (Plutarch.Builtin.PAsData (Plutarch.LedgerApi.Interval.PUpperBound a))
Expand Down Expand Up @@ -266,7 +261,6 @@ instance (PlutusTx.IsData.Class.ToData (Plutarch.Internal.Lift.AsHaskell a), Plu
instance Plutarch.Internal.Lift.PLiftable Plutarch.LedgerApi.Utils.PRationalData
instance Plutarch.Internal.PlutusType.PlutusType Plutarch.LedgerApi.Utils.PSBool
instance Plutarch.Internal.PlutusType.PlutusType (Plutarch.LedgerApi.Utils.PSBoolRaw a)
instance Plutarch.Internal.Ord.PPartialOrd Plutarch.LedgerApi.Utils.PRationalData
instance Plutarch.Internal.Ord.POrd Plutarch.LedgerApi.Utils.PRationalData
instance Plutarch.Internal.PlutusType.DerivePlutusType Plutarch.LedgerApi.Utils.PRationalData
instance Plutarch.TryFrom.PTryFrom Plutarch.Builtin.PData Plutarch.LedgerApi.Utils.PRationalData
Expand All @@ -275,8 +269,7 @@ instance Plutarch.Internal.PlutusType.PlutusType (Plutarch.LedgerApi.Utils.PMayb
instance Plutarch.Builtin.PIsData (Plutarch.LedgerApi.Utils.PMaybeData a)
instance Plutarch.TryFrom.PTryFrom Plutarch.Builtin.PData a => Plutarch.TryFrom.PTryFrom Plutarch.Builtin.PData (Plutarch.LedgerApi.Utils.PMaybeData a)
instance Plutarch.TryFrom.PTryFrom Plutarch.Builtin.PData a => Plutarch.TryFrom.PTryFrom Plutarch.Builtin.PData (Plutarch.Builtin.PAsData (Plutarch.LedgerApi.Utils.PMaybeData a))
instance (Plutarch.Builtin.PIsData a, Plutarch.Internal.Ord.PPartialOrd a) => Plutarch.Internal.Ord.PPartialOrd (Plutarch.LedgerApi.Utils.PMaybeData a)
instance (Plutarch.Builtin.PIsData a, Plutarch.Internal.Ord.PPartialOrd a) => Plutarch.Internal.Ord.POrd (Plutarch.LedgerApi.Utils.PMaybeData a)
instance (Plutarch.Builtin.PIsData a, Plutarch.Internal.Ord.POrd a) => Plutarch.Internal.Ord.POrd (Plutarch.LedgerApi.Utils.PMaybeData a)


-- | This module is designed to be imported qualified, as many of its
Expand Down Expand Up @@ -458,7 +451,7 @@ pkvPairValue :: forall (k :: S -> Type) (v :: S -> Type) (s :: S). PIsData v =>
-- | Compare two key-value pairs by their keys. Gives <a>PTrue</a> if the
-- key of the first argument pair is less than the key of the second
-- argument pair.
pkvPairLt :: forall (k :: S -> Type) (v :: S -> Type) (s :: S). (PIsData k, PPartialOrd k) => Term s (PBuiltinPair (PAsData k) (PAsData v) :--> (PBuiltinPair (PAsData k) (PAsData v) :--> PBool))
pkvPairLt :: forall (k :: S -> Type) (v :: S -> Type) (s :: S). (PIsData k, POrd k) => Term s (PBuiltinPair (PAsData k) (PAsData v) :--> (PBuiltinPair (PAsData k) (PAsData v) :--> PBool))

-- | Get a list-like structure full of the keys of the argument
-- <a>PMap</a>. If the <a>PMap</a> is <a>Sorted</a>, the keys will
Expand Down Expand Up @@ -567,6 +560,30 @@ padaOnlyValue :: forall (v :: AmountGuarantees) (s :: S). Term s (PValue 'Sorted
-- | Strip all Ada from a <a>PValue</a>.
pnoAdaValue :: forall (v :: AmountGuarantees) (s :: S). Term s (PValue 'Sorted v :--> PValue 'Sorted v)

-- | Mimics the <tt>lt</tt> operation on <tt>plutus-ledger-api</tt>'s
-- <tt>Value</tt>.
--
-- @since WIP
pltPositive :: forall (s :: S). Term s (PValue 'Sorted 'Positive) -> Term s (PValue 'Sorted 'Positive) -> Term s PBool

-- | As <a>pltPositive</a>, but for nonzero guaranteed <a>PValue</a>s
-- instead.
--
-- @since WIP
pltNonZero :: forall (s :: S). Term s (PValue 'Sorted 'NonZero) -> Term s (PValue 'Sorted 'NonZero) -> Term s PBool

-- | Mimics the <tt>leq</tt> operation on <tt>plutus-ledger-api</tt>'s
-- <tt>Value</tt>.
--
-- @since WIP
pleqPositive :: forall (s :: S). Term s (PValue 'Sorted 'Positive) -> Term s (PValue 'Sorted 'Positive) -> Term s PBool

-- | As <tt>pletPositive</tt>, but for nonzero guaranteed <a>PValue</a>s
-- instead.
--
-- @since WIP
pleqNonZero :: forall (s :: S). Term s (PValue 'Sorted 'NonZero) -> Term s (PValue 'Sorted 'NonZero) -> Term s PBool

-- | Given a description of a relation on amounts, check whether that
-- relation holds over sorted <a>PValue</a>s.
--
Expand Down Expand Up @@ -609,21 +626,19 @@ plovelaceValueOf :: forall (v :: AmountGuarantees) (s :: S). Term s (PValue 'Sor
pisAdaOnlyValue :: forall (s :: S). Term s (PValue 'Sorted 'Positive :--> PBool)
instance Plutarch.TryFrom.PTryFrom Plutarch.Builtin.PData Plutarch.LedgerApi.Value.PLovelace
instance Plutarch.Show.PShow Plutarch.LedgerApi.Value.PLovelace
instance Plutarch.Internal.Ord.PPartialOrd Plutarch.LedgerApi.Value.PLovelace
instance Plutarch.Internal.Ord.POrd Plutarch.LedgerApi.Value.PLovelace
instance Plutarch.Internal.Eq.PEq Plutarch.LedgerApi.Value.PLovelace
instance Plutarch.Builtin.PIsData Plutarch.LedgerApi.Value.PLovelace
instance Plutarch.Internal.PlutusType.PlutusType Plutarch.LedgerApi.Value.PLovelace
instance GHC.Generics.Generic (Plutarch.LedgerApi.Value.PLovelace s)
instance Plutarch.Show.PShow Plutarch.LedgerApi.Value.PTokenName
instance Plutarch.Internal.Ord.POrd Plutarch.LedgerApi.Value.PTokenName
instance Plutarch.Internal.Ord.PPartialOrd Plutarch.LedgerApi.Value.PTokenName
instance Plutarch.Internal.Eq.PEq Plutarch.LedgerApi.Value.PTokenName
instance Plutarch.Builtin.PIsData Plutarch.LedgerApi.Value.PTokenName
instance Plutarch.Internal.PlutusType.PlutusType Plutarch.LedgerApi.Value.PTokenName
instance GHC.Generics.Generic (Plutarch.LedgerApi.Value.PTokenName s)
instance Plutarch.Show.PShow Plutarch.LedgerApi.Value.PCurrencySymbol
instance Plutarch.Internal.Ord.POrd Plutarch.LedgerApi.Value.PCurrencySymbol
instance Plutarch.Internal.Ord.PPartialOrd Plutarch.LedgerApi.Value.PCurrencySymbol
instance Plutarch.Internal.Eq.PEq Plutarch.LedgerApi.Value.PCurrencySymbol
instance Plutarch.Builtin.PIsData Plutarch.LedgerApi.Value.PCurrencySymbol
instance Plutarch.Internal.PlutusType.PlutusType Plutarch.LedgerApi.Value.PCurrencySymbol
Expand All @@ -632,7 +647,6 @@ instance Plutarch.Show.PShow (Plutarch.LedgerApi.Value.PValue keys amounts)
instance Plutarch.Builtin.PIsData (Plutarch.LedgerApi.Value.PValue keys amounts)
instance Plutarch.Internal.PlutusType.PlutusType (Plutarch.LedgerApi.Value.PValue keys amounts)
instance GHC.Generics.Generic (Plutarch.LedgerApi.Value.PValue keys amounts s)
instance Plutarch.Internal.Ord.POrd Plutarch.LedgerApi.Value.PAssetClass
instance Plutarch.TryFrom.PTryFrom Plutarch.Builtin.PData Plutarch.LedgerApi.Value.PAssetClass
instance Plutarch.Show.PShow Plutarch.LedgerApi.Value.PAssetClass
instance Plutarch.Internal.Eq.PEq Plutarch.LedgerApi.Value.PAssetClass
Expand All @@ -644,14 +658,12 @@ instance Plutarch.Internal.Lift.PLiftable Plutarch.LedgerApi.Value.PTokenName
instance Plutarch.Internal.Lift.PLiftable Plutarch.LedgerApi.Value.PCurrencySymbol
instance Plutarch.Internal.Lift.PLiftable (Plutarch.LedgerApi.Value.PValue 'Plutarch.LedgerApi.AssocMap.Unsorted 'Plutarch.LedgerApi.Value.NoGuarantees)
instance Plutarch.Internal.Lift.PLiftable Plutarch.LedgerApi.Value.PAssetClass
instance Plutarch.Internal.Ord.PPartialOrd Plutarch.LedgerApi.Value.PAssetClass
instance Plutarch.Internal.Ord.POrd Plutarch.LedgerApi.Value.PAssetClass
instance Plutarch.Internal.PlutusType.DerivePlutusType Plutarch.LedgerApi.Value.PAssetClass
instance Plutarch.TryFrom.PTryFrom Plutarch.Builtin.PData (Plutarch.Builtin.PAsData Plutarch.LedgerApi.Value.PAssetClass)
instance Plutarch.Internal.PlutusType.DerivePlutusType (Plutarch.LedgerApi.Value.PValue keys amounts)
instance Plutarch.Internal.Eq.PEq (Plutarch.LedgerApi.Value.PValue 'Plutarch.LedgerApi.AssocMap.Sorted 'Plutarch.LedgerApi.Value.Positive)
instance Plutarch.Internal.Eq.PEq (Plutarch.LedgerApi.Value.PValue 'Plutarch.LedgerApi.AssocMap.Sorted 'Plutarch.LedgerApi.Value.NonZero)
instance Plutarch.Internal.Ord.PPartialOrd (Plutarch.LedgerApi.Value.PValue 'Plutarch.LedgerApi.AssocMap.Sorted 'Plutarch.LedgerApi.Value.Positive)
instance Plutarch.Internal.Ord.PPartialOrd (Plutarch.LedgerApi.Value.PValue 'Plutarch.LedgerApi.AssocMap.Sorted 'Plutarch.LedgerApi.Value.NonZero)
instance Plutarch.Internal.Eq.PEq (Plutarch.LedgerApi.Value.PValue 'Plutarch.LedgerApi.AssocMap.Sorted 'Plutarch.LedgerApi.Value.NoGuarantees)
instance GHC.Base.Semigroup (Plutarch.Internal.Term.Term s (Plutarch.LedgerApi.Value.PValue 'Plutarch.LedgerApi.AssocMap.Sorted 'Plutarch.LedgerApi.Value.Positive))
instance PlutusTx.Semigroup.Semigroup (Plutarch.Internal.Term.Term s (Plutarch.LedgerApi.Value.PValue 'Plutarch.LedgerApi.AssocMap.Sorted 'Plutarch.LedgerApi.Value.Positive))
Expand Down
Loading

0 comments on commit 071e4cc

Please sign in to comment.