-
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
Solana plugin #15820
base: develop
Are you sure you want to change the base?
Solana plugin #15820
Conversation
I see you updated files related to
|
Thanks for making this, looks good to me. Do you want to merge this or create it as a base branch ? |
bf15d0b
to
ec9d62b
Compare
if networkType != relay.NetworkEVM { | ||
return nil, fmt.Errorf("unsupported chain type: %s", networkType) | ||
} |
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 check can still be performed by the oracle creator using something like _, supported := oraclecreator.plugins[networkType]
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.
I've removed the check because it should be fine to declare OCR2 keys for chains that are currently unsupported, those keys will just be unused (a similar change is needed in transmitters). This way we won't even need to redeploy jobspecs when new chains with existing keys add CCIP support.
The jobspec code further down also works similarly: it simply exposes all available key types
4fda7c3
ec9d62b
to
4fda7c3
Compare
AER Report: CI Core ran successfully ✅AER Report: Operator UI CI ran successfully ✅ |
4fda7c3
to
3370b92
Compare
Quality Gate passedIssues Measures |
No description provided.