forked from many-things/cw-hyperlane
-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Implement simple fee hook * Address pr comments * Fix unit tests * Make set fee only owner * Implement remaining unit tests * Fix merkle integration test use --------- Co-authored-by: nambrot <[email protected]> Co-authored-by: ByeongSu Hong <[email protected]>
- Loading branch information
1 parent
2cd2bfc
commit 05c34f7
Showing
10 changed files
with
430 additions
and
70 deletions.
There are no files selected for viewing
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,42 @@ | ||
[package] | ||
name = "hpl-hook-fee" | ||
version.workspace = true | ||
authors.workspace = true | ||
edition.workspace = true | ||
license.workspace = true | ||
repository.workspace = true | ||
homepage.workspace = true | ||
documentation.workspace = true | ||
keywords.workspace = true | ||
|
||
[lib] | ||
crate-type = ["cdylib", "rlib"] | ||
|
||
[features] | ||
# for more explicit tests, cargo test --features=backtraces | ||
backtraces = ["cosmwasm-std/backtraces"] | ||
# use library feature to disable all instantiate/execute/query exports | ||
library = [] | ||
|
||
[dependencies] | ||
cosmwasm-std.workspace = true | ||
cosmwasm-storage.workspace = true | ||
cosmwasm-schema.workspace = true | ||
|
||
cw-storage-plus.workspace = true | ||
cw2.workspace = true | ||
cw-utils.workspace = true | ||
|
||
schemars.workspace = true | ||
serde-json-wasm.workspace = true | ||
|
||
thiserror.workspace = true | ||
|
||
hpl-ownable.workspace = true | ||
hpl-interface.workspace = true | ||
|
||
[dev-dependencies] | ||
rstest.workspace = true | ||
ibcx-test-utils.workspace = true | ||
|
||
anyhow.workspace = true |
Oops, something went wrong.