Skip to content
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

Implement extra args codec #16016

Open
wants to merge 39 commits into
base: solana-offchain-plugin
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from 23 commits
Commits
Show all changes
39 commits
Select commit Hold shift + click to select a range
a757a6e
Use SVM ABI, needs to check test
huangzhen1997 Jan 21, 2025
7253bba
goimport
huangzhen1997 Jan 21, 2025
0ec8119
update
huangzhen1997 Jan 21, 2025
82a162f
rename
huangzhen1997 Jan 21, 2025
2c7bd05
Merge branch 'solana-offchain-plugin' into NONEVM-1163/implement-extr…
huangzhen1997 Jan 21, 2025
e8bbe9a
tidy
huangzhen1997 Jan 21, 2025
36a5ad1
refactor
huangzhen1997 Jan 21, 2025
3fa671b
fix lint
huangzhen1997 Jan 22, 2025
af29932
fix
huangzhen1997 Jan 22, 2025
2597b48
update
huangzhen1997 Jan 22, 2025
a99bdcc
update
huangzhen1997 Jan 22, 2025
5fe01d2
address Makram comments
huangzhen1997 Jan 23, 2025
c49c04b
lint
huangzhen1997 Jan 23, 2025
7204973
Merge branch 'solana-offchain-plugin' into NONEVM-1163/implement-extr…
huangzhen1997 Jan 23, 2025
a903310
mod tidy
huangzhen1997 Jan 23, 2025
80b3e3b
gomd
huangzhen1997 Jan 23, 2025
afcd808
fix import
huangzhen1997 Jan 24, 2025
6bc6b29
fix broken integration test
huangzhen1997 Jan 24, 2025
a5f84ac
update
huangzhen1997 Jan 24, 2025
d6af37b
fix test
huangzhen1997 Jan 27, 2025
f9489ae
fix test
huangzhen1997 Jan 27, 2025
cf28c84
update source chain
huangzhen1997 Jan 27, 2025
67e0038
update test
huangzhen1997 Jan 27, 2025
a20765b
minor
huangzhen1997 Jan 27, 2025
ee10849
merge develop
huangzhen1997 Jan 28, 2025
f2952a0
implement and add test
huangzhen1997 Jan 28, 2025
a1eacf6
update comments
huangzhen1997 Jan 28, 2025
0b15808
goimport
huangzhen1997 Jan 28, 2025
55b33e3
fix conflicts
huangzhen1997 Jan 28, 2025
8d4d702
update
huangzhen1997 Jan 29, 2025
fc7f0f7
update
huangzhen1997 Jan 29, 2025
9939559
add comment
huangzhen1997 Jan 29, 2025
6e6441d
refactor
huangzhen1997 Jan 29, 2025
7e96d52
update comment
huangzhen1997 Jan 30, 2025
2e8de08
add unit test
huangzhen1997 Jan 30, 2025
5c76148
update
huangzhen1997 Jan 30, 2025
5bcf509
lint
huangzhen1997 Jan 30, 2025
8af2a50
mod tidy
huangzhen1997 Jan 30, 2025
aa9841d
update
huangzhen1997 Jan 30, 2025
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 0 additions & 16 deletions core/capabilities/ccip/ccipevm/extraargscodec.go

This file was deleted.

46 changes: 44 additions & 2 deletions core/capabilities/ccip/ccipevm/helpers.go
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,12 @@ import (
"github.com/ethereum/go-ethereum/accounts/abi"
)

const (
svmV1DecodeName = "decodeSVMExtraArgsV1"
evmV1DecodeName = "decodeEVMExtraArgsV1"
evmV2DecodeName = "decodeEVMExtraArgsV2"
)

