Skip to content

Commit

Permalink
Merge pull request #1905 from CosmWasm/1887-add-mockapi-addr-make
Browse files Browse the repository at this point in the history
Add `make_addr` function to `MockApi`
  • Loading branch information
DariuszDepta authored Oct 6, 2023
2 parents 31c8b9f + 32c6ca7 commit e538daf
Show file tree
Hide file tree
Showing 15 changed files with 172 additions and 0 deletions.
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,8 @@ and this project adheres to

### Added

- cosmwasm-std: Add `addr_make` and `with_prefix` for
`cosmwasm_std::testing::MockApi` ([#1905]).
- cosmwasm-std: Add `abs` and `unsigned_abs` for `Int{64,128,256,512}`
([#1854]).
- cosmwasm-std: Add `From<Int{64,128,256}>` for `Int512`,
Expand All @@ -25,6 +27,7 @@ and this project adheres to
- cosmwasm-std: Add `SignedDecimal` and `SignedDecimal256` ([#1807]).
- cosmwasm-vm: Allow float operations with NaN canonicalization ([#1864]).

[#1905]: https://github.com/CosmWasm/cosmwasm/pull/1905
[#1854]: https://github.com/CosmWasm/cosmwasm/pull/1854
[#1861]: https://github.com/CosmWasm/cosmwasm/pull/1861
[#1866]: https://github.com/CosmWasm/cosmwasm/pull/1866
Expand Down
7 changes: 7 additions & 0 deletions Cargo.lock

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

7 changes: 7 additions & 0 deletions contracts/burner/Cargo.lock

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

7 changes: 7 additions & 0 deletions contracts/crypto-verify/Cargo.lock

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

7 changes: 7 additions & 0 deletions contracts/cyberpunk/Cargo.lock

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

7 changes: 7 additions & 0 deletions contracts/floaty/Cargo.lock

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

7 changes: 7 additions & 0 deletions contracts/hackatom/Cargo.lock

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

7 changes: 7 additions & 0 deletions contracts/ibc-reflect-send/Cargo.lock

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

7 changes: 7 additions & 0 deletions contracts/ibc-reflect/Cargo.lock

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

7 changes: 7 additions & 0 deletions contracts/queue/Cargo.lock

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

7 changes: 7 additions & 0 deletions contracts/reflect/Cargo.lock

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

7 changes: 7 additions & 0 deletions contracts/staking/Cargo.lock

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

7 changes: 7 additions & 0 deletions contracts/virus/Cargo.lock

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

1 change: 1 addition & 0 deletions packages/std/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -64,6 +64,7 @@ bnum = "0.8.0"
static_assertions = "1.1.0"

[target.'cfg(not(target_arch = "wasm32"))'.dependencies]
bech32 = "0.9.1"
cosmwasm-crypto = { path = "../crypto", version = "1.4.0" }

[dev-dependencies]
Expand Down
Loading

0 comments on commit e538daf

Please sign in to comment.