mirror of
https://github.com/serai-dex/serai.git
synced 2025-01-03 09:29:46 +00:00
Create a folder for tributary, the micro-blockchain
Moves tendermint again, this time under tributary.
This commit is contained in:
parent
c46cf47736
commit
09f8ac37c4
17 changed files with 40 additions and 1 deletions
7
Cargo.lock
generated
7
Cargo.lock
generated
|
@ -10670,6 +10670,13 @@ dependencies = [
|
||||||
"tracing-serde",
|
"tracing-serde",
|
||||||
]
|
]
|
||||||
|
|
||||||
|
[[package]]
|
||||||
|
name = "tributary-chain"
|
||||||
|
version = "0.1.0"
|
||||||
|
dependencies = [
|
||||||
|
"tendermint-machine",
|
||||||
|
]
|
||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "trie-db"
|
name = "trie-db"
|
||||||
version = "0.27.1"
|
version = "0.27.1"
|
||||||
|
|
|
@ -24,7 +24,8 @@ members = [
|
||||||
"processor/messages",
|
"processor/messages",
|
||||||
"processor",
|
"processor",
|
||||||
|
|
||||||
"coordinator/tendermint",
|
"coordinator/tributary/tendermint",
|
||||||
|
"coordinator/tributary",
|
||||||
"coordinator",
|
"coordinator",
|
||||||
|
|
||||||
"substrate/primitives",
|
"substrate/primitives",
|
||||||
|
|
11
coordinator/tributary/Cargo.toml
Normal file
11
coordinator/tributary/Cargo.toml
Normal 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" }
|
15
coordinator/tributary/LICENSE
Normal file
15
coordinator/tributary/LICENSE
Normal 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/>.
|
3
coordinator/tributary/README.md
Normal file
3
coordinator/tributary/README.md
Normal file
|
@ -0,0 +1,3 @@
|
||||||
|
# Tributary
|
||||||
|
|
||||||
|
A micro-blockchain to provide consensus and ordering to P2P communication.
|
1
coordinator/tributary/src/lib.rs
Normal file
1
coordinator/tributary/src/lib.rs
Normal file
|
@ -0,0 +1 @@
|
||||||
|
|
|
@ -50,6 +50,7 @@ exceptions = [
|
||||||
{ allow = ["AGPL-3.0"], name = "processor-messages" },
|
{ allow = ["AGPL-3.0"], name = "processor-messages" },
|
||||||
{ allow = ["AGPL-3.0"], name = "processor" },
|
{ allow = ["AGPL-3.0"], name = "processor" },
|
||||||
|
|
||||||
|
{ allow = ["AGPL-3.0"], name = "tributary-chain" },
|
||||||
{ allow = ["AGPL-3.0"], name = "coordinator" },
|
{ allow = ["AGPL-3.0"], name = "coordinator" },
|
||||||
|
|
||||||
{ allow = ["AGPL-3.0"], name = "tokens-pallet" },
|
{ allow = ["AGPL-3.0"], name = "tokens-pallet" },
|
||||||
|
|
Loading…
Reference in a new issue