Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add IBC capabilities #184

Merged
merged 30 commits into from
Jul 2, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
30 commits
Select commit Hold shift + click to select a range
b825cfb
Added IBC implementation
Kayanski Nov 2, 2023
77deabc
Perfected diff
Kayanski Nov 2, 2023
a08fd82
cw-multi-test ready for publishing
Kayanski Nov 22, 2023
d788c49
fix multi-index map namespace for connections
CyberHoward Nov 28, 2023
aa67a01
Merged with origin/main
Kayanski Dec 4, 2023
5f01510
Added cargo
Kayanski Dec 4, 2023
5c85eb9
Merge branch 'update/add-ibc-support' of github.com:AbstractSDK/cw-mu…
Kayanski Dec 4, 2023
3e827cc
Readed ibc logic in ibc.rs file
Kayanski Dec 4, 2023
c4e9fa1
Updated to 0.20.0
Kayanski Jan 12, 2024
581f40e
Cleaned repo
Kayanski Jan 12, 2024
ba22aef
Added ibc simple module as default
Kayanski Jan 17, 2024
33b9da8
Added sender in instantiate2 address
Kayanski Jan 23, 2024
abcf5f2
remove tokio from multi-test
Buckram123 Feb 14, 2024
e66357b
IBC - add timeout possiblity (#4)
Kayanski Feb 28, 2024
7f3be95
Prepared a branch for releases 1.0.x
DariuszDepta Mar 20, 2024
217e375
Reverted version number.
DariuszDepta Mar 21, 2024
67428f6
Bumped version number.
DariuszDepta Mar 21, 2024
29ce60c
Added co-author.
DariuszDepta Mar 21, 2024
0520097
Updated CHANGELOG.
DariuszDepta Mar 21, 2024
5cfbfea
Merge pull request #151 from CosmWasm/release_v1_0_0
DariuszDepta Mar 21, 2024
98f4eeb
Upated to cw-multi-test 1.0.0
Kayanski Apr 8, 2024
e2da4b7
Nits
Kayanski Apr 8, 2024
b0643e9
Updated main
Kayanski May 13, 2024
ad5e493
Start merge with cosmwasm-std v2
Kayanski May 14, 2024
dbf511c
Compiles but tests
Kayanski May 14, 2024
146101d
Added IBC implementation
Kayanski Jun 13, 2024
8e6642b
Nits
Kayanski Jun 13, 2024
b3adddc
Nits clippy
Kayanski Jun 13, 2024
a7e0192
Nits clippy
Kayanski Jun 13, 2024
00f5f76
Update src/ibc.rs
Kayanski Jun 18, 2024
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
160 changes: 119 additions & 41 deletions Cargo.lock

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

8 changes: 7 additions & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ name = "cw-multi-test"
version = "2.0.1"
authors = [
"Ethan Frey <[email protected]>",
"Dariusz Depta <[email protected]>"
"Dariusz Depta <[email protected]>",
]
description = "Testing tools for multi-contract interactions"
repository = "https://github.com/CosmWasm/cw-multi-test"
Expand Down Expand Up @@ -34,6 +34,12 @@ serde = "1.0.203"
sha2 = "0.10.8"
thiserror = "1.0.61"

serde_json = "1.0.40"
cosmwasm-schema = "2.0.3"
log = "0.4.20"
cw20-ics20 = "2.0.0"
hex = "0.4.3"

[dev-dependencies]
hex = "0.4.3"
hex-literal = "0.4.1"
Expand Down
Loading