var (
abiUint32 = ABITypeOrPanic("uint32")
TokenDestGasOverheadABI = abi.Arguments{
Expand All @@ -24,9 +30,9 @@ func decodeExtraArgsV1V2(extraArgs []byte) (gasLimit *big.Int, err error) {

var method string
if bytes.Equal(extraArgs[:4], evmExtraArgsV1Tag) {
method = "decodeEVMExtraArgsV1"
method = evmV1DecodeName
} else if bytes.Equal(extraArgs[:4], evmExtraArgsV2Tag) {
method = "decodeEVMExtraArgsV2"
method = evmV2DecodeName
} else {
return nil, fmt.Errorf("unknown extra args tag: %x", extraArgs)
}
Expand All @@ -43,6 +49,42 @@ func decodeExtraArgsV1V2(extraArgs []byte) (gasLimit *big.Int, err error) {
return ifaces[0].(*big.Int), nil
}

func DecodeExtraArgsToMap(extraArgs []byte) (map[string]any, error) {
if len(extraArgs) < 4 {
return nil, fmt.Errorf("extra args too short: %d, should be at least 4 (i.e the extraArgs tag)", len(extraArgs))
}

var method string
var extraByteOffset int
// for EVMExtraArgs, the first four bytes is the method name
// for SVMExtraArgs there's the four bytes plus another 32 bytes padding for the dynamic array
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

nit: move these comments to the actual case block where you set extraByteOffset

switch string(extraArgs[:4]) {
case string(evmExtraArgsV1Tag):
method = evmV1DecodeName
extraByteOffset = 4
case string(evmExtraArgsV2Tag):
method = evmV2DecodeName
extraByteOffset = 4
case string(svmExtraArgsV1Tag):
method = svmV1DecodeName
extraByteOffset = 36
default:
return nil, fmt.Errorf("unknown extra args tag: %x", extraArgs)
}

output := make(map[string]any)
args := make(map[string]interface{})
err := messageHasherABI.Methods[method].Inputs.UnpackIntoMap(args, extraArgs[extraByteOffset:])
if err != nil {
return nil, fmt.Errorf("abi decode extra args %v: %w", method, err)
}

for k, val := range args {
output[k] = val
}
return output, nil
}

// abiEncodeMethodInputs encodes the inputs for a method call.
// example abi: `[{ "name" : "method", "type": "function", "inputs": [{"name": "a", "type": "uint256"}]}]`
func abiEncodeMethodInputs(abiDef abi.ABI, inputs ...interface{}) ([]byte, error) {
Expand Down
76 changes: 76 additions & 0 deletions core/capabilities/ccip/ccipevm/helpers_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ import (
"math/rand"
"testing"

"github.com/gagliardetto/solana-go"
"github.com/stretchr/testify/require"

"github.com/smartcontractkit/chainlink/v2/core/gethwrappers/ccip/generated/message_hasher"
Expand Down Expand Up @@ -38,4 +39,79 @@ func Test_decodeExtraArgs(t *testing.T) {

require.Equal(t, gasLimit, decodedGasLimit)
})

t.Run("decode extra args into map evm v1", func(t *testing.T) {
encoded, err := d.contract.EncodeEVMExtraArgsV1(nil, message_hasher.ClientEVMExtraArgsV1{
GasLimit: gasLimit,
})
require.NoError(t, err)

m, err := DecodeExtraArgsToMap(encoded)
require.NoError(t, err)
require.Len(t, m, 1)
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Lets add require.Equal checks on the contents of the map.

Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The check for contents is already in the below 3 lines (53-55).

Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

the comparison is between a map, vs fields of a struct, so require.Equals will likely not work


gl, exist := m["gasLimit"]
require.True(t, exist)
require.Equal(t, gl, gasLimit)
})

t.Run("decode extra args into map evm v2", func(t *testing.T) {
encoded, err := d.contract.EncodeEVMExtraArgsV2(nil, message_hasher.ClientEVMExtraArgsV2{
GasLimit: gasLimit,
AllowOutOfOrderExecution: true,
})
require.NoError(t, err)

m, err := DecodeExtraArgsToMap(encoded)
require.NoError(t, err)
require.Len(t, m, 2)
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Ditto here re: equality checks.


gl, exist := m["gasLimit"]
require.True(t, exist)
require.Equal(t, gl, gasLimit)

ooe, exist := m["allowOutOfOrderExecution"]
require.True(t, exist)
require.Equal(t, true, ooe)
})

t.Run("decode extra args into map svm", func(t *testing.T) {
key, err := solana.NewRandomPrivateKey()
require.NoError(t, err)
cu := uint32(10000)
bitmap := uint64(4)
ooe := false
tokenReceiver := [32]byte(key.PublicKey().Bytes())
accounts := [][32]byte{[32]byte(key.PublicKey().Bytes())}
decoded, err := d.contract.DecodeSVMExtraArgsV1(nil, cu, bitmap, ooe, tokenReceiver, accounts)
if err != nil {
return
}
encoded, err := d.contract.EncodeSVMExtraArgsV1(nil, decoded)
require.NoError(t, err)

m, err := DecodeExtraArgsToMap(encoded)
require.NoError(t, err)
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

once the test passes, we should verify the decoded data is same as originally passed in data.

require.Len(t, m, 5)

cuDecoded, exist := m["computeUnits"]
require.True(t, exist)
require.Equal(t, cuDecoded, cu)

bitmapDecoded, exist := m["accountIsWritableBitmap"]
require.True(t, exist)
require.Equal(t, bitmapDecoded, bitmap)

ooeDecoded, exist := m["allowOutOfOrderExecution"]
require.True(t, exist)
require.Equal(t, ooeDecoded, ooe)

tokenReceiverDecoded, exist := m["tokenReceiver"]
require.True(t, exist)
require.Equal(t, tokenReceiverDecoded, tokenReceiver)

accountsDecoded, exist := m["accounts"]
require.True(t, exist)
require.Equal(t, accountsDecoded, accounts)
})
}
3 changes: 3 additions & 0 deletions core/capabilities/ccip/ccipevm/msghasher.go
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,9 @@ var (

// bytes4 public constant EVM_EXTRA_ARGS_V2_TAG = 0x181dcf10;
evmExtraArgsV2Tag = hexutil.MustDecode("0x181dcf10")

// bytes4 public constant SVM_EXTRA_EXTRA_ARGS_V1_TAG = 0x1f3b3aba
svmExtraArgsV1Tag = hexutil.MustDecode("0x1f3b3aba")
)

// MessageHasherV1 implements the MessageHasher interface.
Expand Down
32 changes: 32 additions & 0 deletions core/capabilities/ccip/ccipsolana/helpers.go
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Could we rename or move these functions related to decoding to appropriately named files?
helpers.go seems like a bad place.
Maybe call them extradatadecoder.go

Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
package ccipsolana

import (
"fmt"
"reflect"

agbinary "github.com/gagliardetto/binary"

"github.com/smartcontractkit/chainlink-ccip/chains/solana/gobindings/ccip_router"
)

// DecodeExtraArgsToMap is a helper function for converting Borsh encoded extra args bytes into map[string]any, which will be saved in ocr report.message.ExtraArgsDecoded
func DecodeExtraArgsToMap(extraArgs []byte) (map[string]any, error) {
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Good rule of thumb to add a docstring to exported methods

Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Previously, the EVM version had this comment and a special offset. What happened to it?

	case string(svmExtraArgsV1Tag):
		// for SVMExtraArgs there's the four bytes plus another 32 bytes padding for the dynamic array
		method = svmV1DecodeName
		extraByteOffset = 36

outputMap := make(map[string]any)
var args ccip_router.AnyExtraArgs
decoder := agbinary.NewBorshDecoder(extraArgs)
err := args.UnmarshalWithDecoder(decoder)
if err != nil {
return outputMap, fmt.Errorf("failed to decode extra args: %w", err)
}

val := reflect.ValueOf(args)
typ := reflect.TypeOf(args)

for i := 0; i < val.NumField(); i++ {
field := typ.Field(i)
fieldValue := val.Field(i).Interface()
outputMap[field.Name] = fieldValue
}

return outputMap, nil
}
36 changes: 36 additions & 0 deletions core/capabilities/ccip/ccipsolana/helpers_test.go
Original file line number Diff line number Diff line change
@@ -0,0 +1,36 @@
package ccipsolana

import (
"bytes"
"testing"

agbinary "github.com/gagliardetto/binary"
"github.com/stretchr/testify/require"

"github.com/smartcontractkit/chainlink-ccip/chains/solana/gobindings/ccip_router"
)

func Test_decodeExtraArgs(t *testing.T) {
t.Run("decode extra args into map svm", func(t *testing.T) {
extraArgs := ccip_router.AnyExtraArgs{
GasLimit: agbinary.Uint128{Lo: 5000, Hi: 0},
AllowOutOfOrderExecution: false,
}

var buf bytes.Buffer
encoder := agbinary.NewBorshEncoder(&buf)
err := extraArgs.MarshalWithEncoder(encoder)
require.NoError(t, err)
output, err := DecodeExtraArgsToMap(buf.Bytes())
require.NoError(t, err)
require.Len(t, output, 2)
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Can you add require.Equal checks on the contents of the output map?


gasLimit, exist := output["GasLimit"]
require.True(t, exist)
require.Equal(t, agbinary.Uint128{Lo: 5000, Hi: 0}, gasLimit)

ooe, exist := output["AllowOutOfOrderExecution"]
require.True(t, exist)
require.Equal(t, false, ooe)
})
}
36 changes: 36 additions & 0 deletions core/capabilities/ccip/common/extraargscodec.go
Original file line number Diff line number Diff line change
@@ -0,0 +1,36 @@
package common

import (
"fmt"

chainsel "github.com/smartcontractkit/chain-selectors"

"github.com/smartcontractkit/chainlink/v2/core/capabilities/ccip/ccipevm"
"github.com/smartcontractkit/chainlink/v2/core/capabilities/ccip/ccipsolana"

cciptypes "github.com/smartcontractkit/chainlink-ccip/pkg/types/ccipocr3"
)

type ExtraArgsCodec struct{}

func NewExtraArgsCodec() ExtraArgsCodec {
return ExtraArgsCodec{}
}

func (ExtraArgsCodec) DecodeExtraData(extraArgs cciptypes.Bytes, sourceChainSelector cciptypes.ChainSelector) (map[string]any, error) {
family, err := chainsel.GetSelectorFamily(uint64(sourceChainSelector))
if err != nil {
return nil, fmt.Errorf("failed to get chain family for selector %d: %w", sourceChainSelector, err)
}

switch family {
case chainsel.FamilyEVM:
return ccipevm.DecodeExtraArgsToMap(extraArgs)

case chainsel.FamilySolana:
return ccipsolana.DecodeExtraArgsToMap(extraArgs)

default:
return nil, fmt.Errorf("unsupported family for extra args type %s", family)
}
}
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Nice 👍

5 changes: 3 additions & 2 deletions core/capabilities/ccip/oraclecreator/plugin.go
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@ import (
"github.com/gagliardetto/solana-go"
"github.com/google/uuid"
"github.com/prometheus/client_golang/prometheus"
ccipcommon "github.com/smartcontractkit/chainlink/v2/core/capabilities/ccip/common"
"github.com/smartcontractkit/chainlink/v2/core/services/relay"

chainsel "github.com/smartcontractkit/chain-selectors"
Expand Down Expand Up @@ -282,7 +283,7 @@ func (i *pluginOracleCreator) createFactoryAndTransmitter(
ccipreaderpkg.OCR3ConfigWithMeta(config),
ccipevm.NewCommitPluginCodecV1(),
ccipevm.NewMessageHasherV1(i.lggr.Named("MessageHasherV1")),
ccipevm.NewExtraArgsCodec(),
ccipcommon.NewExtraArgsCodec(),
i.homeChainReader,
i.homeChainSelector,
contractReaders,
Expand All @@ -305,7 +306,7 @@ func (i *pluginOracleCreator) createFactoryAndTransmitter(
ccipreaderpkg.OCR3ConfigWithMeta(config),
ccipevm.NewExecutePluginCodecV1(),
ccipevm.NewMessageHasherV1(i.lggr.Named("MessageHasherV1")),
ccipevm.NewExtraArgsCodec(),
ccipcommon.NewExtraArgsCodec(),
i.homeChainReader,
ccipevm.NewEVMTokenDataEncoder(),
ccipevm.NewGasEstimateProvider(),
Expand Down
2 changes: 1 addition & 1 deletion core/scripts/go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -316,7 +316,7 @@ require (
github.com/smartcontractkit/ccip-owner-contracts v0.0.0-salt-fix // indirect
github.com/smartcontractkit/chain-selectors v1.0.36 // indirect
github.com/smartcontractkit/chainlink-ccip v0.0.0-20250123161904-c40aa8ca45b2 // indirect
github.com/smartcontractkit/chainlink-ccip/chains/solana v0.0.0-20250114180313-3ba6bac6203a // indirect
github.com/smartcontractkit/chainlink-ccip/chains/solana v0.0.0-20250121181523-2c505d8a351a // indirect
github.com/smartcontractkit/chainlink-cosmos v0.5.2-0.20250121210000-2a9675d7a1b4 // indirect
github.com/smartcontractkit/chainlink-feeds v0.1.1 // indirect
github.com/smartcontractkit/chainlink-framework/chains v0.0.0-20250121195549-294ec6a40b92 // indirect
Expand Down
4 changes: 2 additions & 2 deletions core/scripts/go.sum
Original file line number Diff line number Diff line change
Expand Up @@ -1170,8 +1170,8 @@ github.com/smartcontractkit/chainlink-automation v0.8.1 h1:sTc9LKpBvcKPc1JDYAmgB
github.com/smartcontractkit/chainlink-automation v0.8.1/go.mod h1:Iij36PvWZ6blrdC5A/nrQUBuf3MH3JvsBB9sSyc9W08=
github.com/smartcontractkit/chainlink-ccip v0.0.0-20250123161904-c40aa8ca45b2 h1:02X35I+iPkHltR3ve2b7Xc/YUg2aGkT42w5DHVsKPLY=
github.com/smartcontractkit/chainlink-ccip v0.0.0-20250123161904-c40aa8ca45b2/go.mod h1:UEnHaxkUsfreeA7rR45LMmua1Uen95tOFUR8/AI9BAo=
github.com/smartcontractkit/chainlink-ccip/chains/solana v0.0.0-20250114180313-3ba6bac6203a h1:BuKTz6TpCQiLRmdT/Vp3OZj4MEVSEpNfY2nL8RYRbg8=
github.com/smartcontractkit/chainlink-ccip/chains/solana v0.0.0-20250114180313-3ba6bac6203a/go.mod h1:Bmwq4lNb5tE47sydN0TKetcLEGbgl+VxHEWp4S0LI60=
github.com/smartcontractkit/chainlink-ccip/chains/solana v0.0.0-20250121181523-2c505d8a351a h1:/CHYAiEm8jfGAy+oQB6lSN7iQ9WhGeUlWmC1KHarjj0=
github.com/smartcontractkit/chainlink-ccip/chains/solana v0.0.0-20250121181523-2c505d8a351a/go.mod h1:Bmwq4lNb5tE47sydN0TKetcLEGbgl+VxHEWp4S0LI60=
github.com/smartcontractkit/chainlink-common v0.4.2-0.20250121163309-3e179a73cb92 h1:9zmJi4TctSNvmVdmRh2UpbNRDnrWKYn4o+PZDAIhqqc=
github.com/smartcontractkit/chainlink-common v0.4.2-0.20250121163309-3e179a73cb92/go.mod h1:V3BHfvLnQNBUoZ4bGjD29ZPhyzPE++DkYkhvPb9tcRs=
github.com/smartcontractkit/chainlink-cosmos v0.5.2-0.20250121210000-2a9675d7a1b4 h1:w7w42ml8MOxdoyAZ9+og0342UkiH3deRM1V0Pj5JR5g=
Expand Down
2 changes: 2 additions & 0 deletions deployment/ccip/changeset/cs_deploy_chain.go
Original file line number Diff line number Diff line change
Expand Up @@ -633,6 +633,8 @@ func deployChainContractsSolana(
true, // allow out of order execution
EnableExecutionAfter, // period to wait before allowing manual execution
solana.PublicKey{},
solana.PublicKey{},
solBinary.Uint128{Lo: 300000000, Hi: 0, Endianness: nil},
GetRouterConfigPDA(ccipRouterProgram),
GetRouterStatePDA(ccipRouterProgram),
chain.DeployerKey.PublicKey(),
Expand Down
2 changes: 1 addition & 1 deletion deployment/go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ require (
github.com/smartcontractkit/ccip-owner-contracts v0.0.0-salt-fix
github.com/smartcontractkit/chain-selectors v1.0.36
github.com/smartcontractkit/chainlink-ccip v0.0.0-20250123161904-c40aa8ca45b2
github.com/smartcontractkit/chainlink-ccip/chains/solana v0.0.0-20250114180313-3ba6bac6203a
github.com/smartcontractkit/chainlink-ccip/chains/solana v0.0.0-20250121181523-2c505d8a351a
github.com/smartcontractkit/chainlink-common v0.4.2-0.20250121163309-3e179a73cb92
github.com/smartcontractkit/chainlink-framework/multinode v0.0.0-20250121205514-f73e2f86c23b
github.com/smartcontractkit/chainlink-protos/job-distributor v0.6.0
Expand Down
4 changes: 2 additions & 2 deletions deployment/go.sum
Original file line number Diff line number Diff line change
Expand Up @@ -1396,8 +1396,8 @@ github.com/smartcontractkit/chainlink-automation v0.8.1 h1:sTc9LKpBvcKPc1JDYAmgB
github.com/smartcontractkit/chainlink-automation v0.8.1/go.mod h1:Iij36PvWZ6blrdC5A/nrQUBuf3MH3JvsBB9sSyc9W08=
github.com/smartcontractkit/chainlink-ccip v0.0.0-20250123161904-c40aa8ca45b2 h1:02X35I+iPkHltR3ve2b7Xc/YUg2aGkT42w5DHVsKPLY=
github.com/smartcontractkit/chainlink-ccip v0.0.0-20250123161904-c40aa8ca45b2/go.mod h1:UEnHaxkUsfreeA7rR45LMmua1Uen95tOFUR8/AI9BAo=
github.com/smartcontractkit/chainlink-ccip/chains/solana v0.0.0-20250114180313-3ba6bac6203a h1:BuKTz6TpCQiLRmdT/Vp3OZj4MEVSEpNfY2nL8RYRbg8=
github.com/smartcontractkit/chainlink-ccip/chains/solana v0.0.0-20250114180313-3ba6bac6203a/go.mod h1:Bmwq4lNb5tE47sydN0TKetcLEGbgl+VxHEWp4S0LI60=
github.com/smartcontractkit/chainlink-ccip/chains/solana v0.0.0-20250121181523-2c505d8a351a h1:/CHYAiEm8jfGAy+oQB6lSN7iQ9WhGeUlWmC1KHarjj0=
github.com/smartcontractkit/chainlink-ccip/chains/solana v0.0.0-20250121181523-2c505d8a351a/go.mod h1:Bmwq4lNb5tE47sydN0TKetcLEGbgl+VxHEWp4S0LI60=
github.com/smartcontractkit/chainlink-common v0.4.2-0.20250121163309-3e179a73cb92 h1:9zmJi4TctSNvmVdmRh2UpbNRDnrWKYn4o+PZDAIhqqc=
github.com/smartcontractkit/chainlink-common v0.4.2-0.20250121163309-3e179a73cb92/go.mod h1:V3BHfvLnQNBUoZ4bGjD29ZPhyzPE++DkYkhvPb9tcRs=
github.com/smartcontractkit/chainlink-cosmos v0.5.2-0.20250121210000-2a9675d7a1b4 h1:w7w42ml8MOxdoyAZ9+og0342UkiH3deRM1V0Pj5JR5g=
Expand Down
Loading
Loading