feat: introduce UTxO RPC interop (#260)

This commit is contained in:
Santiago Carmuega 2023-06-11 03:52:48 +02:00 committed by GitHub
parent fb22d1b0e2
commit 4a849eec25
7 changed files with 515 additions and 1 deletions

18
pallas-utxorpc/Cargo.toml Normal file
View file

@ -0,0 +1,18 @@
[package]
name = "pallas-utxorpc"
description = "Pallas interoperability with the UTxORPC spec"
version = "0.19.0-alpha.0"
edition = "2021"
repository = "https://github.com/txpipe/pallas"
homepage = "https://github.com/txpipe/pallas"
documentation = "https://docs.rs/pallas-utxorpc"
license = "Apache-2.0"
readme = "README.md"
authors = ["Santiago Carmuega <santiago@carmuega.me>"]
[dependencies]
#utxorpc = { path = "../../../utxorpc/rust-sdk" }
utxorpc = { version = "1.0.0-alpha.1" }
pallas-traverse = { version = "0.19.0-alpha.0", path = "../pallas-traverse" }
pallas-primitives = { version = "0.19.0-alpha.0", path = "../pallas-primitives" }
pallas-codec = { version = "0.19.0-alpha.0", path = "../pallas-codec" }