Skip to content

Commit

Permalink
removing auth queries and base_decimal,oracle, transient orders, toke…
Browse files Browse the repository at this point in the history
…n factory, wasmx and staking tests. add changelog
  • Loading branch information
jbernal87 committed Mar 18, 2024
1 parent cdcc995 commit e921edc
Show file tree
Hide file tree
Showing 25 changed files with 1,595 additions and 637 deletions.
25 changes: 25 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
# Change Log

All notable changes to this project will be documented in this file.

The format is based on [Keep a Changelog](http://keepachangelog.com/)
and this project adheres to [Semantic Versioning](http://semver.org/).

## [Unreleased] - yyyy-mm-dd

### Added

### Changed


## [Unreleased] - 2024-03-18

### Added
- Tests queries (injective-cosmwasm-mock) covering functionality of querier.rs

### Fixed
- Exchange aggregate volume query to use the correct parsing.

### Removed
- Grants related queries.
- Exchange denom decimal query.
103 changes: 93 additions & 10 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

20 changes: 13 additions & 7 deletions contracts/injective-cosmwasm-mock/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -31,17 +31,23 @@ optimize = """docker run --rm -v "$(pwd)":/code \

[dependencies]
cosmwasm-std = { version = "1.5.0", features = [ "abort", "cosmwasm_1_2", "cosmwasm_1_3", "cosmwasm_1_4", "iterator", "stargate" ] }
cw-storage-plus = "1.2.0"
cw2 = "0.16.0"
cw-storage-plus = { version = "1.2.0" }
cw2 = { version = "0.16.0" }
injective-cosmwasm = { path = "../../packages/injective-cosmwasm" }
injective-math = { path = "../../packages/injective-math" }
schemars = { version ="0.8.16"}
injective-protobuf = { path = "../../packages/injective-protobuf"}
schemars = { version ="0.8.16"}
serde = { version = "1.0.196", default-features = false, features = [ "derive" ] }
thiserror = { version = "1.0.56" }
protobuf = "3.3.0"
prost = "0.11.9"
protobuf = { version = "3.3.0" }
prost = { version = "0.11.9" }
injective-std = { version = "0.1.5" }
cosmos-sdk-proto = { version = "0.20.0", default-features = false }
cosmwasm-schema = { version = "1.5.0" }



[dev-dependencies]
injective-test-tube = "1.1.7"
injective-std = { version = "0.1.5" }
injective-test-tube = { version = "1.1.7" }
injective-std = { version = "0.1.5" }
injective-testing = { version = "0.1.6" }
Loading

0 comments on commit e921edc

Please sign in to comment.