-
Notifications
You must be signed in to change notification settings - Fork 39
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- rename `IbcVersionId` to `IbcSpecId` as this type no longer represents an IBC *version*, but rather the entire specification - clean up `ibc-solidity`, removing unused definitions and moving some that are only used in one place into said place where they're used. this crate now only defines the IBC stack itself, so the `ibc` module was also inlined - split IBC spec definitions out of `voyager-message` into their own crates - these crates define the interface of the individual IBC interfaces; there are still some rough edges but this is a good start - remove `ics24` module from `unionlabs` and move those store path definitions into the relevant IBC spec libraries - TODO: move `unionlabs::id` as well - `union-ibc` now depends on `voyager-core`. i'm not super happy about this, but it's fine for now - i'm still working on the library design for the IBC specs, but i will likely split them further such that `union-ibc` can only depend on the parts it needs.
- Loading branch information
Showing
70 changed files
with
3,146 additions
and
3,356 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
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
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
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
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
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
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
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
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
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
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,19 @@ | ||
[package] | ||
edition.workspace = true | ||
license-file.workspace = true | ||
name = "ibc-classic-spec" | ||
repository.workspace = true | ||
version = "0.1.0" | ||
|
||
[dependencies] | ||
enumorph.workspace = true | ||
macros.workspace = true | ||
serde = { workspace = true, features = ["derive"] } | ||
subset-of.workspace = true | ||
thiserror.workspace = true | ||
tracing.workspace = true | ||
unionlabs.workspace = true | ||
voyager-core.workspace = true | ||
|
||
[lints] | ||
workspace = true |
Oops, something went wrong.