-
Notifications
You must be signed in to change notification settings - Fork 155
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Implement
EqRaw
type class and require it for all memoized types
* Provide `EqRaw` instances for `TxCert`, `TxAuxData`, `TxWits`, `Script, `TxBody` and `Tx` for each era that defines one * Require and provide `ToExpr` instances for `TxCert`, `TxAuxData`, `Script` and `TxBody` * Simplify `specTxAuxDataUpgrade` test
- Loading branch information
Showing
50 changed files
with
295 additions
and
82 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
cabal-version: 3.0 | ||
name: cardano-ledger-allegra | ||
version: 1.2.1.2 | ||
version: 1.2.2.0 | ||
license: Apache-2.0 | ||
maintainer: [email protected] | ||
author: IOHK | ||
|
@@ -52,8 +52,8 @@ library | |
bytestring, | ||
cardano-crypto-class, | ||
cardano-ledger-binary >=1.0, | ||
cardano-ledger-core >=1.5 && <1.7, | ||
cardano-ledger-shelley >=1.5 && <1.6, | ||
cardano-ledger-core >=1.6 && <1.7, | ||
cardano-ledger-shelley >=1.5.1 && <1.6, | ||
cardano-strict-containers, | ||
cardano-slotting, | ||
cborg, | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
cabal-version: 3.0 | ||
name: cardano-ledger-alonzo | ||
version: 1.4.0.1 | ||
version: 1.4.1.0 | ||
license: Apache-2.0 | ||
maintainer: [email protected] | ||
author: IOHK | ||
|
@@ -67,7 +67,7 @@ library | |
cardano-ledger-allegra >=1.1, | ||
cardano-crypto-class, | ||
cardano-ledger-binary >=1.0.1, | ||
cardano-ledger-core >=1.5 && <1.7, | ||
cardano-ledger-core >=1.6 && <1.7, | ||
cardano-ledger-mary >=1.1, | ||
cardano-ledger-shelley ^>=1.5, | ||
cardano-slotting, | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
cabal-version: 3.0 | ||
name: cardano-ledger-babbage | ||
version: 1.4.3.1 | ||
version: 1.4.4.0 | ||
license: Apache-2.0 | ||
maintainer: [email protected] | ||
author: IOHK | ||
|
@@ -60,9 +60,9 @@ library | |
cardano-crypto-class, | ||
cardano-data >=1.0, | ||
cardano-ledger-allegra >=1.1, | ||
cardano-ledger-alonzo ^>=1.4, | ||
cardano-ledger-alonzo ^>=1.4.1, | ||
cardano-ledger-binary >=1.0, | ||
cardano-ledger-core >=1.5 && <1.7, | ||
cardano-ledger-core >=1.6 && <1.7, | ||
cardano-ledger-mary >=1.1, | ||
cardano-ledger-shelley ^>=1.5, | ||
cardano-slotting, | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.