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

feat: adding authz support for ICS-20 MsgTransfer #2795

Merged
merged 46 commits into from
Dec 19, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
46 commits
Select commit Hold shift + click to select a range
8a7f2bf
ibc transfer authz work
icafa Sep 27, 2022
f84bb92
add allowed address restriction for ibc transfer authz
icafa Oct 3, 2022
2b5ea19
expect error when transferring to not allowed address
icafa Oct 3, 2022
805afdf
feat: authz grants for ics-20 transfers
icafa Sep 27, 2022
0bcb95e
convert IsAllPositive to Validate
icafa Dec 5, 2022
d09caaf
Merge branch 'ibc_transfer_authz' of github.com:iqlusioninc/ibc-go in…
icafa Dec 5, 2022
3290c18
add gas cost per interation
icafa Dec 5, 2022
288f9c0
duplicated entry check
icafa Dec 5, 2022
2d33a9f
Merge branch 'main' into ibc_transfer_authz
icafa Dec 5, 2022
1742c54
chore: scaffold custom IBC light client development guide (#2860)
charleenfei Dec 5, 2022
412e213
chore: changing ibcprotocol.org to ibcprotocol.dev (#2884)
chatton Dec 6, 2022
72fe693
chore: update README to include link to IDA (#2887)
charleenfei Dec 6, 2022
85ebc84
feat: Add genesis migrations for v6 to v7. The migration migrates the…
colin-axner Dec 7, 2022
19c79ae
refactor: simplify automatic migration code by using client keeper fu…
colin-axner Dec 7, 2022
83854f4
imp(api)!: remove legacy migrations required for upgrading from Starg…
colin-axner Dec 7, 2022
6bb1543
chore: remove unnecessary file (#2898)
colin-axner Dec 7, 2022
ab2e995
Update release-tracker.md
Dec 8, 2022
f5e0233
docs: v6 ICA migration docs improvements
Dec 8, 2022
2728e7d
e2e: changing default relayer tag to be v2.1.2 instead of main. (#2903)
chatton Dec 8, 2022
0dc8d1d
refactor: simplify optional tendermint pruning migrations (#2862)
colin-axner Dec 8, 2022
ce4d771
chore: add tmsdkeys to CODEOWNER for docs (#2904)
colin-axner Dec 8, 2022
8ad5932
docs: add legacy docs for ICA
Dec 8, 2022
04cbd60
docs: added documentation for client state methods. (#2886)
chatton Dec 8, 2022
a25a9d0
docs: improvements to ICA docs
Dec 8, 2022
9d7922f
docs: move solomachine docs into the docs directory. (#2908)
chatton Dec 8, 2022
514ad39
deps: bump technote-space/get-diff-action from 6.1.1 to 6.1.2 (#2899)
dependabot[bot] Dec 8, 2022
d1fbdbd
deps: bump github.com/cosmos/cosmos-proto from 1.0.0-alpha8 to 1.0.0-…
dependabot[bot] Dec 8, 2022
e1c29e5
update README (#2910)
charleenfei Dec 9, 2022
267359b
Update CHANGELOG.md
Dec 9, 2022
a5ff864
chore: update ibctest to latest commit (#2909)
charleenfei Dec 12, 2022
bfe7ee8
Fixing markdown link (#2924)
chatton Dec 12, 2022
a322103
post v6.0.0 release chores (#2919)
Dec 12, 2022
bb08f5e
docs: update integration docs to include light client registration. (…
chatton Dec 12, 2022
2220957
imp: Add `AssertEvents` which asserts events against expected event m…
Anmol1696 Dec 12, 2022
6afa1b6
e2e: adding e2e upgrade test for ibc-go v7 (#2902)
charleenfei Dec 12, 2022
cd51cc9
e2e: update tags in e2e upgrade test
Dec 14, 2022
1078875
chore: use diffs to make registration more clear (#2927)
colin-axner Dec 14, 2022
2ea8655
nit: fix typo in a comment
francas Dec 14, 2022
3be0b63
refactor: require light clients to set the initial client state and c…
damiannolan Dec 15, 2022
e8f6eaf
chore: add backports for v4.3.x and v6.1.x
Dec 16, 2022
ee13f34
update compatibility tests with new release branches (#2946)
Dec 16, 2022
d3be95a
fix(statemachine)!: check x/bank send enabled before escrowing fees
Dec 17, 2022
6604b59
chore(deps): bump goreleaser/goreleaser-action from 3 to 4 (#2932)
dependabot[bot] Dec 19, 2022
ddc4f2d
chore(api)!: removing solomachine header sequence (#2941)
damiannolan Dec 19, 2022
0deb8ad
chore(deps): bump bufbuild/buf-setup-action from 1.9.0 to 1.10.0 (#2933)
dependabot[bot] Dec 19, 2022
8f2bbd2
Resolve some code review comments
zmanian Dec 19, 2022
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
8 changes: 3 additions & 5 deletions .github/CODEOWNERS
Validating CODEOWNERS rules …
Original file line number Diff line number Diff line change
Expand Up @@ -18,11 +18,6 @@
/modules/core/ @colin-axner @AdityaSripal @damiannolan
/proto/ibc/core/ @colin-axner @AdityaSripal @damiannolan

## CODEOWNERS for core/02-client

/modules/core/02-client @colin-axner @AdityaSripal @damiannolan
/proto/ibc/core/client @colin-axner @AdityaSripal @damiannolan

# CODEOWNERS for the light-clients

/modules/light-clients/ @colin-axner @AdityaSripal @damiannolan
Expand All @@ -42,3 +37,6 @@

/modules/apps/29-fee/ @AdityaSripal @charleenfei @colin-axner @damiannolan
/proto/ibc/applications/fee/ @AdityaSripal @charleenfei @colin-axner @damiannolan

# CODEOWNERS for docs
/docs/ @colin-axner @AdityaSripal @crodriguezvega @charleenfei @damiannolan @chatton @tmsdkeys
10 changes: 6 additions & 4 deletions .github/ISSUE_TEMPLATE/release-tracker.md
Original file line number Diff line number Diff line change
Expand Up @@ -26,10 +26,11 @@ v without deliberation
<!-- List of tests that need be performed with previous
versions of ibc-go to guarantee that no regression is introduced -->

- [ ] Fungible token transfers over a non-incentivised channel works with a counterparty chain running each previous major version.
- [ ] Fungible token transfers over an incentivised channel works with a counterparty chain running each previous major version that supports ICS-29 Fee Middleware.
- [ ] Interchain Accounts over a non-incentivised channel works with a counterparty chain running each previous major version that supports ICS-27 Interchain Accounts over non-incentivised channels.
- [ ] Interchain Accounts over an incentivised channel works with a counterparty chain running each previous major version that supports ICS-27 Interchain Accounts over incentivised channels.
- [ ] [Compatibility tests](https://github.com/cosmos/ibc-go/actions/workflows/e2e-compatibility.yaml) pass for the release branch.
- [ ] [Upgrade tests](https://github.com/cosmos/ibc-go/actions/workflows/e2e-upgrade.yaml) pass.
- [ ] [Interchain Accounts inter-tx tests](https://github.com/cosmos/interchain-accounts-demo/actions/workflows/e2e-compatibility.yaml) pass.

### Other testing

## Migration

Expand Down Expand Up @@ -57,6 +58,7 @@ versions of ibc-go to guarantee that no regression is introduced -->
- [ ] Add new release branch to [`docs/versions`](https://github.com/cosmos/ibc-go/blob/main/docs/versions) file.
- [ ] Add `label` and `key` to `versions` array in [`config.js`](https://github.com/cosmos/ibc-go/blob/main/docs/.vuepress/config.js#L62).
- [ ] After changes to docs site are deployed, check [ibc.cosmos.network](https://ibc.cosmos.network) is updated.
- [ ] Open issue in [SDK tutorials repo](https://github.com/cosmos/sdk-tutorials) to update tutorials to the released version of ibc-go.

____

Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"chain-a": ["release-v2.5.x"],
"chain-b": ["release-v2.5.x", "v5.1.0", "v5.0.1", "v4.2.0", "v4.1.1", "v3.4.0", "v3.3.1", "v2.5.0", "v2.4.2"],
"chain-b": ["release-v2.5.x", "v6.0.0", "v5.1.0", "v5.0.1", "v4.2.0", "v4.1.1", "v3.4.0", "v3.3.1", "v2.5.0", "v2.4.2"],
"entrypoint": ["TestTransferTestSuite"],
"test": [
"TestMsgTransfer_Succeeds_Nonincentivized",
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"chain-a": ["release-v2.5.x", "v5.1.0", "v5.0.1", "v4.2.0", "v4.1.1", "v3.4.0", "v3.3.1", "v2.5.0", "v2.4.2"],
"chain-a": ["release-v2.5.x", "v6.0.0", "v5.1.0", "v5.0.1", "v4.2.0", "v4.1.1", "v3.4.0", "v3.3.1", "v2.5.0", "v2.4.2"],
"chain-b": ["release-v2.5.x"],
"entrypoint": ["TestTransferTestSuite"],
"test": [
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"chain-a": ["release-v3.4.x"],
"chain-b": ["release-v3.4.x", "v5.1.0", "v5.0.1", "v4.2.0", "v4.1.1", "v3.4.0", "v3.3.1", "v2.5.0", "v2.4.2"],
"chain-b": ["release-v3.4.x", "v6.0.0", "v5.1.0", "v5.0.1", "v4.2.0", "v4.1.1", "v3.4.0", "v3.3.1", "v2.5.0", "v2.4.2"],
"entrypoint": ["TestTransferTestSuite"],
"test": [
"TestMsgTransfer_Succeeds_Nonincentivized",
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"chain-a": ["release-v3.4.x", "v5.1.0", "v5.0.1", "v4.2.0", "v4.1.1", "v3.4.0", "v3.3.1", "v2.5.0", "v2.4.2"],
"chain-a": ["release-v3.4.x", "v6.0.0", "v5.1.0", "v5.0.1", "v4.2.0", "v4.1.1", "v3.4.0", "v3.3.1", "v2.5.0", "v2.4.2"],
"chain-b": ["release-v3.4.x"],
"entrypoint": ["TestTransferTestSuite"],
"test": [
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"chain-a": ["release-v4.2.x"],
"chain-b": ["release-v4.2.x", "v5.1.0", "v5.0.1", "v4.1.1"],
"chain-b": ["release-v4.2.x", "v6.0.0", "v5.1.0", "v5.0.1", "v4.1.1"],
"entrypoint": ["TestIncentivizedTransferTestSuite"],
"test": [
"TestMsgPayPacketFee_AsyncSingleSender_Succeeds",
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"chain-a": ["release-v4.2.x", "v5.1.0", "v5.0.1", "v4.1.1"],
"chain-a": ["release-v4.2.x", "v6.0.0", "v5.1.0", "v5.0.1", "v4.1.1"],
"chain-b": ["release-v4.2.x"],
"entrypoint": ["TestIncentivizedTransferTestSuite"],
"test": [
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"chain-a": ["release-v4.2.x"],
"chain-b": ["release-v4.2.x", "v5.1.0", "v5.0.1", "v4.1.1", "v3.4.0", "v3.3.1", "v2.5.0", "v2.4.2"],
"chain-b": ["release-v4.2.x", "v6.0.0", "v5.1.0", "v5.0.1", "v4.1.1", "v3.4.0", "v3.3.1", "v2.5.0", "v2.4.2"],
"entrypoint": ["TestTransferTestSuite"],
"test": [
"TestMsgTransfer_Succeeds_Nonincentivized",
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"chain-a": ["release-v4.2.x", "v5.1.0", "v5.0.1", "v4.1.1", "v3.4.0", "v3.3.1", "v2.5.0", "v2.4.2"],
"chain-a": ["release-v4.2.x", "v6.0.0", "v5.1.0", "v5.0.1", "v4.1.1", "v3.4.0", "v3.3.1", "v2.5.0", "v2.4.2"],
"chain-b": ["release-v4.2.x"],
"entrypoint": ["TestTransferTestSuite"],
"test": [
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"chain-a": ["release-v5.0.x"],
"chain-b": ["release-v5.0.x", "v5.1.0", "v4.2.0", "v4.1.1"],
"chain-a": ["release-v4.3.x"],
"chain-b": ["release-v4.3.x", "v6.0.0", "v5.1.0", "v5.0.1", "4.2.0", "v4.1.1"],
"entrypoint": ["TestIncentivizedTransferTestSuite"],
"test": [
"TestMsgPayPacketFee_AsyncSingleSender_Succeeds",
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"chain-a": ["release-v6.0.x", "v5.1.0", "v5.0.1", "v4.2.0", "v4.1.1"],
"chain-b": ["release-v6.0.x"],
"chain-a": ["release-v4.3.x", "v6.0.0", "v5.1.0", "v5.0.1", "4.2.0", "v4.1.1"],
"chain-b": ["release-v4.3.x"],
"entrypoint": ["TestIncentivizedTransferTestSuite"],
"test": [
"TestMsgPayPacketFee_AsyncSingleSender_Succeeds",
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"chain-a": ["release-v6.0.x"],
"chain-b": ["release-v6.0.x", "v5.1.0", "v5.0.1", "v4.2.0", "v4.1.1", "v3.4.0", "v3.3.1", "v2.5.0", "v2.4.2"],
"chain-a": ["release-v4.3.x"],
"chain-b": ["release-v4.3.x", "v6.0.0", "v5.1.0", "v5.0.1", "4.2.0", "v4.1.1", "v3.4.0", "v3.3.1", "v2.5.0", "v2.4.2"],
"entrypoint": ["TestTransferTestSuite"],
"test": [
"TestMsgTransfer_Succeeds_Nonincentivized",
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"chain-a": ["release-v6.0.x", "v5.1.0", "v5.0.1", "v4.2.0", "v4.1.1", "v3.4.0", "v3.3.1", "v2.5.0", "v2.4.2"],
"chain-b": ["release-v6.0.x"],
"chain-a": ["release-v4.3.x", "v6.0.0", "v5.1.0", "v5.0.1", "4.2.0", "v4.1.1", "v3.4.0", "v3.3.1", "v2.5.0", "v2.4.2"],
"chain-b": ["release-v4.3.x"],
"entrypoint": ["TestTransferTestSuite"],
"test": [
"TestMsgTransfer_Succeeds_Nonincentivized",
Expand Down

This file was deleted.

This file was deleted.

This file was deleted.

This file was deleted.

Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"chain-a": ["release-v6.0.x"],
"chain-b": ["release-v6.0.x", "v5.1.0", "v5.0.1", "v4.2.0", "v4.1.1"],
"chain-a": ["release-v5.2.x"],
"chain-b": ["release-v5.2.x", "v6.0.0", "v5.1.0", "v5.0.1", "v4.2.0", "v4.1.1"],
"entrypoint": ["TestIncentivizedTransferTestSuite"],
"test": [
"TestMsgPayPacketFee_AsyncSingleSender_Succeeds",
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"chain-a": ["release-v5.0.x", "v5.1.0", "v4.2.0", "v4.1.1"],
"chain-b": ["release-v5.0.x"],
"chain-a": ["release-v5.2.x", "v6.0.0", "v5.1.0", "v5.0.1", "v4.2.0", "v4.1.1"],
"chain-b": ["release-v5.2.x"],
"entrypoint": ["TestIncentivizedTransferTestSuite"],
"test": [
"TestMsgPayPacketFee_AsyncSingleSender_Succeeds",
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"chain-a": ["release-v5.1.x"],
"chain-b": ["release-v5.1.x", "v5.0.1", "v4.2.0", "v4.1.1", "v3.4.0", "v3.3.1", "v2.5.0", "v2.4.2"],
"chain-a": ["release-v5.2.x"],
"chain-b": ["release-v5.2.x", "v6.0.0", "v5.1.0", "v5.0.1", "v4.2.0", "v4.1.1", "v3.4.0", "v3.3.1", "v2.5.0", "v2.4.2"],
"entrypoint": ["TestTransferTestSuite"],
"test": [
"TestMsgTransfer_Succeeds_Nonincentivized",
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"chain-a": ["release-v5.1.x", "v5.0.1", "v4.2.0", "v4.1.1", "v3.4.0", "v3.3.1", "v2.5.0", "v2.4.2"],
"chain-b": ["release-v5.1.x"],
"chain-a": ["release-v5.2.x", "v6.0.0", "v5.1.0", "v5.0.1", "v4.2.0", "v4.1.1", "v3.4.0", "v3.3.1", "v2.5.0", "v2.4.2"],
"chain-b": ["release-v5.2.x"],
"entrypoint": ["TestTransferTestSuite"],
"test": [
"TestMsgTransfer_Succeeds_Nonincentivized",
Expand Down

This file was deleted.

This file was deleted.

Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"chain-a": ["release-v5.0.x"],
"chain-b": ["release-v5.0.x", "v5.1.0", "v4.2.0", "v4.1.1", "v3.4.0", "v3.3.1", "v2.5.0", "v2.4.2"],
"chain-a": ["release-v6.1.x"],
"chain-b": ["release-v6.1.x", "v6.0.0", "v5.1.0", "v5.0.1", "v4.2.0", "v4.1.1", "v3.4.0", "v3.3.1", "v2.5.0", "v2.4.2"],
"entrypoint": ["TestClientTestSuite"],
"test": [
"TestClientUpdateProposal_Succeeds"
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"chain-a": ["release-v5.0.x", "v5.1.0", "v4.2.0", "v4.1.1", "v3.4.0", "v3.3.1", "v2.5.0", "v2.4.2"],
"chain-b": ["release-v5.0.x"],
"chain-a": ["release-v6.1.x", "v6.0.0", "v5.1.0", "v5.0.1", "v4.2.0", "v4.1.1", "v3.4.0", "v3.3.1", "v2.5.0", "v2.4.2"],
"chain-b": ["release-v6.1.x"],
"entrypoint": ["TestClientTestSuite"],
"test": [
"TestClientUpdateProposal_Succeeds"
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"chain-a": ["release-v6.0.x"],
"chain-b": ["release-v6.0.x", "v5.1.0", "v5.0.1", "v4.2.0", "v4.1.1", "v3.4.0", "v3.3.1", "v2.5.0", "v2.4.2"],
"chain-a": ["release-v6.1.x"],
"chain-b": ["release-v6.1.x", "v6.0.0", "v5.1.0", "v5.0.1", "v4.2.0", "v4.1.1", "v3.4.0", "v3.3.1", "v2.5.0", "v2.4.2"],
"entrypoint": ["TestConnectionTestSuite"],
"test": [
"TestMaxExpectedTimePerBlockParam"
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"chain-a": ["release-v6.0.x", "v5.1.0", "v5.0.1", "v4.2.0", "v4.1.1", "v3.4.0", "v3.3.1", "v2.5.0", "v2.4.2"],
"chain-b": ["release-v6.0.x"],
"chain-a": ["release-v6.1.x", "v6.0.0", "v5.1.0", "v5.0.1", "v4.2.0", "v4.1.1", "v3.4.0", "v3.3.1", "v2.5.0", "v2.4.2"],
"chain-b": ["release-v6.1.x"],
"entrypoint": ["TestConnectionTestSuite"],
"test": [
"TestMaxExpectedTimePerBlockParam"
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"chain-a": ["release-v6.0.x"],
"chain-b": ["release-v6.0.x"],
"chain-a": ["release-v6.1.x"],
"chain-b": ["release-v6.1.x", "v6.0.0"],
"entrypoint": ["TestInterchainAccountsTestSuite"],
"test": [
"TestMsgSendTx_SuccessfulTransfer",
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
{
"chain-a": ["release-v6.1.x", "v6.0.0"],
"chain-b": ["release-v6.1.x"],
"entrypoint": ["TestInterchainAccountsTestSuite"],
"test": [
"TestMsgSendTx_SuccessfulTransfer",
"TestMsgSendTx_FailedTransfer_InsufficientFunds",
"TestMsgSubmitTx_SuccessfulTransfer_AfterReopeningICA"
],
"chain-binary": ["simd"],
"chain-image": ["ghcr.io/cosmos/ibc-go-simd"]
}
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"chain-a": ["release-v6.0.x"],
"chain-b": ["release-v6.0.x"],
"chain-a": ["release-v6.1.x", "v6.0.0"],
"chain-b": ["release-v6.1.x"],
"entrypoint": ["TestInterchainAccountsGovTestSuite"],
"test": [
"TestInterchainAccountsGovIntegration"
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
{
"chain-a": ["release-v6.1.x"],
"chain-b": ["release-v6.1.x", "v6.0.0"],
"entrypoint": ["TestInterchainAccountsGovTestSuite"],
"test": [
"TestInterchainAccountsGovIntegration"
],
"chain-binary": ["simd"],
"chain-image": ["ghcr.io/cosmos/ibc-go-simd"]
}
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"chain-a": ["release-v6.0.x"],
"chain-b": ["release-v6.0.x"],
"chain-a": ["release-v6.1.x"],
"chain-b": ["release-v6.1.x", "v6.0.0"],
"entrypoint": ["TestInterchainAccountsGroupsTestSuite"],
"test": [
"TestInterchainAccountsGroupsIntegration"
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
{
"chain-a": ["release-v6.1.x", "v6.0.0"],
"chain-b": ["release-v6.1.x"],
"entrypoint": ["TestInterchainAccountsGroupsTestSuite"],
"test": [
"TestInterchainAccountsGroupsIntegration"
],
"chain-binary": ["simd"],
"chain-image": ["ghcr.io/cosmos/ibc-go-simd"]
}
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"chain-a": ["release-v6.0.x"],
"chain-b": ["release-v6.0.x"],
"chain-a": ["release-v6.1.x"],
"chain-b": ["release-v6.1.x", "v6.0.0"],
"entrypoint": ["TestIncentivizedInterchainAccountsTestSuite"],
"test": [
"TestMsgSendTx_SuccessfulBankSend_Incentivized",
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
{
"chain-a": ["release-v6.1.x", "v6.0.0"],
"chain-b": ["release-v6.1.x"],
"entrypoint": ["TestIncentivizedInterchainAccountsTestSuite"],
"test": [
"TestMsgSendTx_SuccessfulBankSend_Incentivized",
"TestMsgSendTx_FailedBankSend_Incentivized"
],
"chain-binary": ["simd"],
"chain-image": ["ghcr.io/cosmos/ibc-go-simd"]
}
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"chain-a": ["release-v5.1.x"],
"chain-b": ["release-v5.1.x", "v5.0.1", "v4.2.0", "v4.1.1"],
"chain-a": ["release-v6.1.x"],
"chain-b": ["release-v6.1.x", "v6.0.0", "v5.1.0", "v5.0.1", "v4.2.0", "v4.1.1"],
"entrypoint": ["TestIncentivizedTransferTestSuite"],
"test": [
"TestMsgPayPacketFee_AsyncSingleSender_Succeeds",
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"chain-a": ["release-v5.1.x", "v5.0.1", "v4.2.0", "v4.1.1"],
"chain-b": ["release-v5.1.x"],
"chain-a": ["release-v6.1.x", "v6.0.0", "v5.1.0", "v5.0.1", "v4.2.0", "v4.1.1"],
"chain-b": ["release-v6.1.x"],
"entrypoint": ["TestIncentivizedTransferTestSuite"],
"test": [
"TestMsgPayPacketFee_AsyncSingleSender_Succeeds",
Expand Down
Loading