-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix(contract): Add changes for c value to redemption rate conversion (#…
…10)
- Loading branch information
Showing
15 changed files
with
542 additions
and
65 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,2 +1,2 @@ | ||
33d4183a9bc09e59274e83b9c9f3e8c2b58c0fdcda7e0974e375721597d6f337 liquid_stake_rate.wasm | ||
6ca74ff9e4bce522e60cd0f60f3eb67dab3e2d27ed7f768ba8ba650afa35a385 osmosis_pool_ratesync.wasm | ||
d236b94e91966ce710df5c0129b1352eb2d3404c30726fe936e255cb95fe1fe7 liquid_stake_rate.wasm | ||
c2653b4a954fbadcdd00e6cf548d0fb2760006f3e03722b6f92a0f9102a74a02 osmosis_pool_ratesync.wasm |
Binary file not shown.
Binary file not shown.
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,6 +1,6 @@ | ||
[package] | ||
name = "liquid-stake-rate" | ||
version = "1.0.0" | ||
version = "1.1.0" | ||
authors = ["Nabarun Sarkar <[email protected]>"] | ||
edition = "2021" | ||
|
||
|
@@ -29,8 +29,9 @@ optimize = """docker run --rm -v "$(pwd)":/code \ | |
""" | ||
|
||
[dependencies] | ||
ratesync = { path = "../../packages/ratesync", version = "1.0.0" } | ||
ratesync = { path = "../../packages/ratesync", version = "1.1.0" } | ||
|
||
const_format = "0.2.30" | ||
cosmwasm-schema = "1.3.3" | ||
cosmwasm-std = "1.3.3" | ||
cosmwasm-storage = "1.3.3" | ||
|
Oops, something went wrong.