-
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
Add Solana chain reader config to plugin creator #15876
Add Solana chain reader config to plugin creator #15876
Conversation
lggr.Debugw("Adding home chain reader config", "chainID", chainID) | ||
chainReaderConfig = evmconfig.MergeReaderConfigs(chainReaderConfig, evmconfig.HomeChainReaderConfigRaw) | ||
} | ||
if chainID == homeChainID { |
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 home chain config merging with local raw config will likely be needed for Solana too.
Because tooling team will add some configs to home chain, and some to local node.
So its good to add this config merging logic to solana too.
Or better, make it generic for all chain families if possible. I mean after fetching all local configs separately for each chain family, at the end, do a merge with home chain config, that is chain family agnostic.
AER Report: Operator UI CI ran successfully ✅AER Report: CI Core ran successfully ✅ |
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.
looks good
…r-config-to-plugin-creator
Quality Gate passedIssues Measures |
27c2440
into
solana-offchain-plugin
Jira ticket https://smartcontract-it.atlassian.net/browse/NONEVM-933
This PR remove EVM specific dependency, and add Solana support for chain reader config in plugin logic. At the moment, the Solana program address required for the plugin are not yet available. They will be configured later in a different PR, and an empty place holder will be used now for unblocking E2E test.