-
Notifications
You must be signed in to change notification settings - Fork 107
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* update cargo files * Adds readmes * correct readme text * updates snowbridge versions and adds category tags * update polkadot-sdk * update polkadot-sdk * update polkadot-sdk --------- Co-authored-by: claravanstaden <Cats 4 life!>
- Loading branch information
1 parent
011cb7f
commit a90f0c9
Showing
37 changed files
with
176 additions
and
86 deletions.
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,8 @@ | ||
[workspace.package] | ||
authors = ["Snowfork <[email protected]>"] | ||
edition = "2021" | ||
repository = "https://github.com/snowfork/snowbridge.git" | ||
|
||
[workspace] | ||
resolver = "2" | ||
members = [ | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,11 +1,12 @@ | ||
[package] | ||
name = "snowbridge-ethereum-beacon-client" | ||
description = "Snowbridge Beacon Client Pallet" | ||
version = "0.0.1" | ||
edition = "2021" | ||
authors = ["Snowfork <[email protected]>"] | ||
repository = "https://github.com/Snowfork/snowbridge" | ||
version = "0.9.0" | ||
edition.workspace = true | ||
authors.workspace = true | ||
repository.workspace = true | ||
license = "Apache-2.0" | ||
categories = ["cryptography::cryptocurrencies"] | ||
|
||
[package.metadata.docs.rs] | ||
targets = ["x86_64-unknown-linux-gnu"] | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
# Ethereum Beacon Client | ||
|
||
The Ethereum Beacon Client is an on-chain light client that tracks Ethereum consensus using the beacon chain. |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,11 +1,12 @@ | ||
[package] | ||
name = "snowbridge-inbound-queue" | ||
description = "Snowbridge Inbound Queue" | ||
version = "0.1.1" | ||
edition = "2021" | ||
authors = ["Snowfork <[email protected]>"] | ||
repository = "https://github.com/Snowfork/snowbridge" | ||
version = "0.9.0" | ||
edition.workspace = true | ||
authors.workspace = true | ||
repository.workspace = true | ||
license = "Apache-2.0" | ||
categories = ["cryptography::cryptocurrencies"] | ||
|
||
[package.metadata.docs.rs] | ||
targets = ["x86_64-unknown-linux-gnu"] | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
# Ethereum Inbound Queue | ||
|
||
Reads messages from Ethereum and sends it to intended destination on Polkadot, using XCM. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,11 +1,12 @@ | ||
[package] | ||
name = "snowbridge-outbound-queue" | ||
description = "Snowbridge Outbound Queue" | ||
version = "0.1.1" | ||
edition = "2021" | ||
authors = ["Snowfork <[email protected]>"] | ||
repository = "https://github.com/Snowfork/snowbridge" | ||
version = "0.9.0" | ||
edition.workspace = true | ||
authors.workspace = true | ||
repository.workspace = true | ||
license = "Apache-2.0" | ||
categories = ["cryptography::cryptocurrencies"] | ||
|
||
[package.metadata.docs.rs] | ||
targets = ["x86_64-unknown-linux-gnu"] | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
# Ethereum Outbound Queue | ||
|
||
Sends messages from an origin in the Polkadot ecosystem to Ethereum. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,11 +1,12 @@ | ||
[package] | ||
name = "snowbridge-outbound-queue-merkle-tree" | ||
description = "Snowbridge Outbound Queue Merkle Tree" | ||
version = "0.1.1" | ||
edition = "2021" | ||
authors = ["Snowfork <[email protected]>"] | ||
repository = "https://github.com/Snowfork/snowbridge" | ||
version = "0.9.0" | ||
edition.workspace = true | ||
authors.workspace = true | ||
repository.workspace = true | ||
license = "Apache-2.0" | ||
categories = ["cryptography::cryptocurrencies"] | ||
|
||
[package.metadata.docs.rs] | ||
targets = ["x86_64-unknown-linux-gnu"] | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
# Snowbridge Outbound Queue Merkle Tree | ||
|
||
This crate implements a simple binary Merkle Tree utilities required for inter-op with Ethereum | ||
bridge & Solidity contract. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,11 +1,12 @@ | ||
[package] | ||
name = "snowbridge-outbound-queue-runtime-api" | ||
description = "Snowbridge Outbound Queue Runtime API" | ||
version = "0.1.0" | ||
edition = "2021" | ||
authors = ["Snowfork <[email protected]>"] | ||
repository = "https://github.com/Snowfork/snowbridge" | ||
version = "0.9.0" | ||
edition.workspace = true | ||
authors.workspace = true | ||
repository.workspace = true | ||
license = "Apache-2.0" | ||
categories = ["cryptography::cryptocurrencies"] | ||
|
||
[package.metadata.docs.rs] | ||
targets = ["x86_64-unknown-linux-gnu"] | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
# Ethereum Outbound Queue Runtime API | ||
|
||
Provides an API: | ||
|
||
- to generate merkle proofs for outbound messages | ||
- calculate delivery fee for delivering messages to Ethereum |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,11 +1,12 @@ | ||
[package] | ||
name = "snowbridge-system" | ||
description = "Snowbridge System" | ||
version = "0.1.1" | ||
authors = ["Snowfork <[email protected]>"] | ||
edition = "2021" | ||
repository = "https://github.com/Snowfork/snowbridge" | ||
version = "0.9.0" | ||
edition.workspace = true | ||
authors.workspace = true | ||
repository.workspace = true | ||
license = "Apache-2.0" | ||
categories = ["cryptography::cryptocurrencies"] | ||
|
||
[package.metadata.docs.rs] | ||
targets = ["x86_64-unknown-linux-gnu"] | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1,3 @@ | ||
License: MIT-0 | ||
# Ethereum System | ||
|
||
Contains management functions to manage functions on Ethereum. For example, creating agents and channels. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,11 +1,12 @@ | ||
[package] | ||
name = "snowbridge-system-runtime-api" | ||
description = "Snowbridge System Runtime API" | ||
version = "0.1.0" | ||
edition = "2021" | ||
authors = ["Snowfork <[email protected]>"] | ||
repository = "https://github.com/Snowfork/snowbridge" | ||
version = "0.9.0" | ||
edition.workspace = true | ||
authors.workspace = true | ||
repository.workspace = true | ||
license = "Apache-2.0" | ||
categories = ["cryptography::cryptocurrencies"] | ||
|
||
[package.metadata.docs.rs] | ||
targets = ["x86_64-unknown-linux-gnu"] | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
# Ethereum System Runtime API | ||
|
||
Provides an API for looking up an agent ID on Ethereum. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,12 @@ | ||
[package] | ||
name = "snowbridge-beacon-primitives" | ||
description = "Snowbridge Beacon Primitives" | ||
version = "0.0.1" | ||
authors = ["Snowfork <[email protected]>"] | ||
edition = "2021" | ||
version = "0.9.0" | ||
edition.workspace = true | ||
authors.workspace = true | ||
repository.workspace = true | ||
license = "Apache-2.0" | ||
categories = ["cryptography::cryptocurrencies"] | ||
|
||
[dependencies] | ||
serde = { version = "1.0.188", optional = true, features = ["derive"] } | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
# Beacon Primitives | ||
|
||
Crate with low-level supporting functions for the beacon client, including: | ||
|
||
- bls12-381 signature handling to verify signatures on the beacon chain | ||
- merkle proofs | ||
- receipt verification | ||
- ssz types | ||
|
||
The code in this crate relates to the Ethereum consensus chain, commonly referred to as the beacon chain. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,12 @@ | ||
[package] | ||
name = "snowbridge-core" | ||
description = "Snowbridge Core" | ||
version = "0.1.1" | ||
authors = ["Snowfork <[email protected]>"] | ||
edition = "2021" | ||
version = "0.9.0" | ||
edition.workspace = true | ||
authors.workspace = true | ||
repository.workspace = true | ||
license = "Apache-2.0" | ||
categories = ["cryptography::cryptocurrencies"] | ||
|
||
[dependencies] | ||
serde = { version = "1.0.188", optional = true, features = ["alloc", "derive"], default-features = false } | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
# Core Primitives | ||
|
||
Contains common code core to Snowbridge, such as inbound and outbound queue types, pricing structs, ringbuffer data | ||
types (used in the beacon client). |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,12 @@ | ||
[package] | ||
name = "snowbridge-ethereum" | ||
description = "Snowbridge Ethereum" | ||
version = "0.1.0" | ||
authors = ["Snowfork <[email protected]>"] | ||
edition = "2021" | ||
version = "0.9.0" | ||
edition.workspace = true | ||
authors.workspace = true | ||
repository.workspace = true | ||
license = "Apache-2.0" | ||
categories = ["cryptography::cryptocurrencies"] | ||
|
||
[dependencies] | ||
serde = { version = "1.0.188", optional = true, features = ["derive"] } | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
# Ethereum Primitives | ||
|
||
Contains code necessary to decode RLP encoded data (like the Ethereum log), structs for Ethereum execution headers. The | ||
code in this crate relates to the Ethereum execution chain. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,12 @@ | ||
[package] | ||
name = "snowbridge-router-primitives" | ||
description = "Snowbridge Router Primitives" | ||
version = "0.1.1" | ||
authors = ["Snowfork <[email protected]>"] | ||
edition = "2021" | ||
version = "0.9.0" | ||
edition.workspace = true | ||
authors.workspace = true | ||
repository.workspace = true | ||
license = "Apache-2.0" | ||
categories = ["cryptography::cryptocurrencies"] | ||
|
||
[dependencies] | ||
serde = { version = "1.0.188", optional = true, features = ["derive"] } | ||
|
Oops, something went wrong.