Add processor/scheduler/utxo/primitives

Includes the necessary signing functions and the fee amortization logic.

Moves transaction-chaining to utxo/transaction-chaining.
This commit is contained in:
Luke Parker
2024-09-01 00:01:01 -04:00
parent fc765bb9e0
commit bd277e7032
12 changed files with 240 additions and 1 deletions

View File

@@ -0,0 +1,22 @@
[package]
name = "serai-processor-transaction-chaining-scheduler"
version = "0.1.0"
description = "Scheduler for networks with transaction chaining for the Serai processor"
license = "AGPL-3.0-only"
repository = "https://github.com/serai-dex/serai/tree/develop/processor/scheduler/transaction-chaining"
authors = ["Luke Parker <lukeparker5132@gmail.com>"]
keywords = []
edition = "2021"
publish = false
[package.metadata.docs.rs]
all-features = true
rustdoc-args = ["--cfg", "docsrs"]
[package.metadata.cargo-machete]
ignored = ["scale"]
[lints]
workspace = true
[dependencies]