Create a folder for tributary, the micro-blockchain

Moves tendermint again, this time under tributary.
This commit is contained in:
Luke Parker 2023-04-11 10:18:31 -04:00
parent c46cf47736
commit 09f8ac37c4
No known key found for this signature in database
17 changed files with 40 additions and 1 deletions

7
Cargo.lock generated
View file

@ -10670,6 +10670,13 @@ dependencies = [
"tracing-serde",
]
[[package]]
name = "tributary-chain"
version = "0.1.0"
dependencies = [
"tendermint-machine",
]
[[package]]
name = "trie-db"
version = "0.27.1"

View file

@ -24,7 +24,8 @@ members = [
"processor/messages",
"processor",
"coordinator/tendermint",
"coordinator/tributary/tendermint",
"coordinator/tributary",
"coordinator",
"substrate/primitives",

View file

@ -0,0 +1,11 @@
[package]
name = "tributary-chain"
version = "0.1.0"
description = "A micro-blockchain to provide consensus and ordering to P2P communication"
license = "AGPL-3.0-only"
repository = "https://github.com/serai-dex/serai/tree/develop/coordinator/tributary"
authors = ["Luke Parker <lukeparker5132@gmail.com>"]
edition = "2021"
[dependencies]
tendermint = { package = "tendermint-machine", path = "./tendermint" }

View file

@ -0,0 +1,15 @@
AGPL-3.0-only license
Copyright (c) 2023 Luke Parker
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU Affero General Public License Version 3 as
published by the Free Software Foundation.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU Affero General Public License for more details.
You should have received a copy of the GNU Affero General Public License
along with this program. If not, see <http://www.gnu.org/licenses/>.

View file

@ -0,0 +1,3 @@
# Tributary
A micro-blockchain to provide consensus and ordering to P2P communication.

View file

@ -0,0 +1 @@

View file

@ -50,6 +50,7 @@ exceptions = [
{ allow = ["AGPL-3.0"], name = "processor-messages" },
{ allow = ["AGPL-3.0"], name = "processor" },
{ allow = ["AGPL-3.0"], name = "tributary-chain" },
{ allow = ["AGPL-3.0"], name = "coordinator" },
{ allow = ["AGPL-3.0"], name = "tokens-pallet" },