Skip to content

Commit

Permalink
Adding NewCCIPCommitProvider + NewCCIPExecProvider to relay (#445)
Browse files Browse the repository at this point in the history
  • Loading branch information
patrickhuie19 committed Jun 21, 2024
1 parent e2ec96b commit 7e59494
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions relayer/pkg/chainlink/relay.go
Original file line number Diff line number Diff line change
Expand Up @@ -126,3 +126,11 @@ func (r *relayer) NewPluginProvider(rargs relaytypes.RelayArgs, pargs relaytypes
func (r *relayer) NewOCR3CapabilityProvider(rargs relaytypes.RelayArgs, pargs relaytypes.PluginArgs) (relaytypes.OCR3CapabilityProvider, error) {
return nil, errors.New("ocr3 capability provider is not supported for starknet")
}

func (r *relayer) NewCCIPCommitProvider(rargs relaytypes.RelayArgs, pargs relaytypes.PluginArgs) (relaytypes.CCIPCommitProvider, error) {
return nil, errors.New("ccip.commit is not supported for starknet")
}

func (r *relayer) NewCCIPExecProvider(rargs relaytypes.RelayArgs, pargs relaytypes.PluginArgs) (relaytypes.CCIPExecProvider, error) {
return nil, errors.New("ccip.exec is not supported for starknet")
}

0 comments on commit 7e59494

Please sign in to comment.