Skip to content

Commit

Permalink
Adding NewCCIPCommitProvider + NewCCIPExecProvider to relay
Browse files Browse the repository at this point in the history
  • Loading branch information
patrickhuie19 committed May 31, 2024
1 parent 8b7b203 commit cb077c3
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions pkg/cosmos/relay.go
Original file line number Diff line number Diff line change
Expand Up @@ -135,3 +135,11 @@ func (r *Relayer) NewOCR3CapabilityProvider(rargs types.RelayArgs, pargs types.P
func (r *Relayer) NewContractReader(_ []byte) (types.ContractReader, error) {
return nil, errors.New("contract reader is not supported for cosmos")
}

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

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

0 comments on commit cb077c3

Please sign in to comment.