-
Notifications
You must be signed in to change notification settings - Fork 31
Add GetFQAddressDynamic functionality #1897
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
Merged
Merged
Changes from all commits
Commits
Show all changes
25 commits
Select commit
Hold shift + click to select a range
ee50242
Add GetFQAddressDynamic functionality
sowgandhi11 b6c4fa1
Fix build error
sowgandhi11 8cd6c9b
ChainFamilyAdapter implement DynamicFeeQuoter interface
sowgandhi11 683b2f1
Add default case for get fq address non dynamically
sowgandhi11 f4f63bf
Merge branch 'main' into sowgandhi11/CCIP-9957
sowgandhi11 c1ff026
Fix build errors
sowgandhi11 02fd0b4
use the non-v2 bind package for *bind.CallOpts
sowgandhi11 7ad3901
Use ptr for Environment param in populateAddresses
sowgandhi11 540f514
Merge branch 'main' into sowgandhi11/CCIP-9957
sowgandhi11 41a4657
Add tests & fix GetFQVersion to use dynamic address
sowgandhi11 2f40094
Fix build errors
sowgandhi11 aafd986
Merge branch 'main' into sowgandhi11/CCIP-9957
sowgandhi11 05c0085
Fix tests
sowgandhi11 e7ff734
Debugging
sowgandhi11 7ec7ed3
Debugging
sowgandhi11 a0c0f30
Fix debugging case
sowgandhi11 15b8020
Fix debug
sowgandhi11 d83a887
Revert any changes to TestConnectChains_EVM2EVM_UpgradeFeeQuoter_Then…
sowgandhi11 cf32bc7
cleanup
sowgandhi11 5b9705d
Merge branch 'main' into sowgandhi11/CCIP-9957
sowgandhi11 6c1fe3b
Adding check to ensure new interface method references 1.6.3 FQ
sowgandhi11 51d9553
Fix chain family mismatch
sowgandhi11 d33dfcf
Merge branch 'main' into sowgandhi11/CCIP-9957
sowgandhi11 ff4048a
Switch fatal messages to require statements in TestDowngradeLane_Conn…
sowgandhi11 e2f35dc
Switch fatal messages to require statements in TestDowngradeLane_Conn…
sowgandhi11 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 hidden or 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 hidden or 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 hidden or 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 hidden or 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 hidden or 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 hidden or 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 hidden or 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.
This file imports
github.com/ethereum/go-ethereum/accounts/abi/bind/v2, but the generated onramp contract wrapper (chains/evm/deployment/v1_6_0/operations/onramp) usesgithub.com/ethereum/go-ethereum/accounts/abi/bindand expects*bind.CallOpts. As written,&bind.CallOpts{}will be the wrong type and won’t compile; use the non-v2bindpackage or simply passnilcall opts toGetDynamicConfig.