-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #15 from InjectiveLabs/b/fix-multihop-buys
fix/feat: add fix for multi-hop buys and contract migration system
- Loading branch information
Showing
20 changed files
with
504 additions
and
87 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
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 |
---|---|---|
@@ -0,0 +1,47 @@ | ||
# Changelog | ||
|
||
All notable changes to this project will be documented in this file. | ||
|
||
## [Unreleased] | ||
|
||
### Added | ||
|
||
- | ||
|
||
### Changed | ||
|
||
- | ||
|
||
### Fixed | ||
|
||
- | ||
|
||
## [Version v1.1.0] - 2024-02-24 | ||
|
||
### Added | ||
|
||
- This Changelog file | ||
- `rust-toolchain` file | ||
- Contract migration templates and migrate function | ||
|
||
### Changed | ||
|
||
- | ||
|
||
### Fixed | ||
|
||
- Correctly round to `min_quantity_tick_size` in intermediate steps for multi-hop buys | ||
|
||
## [Version v1.0.0] - 2024-02-16 | ||
|
||
### Added | ||
|
||
- Versioning into contract | ||
|
||
### Changed | ||
|
||
- Updated to latest CosmWasm version | ||
|
||
### Fixed | ||
|
||
- |
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,8 +1,8 @@ | ||
[package] | ||
authors = [ "Markus Waas <[email protected]>" ] | ||
edition = "2021" | ||
name = "injective-converter" | ||
version = "1.0.0" | ||
name = "swap-contract" | ||
version = "1.0.1" | ||
|
||
exclude = [ | ||
# Those files are rust-optimizer artifacts. You might want to commit them for convenience but they should not be part of the source code publication. | ||
|
@@ -45,6 +45,7 @@ serde-json-wasm = "0.5.1" | |
thiserror = { version = "1.0.31" } | ||
|
||
[dev-dependencies] | ||
cosmos-sdk-proto = { version = "0.19.0", default-features = false } | ||
cosmwasm-schema = "1.5.0" | ||
cw-multi-test = "0.16.2" | ||
injective-std = { version = "0.1.5" } | ||
|
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
Oops, something went wrong.