forked from IntersectMBO/cardano-ledger
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Babbage: TxBody + TxOut (IntersectMBO#2560)
* add babbage era, TxBody and TxOut * update collateralReturn * reuse Alonzo code, update TxOut * revert pattern synonym change * WIP * correct FromCBOR instance * Update eras/babbage/impl/src/Cardano/Ledger/Babbage/TxBody.hs Co-authored-by: Alexey Kuleshevich <alexey.kuleshevich@iohk.io> Co-authored-by: Alexey Kuleshevich <alexey.kuleshevich@iohk.io>
- Loading branch information
Showing
7 changed files
with
994 additions
and
0 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
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 |
---|---|---|
@@ -0,0 +1 @@ | ||
-c "nix-shell ../../shell.nix --run \"cabal repl cardano-ledger-babbage\"" -o ghcid.txt |
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 |
---|---|---|
@@ -0,0 +1,3 @@ | ||
import Distribution.Simple | ||
|
||
main = defaultMain |
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 |
---|---|---|
@@ -0,0 +1,71 @@ | ||
cabal-version: 3.0 | ||
|
||
name: cardano-ledger-babbage | ||
version: 0.1.0.0 | ||
synopsis: TODO | ||
description: TODO | ||
bug-reports: https://github.com/input-output-hk/cardano-ledger/issues | ||
license: Apache-2.0 | ||
author: IOHK Formal Methods Team | ||
maintainer: formal.methods@iohk.io | ||
copyright: 2020 Input Output (Hong Kong) Ltd. | ||
category: Network | ||
build-type: Simple | ||
|
||
source-repository head | ||
type: git | ||
location: https://github.com/input-output-hk/cardano-ledger | ||
subdir: eras/babbage/impl | ||
|
||
common base | ||
build-depends: base >= 4.12 && < 4.15 | ||
|
||
common project-config | ||
default-language: Haskell2010 | ||
|
||
ghc-options: -Wall | ||
-Wcompat | ||
-Wincomplete-record-updates | ||
-Wincomplete-uni-patterns | ||
-Wpartial-fields | ||
-Wredundant-constraints | ||
-- -Wunused-packages | ||
|
||
library | ||
import: base, project-config | ||
exposed-modules: | ||
Cardano.Ledger.Babbage.TxBody | ||
build-depends: | ||
array, | ||
base-deriving-via, | ||
base64-bytestring, | ||
bytestring, | ||
cardano-binary, | ||
cardano-crypto-class, | ||
cardano-data, | ||
cardano-ledger-alonzo, | ||
cardano-ledger-core, | ||
cardano-ledger-shelley, | ||
cardano-ledger-shelley-ma, | ||
cardano-prelude, | ||
cardano-slotting, | ||
containers, | ||
data-default, | ||
deepseq, | ||
measures, | ||
mtl, | ||
nothunks, | ||
plutus-core, | ||
plutus-ledger-api, | ||
plutus-tx, | ||
prettyprinter, | ||
serialise, | ||
set-algebra, | ||
small-steps, | ||
strict-containers, | ||
text, | ||
time, | ||
transformers, | ||
utf8-string, | ||
hs-source-dirs: | ||
src |
Oops, something went wrong.