-
Notifications
You must be signed in to change notification settings - Fork 1.2k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
consistent state lens naming and removed the ethereum light client migration as it was a one time use migration. removed a bunch of dead code as well.
- Loading branch information
Showing
76 changed files
with
3,835 additions
and
5,454 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 was deleted.
Oops, something went wrong.
33 changes: 33 additions & 0 deletions
33
cosmwasm/ibc-union/light-clients/state-lens-ics23-mpt/Cargo.toml
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,33 @@ | ||
[package] | ||
authors = ["Union Labs"] | ||
edition = "2021" | ||
license-file = { workspace = true } | ||
name = "evm-in-cosmos-light-client" | ||
publish = false | ||
version = "0.1.0" | ||
|
||
[lints] | ||
workspace = true | ||
|
||
[lib] | ||
crate-type = ["cdylib", "rlib"] | ||
|
||
[dependencies] | ||
cometbls-light-client = { workspace = true, features = ["library"] } | ||
cosmwasm-std = { workspace = true, features = ["abort"] } | ||
ethereum-light-client-types = { workspace = true, features = ["serde", "ethabi", "bincode"] } | ||
evm-storage-verifier = { workspace = true } | ||
ibc-union-light-client = { workspace = true } | ||
ibc-union-msg = { workspace = true } | ||
ibc-union-spec = { workspace = true } | ||
ics23 = { workspace = true } | ||
rlp = { workspace = true } | ||
serde = { workspace = true, features = ["derive"] } | ||
state-lens-ics23-mpt-light-client-types = { workspace = true, features = ["serde", "ethabi", "bincode"] } | ||
thiserror = { workspace = true } | ||
unionlabs = { workspace = true, features = ["ethabi", "stargate", "bincode"] } | ||
|
||
[features] | ||
default = [] | ||
# enabling this feature disables exposing the entrypoints and setting `#[global_allocator]` | ||
library = [] |
File renamed without changes.
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
Oops, something went wrong.