-
Notifications
You must be signed in to change notification settings - Fork 1.7k
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
CCIP-4152 Token transfer test #15130
Merged
Merged
Changes from 34 commits
Commits
Show all changes
36 commits
Select commit
Hold shift + click to select a range
0f16c5f
CCIP-3591: Adding e2e test for USDC transfer
b-gopalswami a9ac59a
Merge branch 'develop' of github.com:smartcontractkit/chainlink into …
b-gopalswami 6088dfe
Merge develop
b-gopalswami d7bbb4a
debug
b-gopalswami eaadf30
Merge develop and update chainlink-ccip reference
b-gopalswami 9725e96
temp change
b-gopalswami 397bfd7
Merge develop
b-gopalswami 287c1ec
Merge develop
b-gopalswami 9053740
resolve conflict
b-gopalswami 301bc15
Fixing chain reader init for USDC integration
mateusz-sekara b5ea14a
Minor fix to the debug logs
mateusz-sekara 417742d
Approving token
b-gopalswami 966c1c7
Merge branch 'ccip-3591' of github.com:smartcontractkit/chainlink int…
b-gopalswami a3667fd
Merge develop and resolve conflicts
b-gopalswami 6517368
Send tokens in send request
b-gopalswami a8ca4f6
Merge develop and fix conflicts
b-gopalswami adf2afe
Add registry module and register pool
b-gopalswami 1a0eecc
Bump
mateusz-sekara c241523
Bump
mateusz-sekara e9ffe2a
Burn/Mint permissions
mateusz-sekara 6b28d60
Proper addresses
mateusz-sekara c8d854f
Working test
mateusz-sekara ef31938
Working test
mateusz-sekara e5cabab
Working test
mateusz-sekara 5740e6d
Removing USDC part
mateusz-sekara e8823af
Removing USDC part
mateusz-sekara 7ca40a9
Removing USDC part
mateusz-sekara 985a236
Removing USDC part
mateusz-sekara a8aa253
Merge remote-tracking branch 'origin/develop' into ms/token-transfer
mateusz-sekara 0f95208
Removing USDC part
mateusz-sekara 0a35be9
Removing USDC part
mateusz-sekara be245a4
Removing USDC part
mateusz-sekara 3762416
Removing USDC part
mateusz-sekara 6aff29a
Removing USDC part
mateusz-sekara 61932fc
Removing USDC part
mateusz-sekara 5b4f78b
Post review fixes
mateusz-sekara File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
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,5 @@ | ||
--- | ||
"chainlink": patch | ||
--- | ||
|
||
CCIP token transfer integration tests #internal |
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
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
Oops, something went wrong.
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Potentially simple abstraction here might be a
RequestBuilder
or similar, and then a simpleSendRequest
function that literally just sends it to the router.There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Yeah, let's have that in a followup