-
Notifications
You must be signed in to change notification settings - Fork 639
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
Browse the repository at this point in the history
…6929) * (feat) Add possibility to transfer entire balance. (#6877) * Add possibility to transfer entire balance. * Added entry to the Changelog. * Added e2e test * Added forwarding * Update modules/apps/transfer/keeper/relay.go Co-authored-by: DimitrisJim <[email protected]> * Move UnboundedSpendLimit to token.go * add documentation * add test to compatibility matrices * PR Feedback. --------- Co-authored-by: DimitrisJim <[email protected]> Co-authored-by: Carlos Rodriguez <[email protected]> (cherry picked from commit 92e1f38) # Conflicts: # .github/compatibility-test-matrices/main/transfer-v2-multidenom-chain-a.json # .github/compatibility-test-matrices/release-v9.0.x/transfer-v2-multidenom-chain-a.json # .github/compatibility-test-matrices/unreleased/transfer-v2-multidenom.json # CHANGELOG.md # docs/docs/02-apps/01-transfer/04-messages.md # docs/docs/02-apps/01-transfer/10-ICS20-v1/04-messages.md # e2e/tests/transfer/base_test.go # modules/apps/transfer/keeper/relay.go # modules/apps/transfer/keeper/relay_test.go # modules/apps/transfer/types/token.go # modules/apps/transfer/types/transfer_authorization.go # testing/chain.go * fix conflicts * lint * delete docs --------- Co-authored-by: Nikolas De Giorgis <[email protected]> Co-authored-by: Carlos Rodriguez <[email protected]>
- Loading branch information
1 parent
de87319
commit b71e6e8
Showing
9 changed files
with
93 additions
and
17 deletions.
There are no files selected for viewing
19 changes: 19 additions & 0 deletions
19
.github/compatibility-test-matrices/main/transfer-v2-multidenom-chain-a.json
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,19 @@ | ||
{ | ||
"chain-a": [ | ||
"main" | ||
], | ||
"chain-b": [ | ||
"main" | ||
], | ||
"entrypoint": [ | ||
"TestTransferTestSuite" | ||
], | ||
"test": [ | ||
"TestMsgTransfer_Succeeds_Nonincentivized_MultiDenom", | ||
"TestMsgTransfer_EntireBalance", | ||
"TestMsgTransfer_Fails_InvalidAddress_MultiDenom" | ||
], | ||
"relayer-type": [ | ||
"hermes" | ||
] | ||
} |
19 changes: 19 additions & 0 deletions
19
.github/compatibility-test-matrices/release-v9.0.x/transfer-v2-multidenom-chain-a.json
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,19 @@ | ||
{ | ||
"chain-a": [ | ||
"release-v9.0.x" | ||
], | ||
"chain-b": [ | ||
"release-v9.0.x" | ||
], | ||
"entrypoint": [ | ||
"TestTransferTestSuite" | ||
], | ||
"test": [ | ||
"TestMsgTransfer_Succeeds_Nonincentivized_MultiDenom", | ||
"TestMsgTransfer_EntireBalance", | ||
"TestMsgTransfer_Fails_InvalidAddress_MultiDenom" | ||
], | ||
"relayer-type": [ | ||
"hermes" | ||
] | ||
} |
19 changes: 19 additions & 0 deletions
19
.github/compatibility-test-matrices/unreleased/transfer-v2-multidenom.json
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,19 @@ | ||
{ | ||
"chain-a": [ | ||
"release-v9.0.x" | ||
], | ||
"chain-b": [ | ||
"release-v9.0.x" | ||
], | ||
"entrypoint": [ | ||
"TestTransferTestSuite" | ||
], | ||
"test": [ | ||
"TestMsgTransfer_Succeeds_Nonincentivized_MultiDenom", | ||
"TestMsgTransfer_EntireBalance", | ||
"TestMsgTransfer_Fails_InvalidAddress_MultiDenom" | ||
], | ||
"relayer-type": [ | ||
"hermes" | ||
] | ||
} |
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