Add 1st pass of Alonzo ledger primitives

This commit is contained in:
Santiago Carmuega 2021-11-25 22:04:19 -03:00
parent b78dc89319
commit b82c9f6a60
3 changed files with 553 additions and 0 deletions

View file

@ -7,5 +7,6 @@ members = [
"pallas-blockfetch",
"pallas-chainsync",
"pallas-txsubmission",
"pallas-alonzo",
"pallas",
]

13
pallas-alonzo/Cargo.toml Normal file
View file

@ -0,0 +1,13 @@
[package]
name = "pallas-alonzo"
version = "0.1.0"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
minicbor = "0.11.5"
minicbor-derive = "0.7.2"
hex = "0.4.3"
minicbor-io = "0.6.0"
log = "0.4.14"

539
pallas-alonzo/src/lib.rs Normal file

File diff suppressed because one or more lines are too long