-
Notifications
You must be signed in to change notification settings - Fork 55
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* margin_trading * update gas * skip_unwrap_near * update makefile * build release * add swap_by_output function * add check to internal_execute_actions_by_cache * update swap by output logic * add degen pool * update swap by output * update list_degen_configs to list_degen_oracle_configs * update degen oracle config * update stable_swap_ramp_amp * add release * fix test-token * add pool limit * add 1.9.3 wasm * check tvl limit in hotzap * add check in view * add check to get_tvl --------- Co-authored-by: Marco <[email protected]>
- Loading branch information
1 parent
d241d7a
commit 84f07dd
Showing
30 changed files
with
3,812 additions
and
192 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "ref-exchange" | ||
version = "1.9.2" | ||
version = "1.9.4" | ||
authors = ["Illia Polosukhin <[email protected]>"] | ||
edition = "2018" | ||
publish = 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
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 |
---|---|---|
@@ -1,2 +1,9 @@ | ||
// Key for rated token info | ||
pub const RATE_STORAGE_KEY: &str = "custom_rate_key"; | ||
pub const RATE_STORAGE_KEY: &str = "custom_rate_key"; | ||
|
||
// Key for degen token info | ||
pub const DEGEN_STORAGE_KEY: &str = "custom_degen_key"; | ||
pub const DEGEN_ORACLE_CONFIG_STORAGE_KEY: &str = "custom_degen_oracle_config_key"; | ||
|
||
// Key for pool limit | ||
pub const POOL_LIMIT: &str = "pl"; |
Oops, something went wrong.