diff --git a/.github/workflows/docker-build.yml b/.github/workflows/docker-build.yml index 5db219fd02f..0f7a3a2206e 100644 --- a/.github/workflows/docker-build.yml +++ b/.github/workflows/docker-build.yml @@ -172,7 +172,6 @@ jobs: COMMIT_SHA=${{ github.sha }} CL_INSTALL_PRIVATE_PLUGINS=true CL_CHAIN_DEFAULTS=/ccip-config - CL_SOLANA_CMD= docker-manifest-sign: true git-sha: ${{ inputs.git-ref || github.sha }} github-event-name: ${{ github.event_name }} diff --git a/core/capabilities/ccip/ccipsolana/pluginconfig.go b/core/capabilities/ccip/ccipsolana/pluginconfig.go index 142f96da93b..033d147f40d 100644 --- a/core/capabilities/ccip/ccipsolana/pluginconfig.go +++ b/core/capabilities/ccip/ccipsolana/pluginconfig.go @@ -25,6 +25,7 @@ func InitializePluginConfig(lggr logger.Logger, extraDataCodec ccipocr3.ExtraDat ChainRW: ChainRWProvider{}, ExtraDataCodec: ExtraDataDecoder{}, PriceOnlyCommitFn: consts.MethodCommitPriceOnly, + CCIPProviderSupported: true, } } diff --git a/core/capabilities/ccip/oraclecreator/plugin.go b/core/capabilities/ccip/oraclecreator/plugin.go index 85cd4c9ebbe..27160a2240f 100644 --- a/core/capabilities/ccip/oraclecreator/plugin.go +++ b/core/capabilities/ccip/oraclecreator/plugin.go @@ -189,7 +189,7 @@ func (i *pluginOracleCreator) Create(ctx context.Context, donID uint32, config c } // Create chain accessors and contract transmitters for relayers that supported them - chainAccessors, contractTransmitters, err := i.createChainAccessorsAndContractTransmitters(ctx, extendedReaders, chainWriters, pluginServices, offrampAddrStr, pluginType) + chainAccessors, contractTransmitters, err := i.createChainAccessorsAndContractTransmitters(ctx, extendedReaders, chainWriters, pluginServices, config) if err != nil { return nil, fmt.Errorf("failed to create chain accessors: %w", err) } @@ -474,8 +474,7 @@ func (i *pluginOracleCreator) createChainAccessorsAndContractTransmitters( extendedReaders map[cciptypes.ChainSelector]contractreader.Extended, chainWriters map[cciptypes.ChainSelector]types.ContractWriter, pluginServices ccipcommon.PluginServices, - offrampAddrStr string, - pluginType cctypes.PluginType, + config cctypes.OCR3ConfigWithMeta, ) (map[cciptypes.ChainSelector]cciptypes.ChainAccessor, map[cciptypes.ChainSelector]ocr3types.ContractTransmitter[[]byte], error) { chainAccessors := make(map[cciptypes.ChainSelector]cciptypes.ChainAccessor) contractTransmitters := make(map[cciptypes.ChainSelector]ocr3types.ContractTransmitter[[]byte]) @@ -491,9 +490,14 @@ func (i *pluginOracleCreator) createChainAccessorsAndContractTransmitters( var provider types.CCIPProvider ccipProviderSupported, ok := pluginServices.CCIPProviderSupported[relayID.Network] if ccipProviderSupported && ok { + transmitter := i.transmitters[relayID] + if len(transmitter) == 0 { + return nil, nil, errors.New("transmitter list is empty") + } provider, err = relayer.NewCCIPProvider(ctx, types.CCIPProviderArgs{ - OffRampAddress: offrampAddrStr, - PluginType: uint32(pluginType), + PluginType: cciptypes.PluginType(config.Config.PluginType), + OffRampAddress: config.Config.OfframpAddress, + Transmitter: transmitter[0], }) if err != nil { return nil, nil, fmt.Errorf("failed to create CCIP provider for relay ID %s: %w", relayID, err) diff --git a/core/capabilities/ccip/types/types.go b/core/capabilities/ccip/types/types.go index 003be2864f6..473b659df70 100644 --- a/core/capabilities/ccip/types/types.go +++ b/core/capabilities/ccip/types/types.go @@ -4,6 +4,7 @@ import ( "context" ccipreaderpkg "github.com/smartcontractkit/chainlink-ccip/pkg/reader" + "github.com/smartcontractkit/chainlink-common/pkg/types/ccipocr3" ) // OCR3ConfigWithMeta is a type alias in order to generate correct mocks for the OracleCreator interface. @@ -11,7 +12,7 @@ type OCR3ConfigWithMeta ccipreaderpkg.OCR3ConfigWithMeta // PluginType represents the type of CCIP plugin. // It mirrors the OCRPluginType in Internal.sol. -type PluginType uint8 +type PluginType ccipocr3.PluginType const ( PluginTypeCCIPCommit PluginType = 0 diff --git a/core/scripts/go.mod b/core/scripts/go.mod index a88ba691a7a..bc4c1766c39 100644 --- a/core/scripts/go.mod +++ b/core/scripts/go.mod @@ -46,8 +46,8 @@ require ( github.com/rs/zerolog v1.33.0 github.com/shopspring/decimal v1.4.0 github.com/smartcontractkit/chainlink-automation v0.8.1 - github.com/smartcontractkit/chainlink-ccip v0.1.1-solana.0.20250911201806-5a095deaeb52 - github.com/smartcontractkit/chainlink-common v0.9.5-0.20250917190204-8817bb81d880 + github.com/smartcontractkit/chainlink-ccip v0.1.1-solana.0.20250910210251-724af8ee41ad + github.com/smartcontractkit/chainlink-common v0.9.6-0.20250924155255-91f3f788735b github.com/smartcontractkit/chainlink-data-streams v0.1.2 github.com/smartcontractkit/chainlink-deployments-framework v0.49.0 github.com/smartcontractkit/chainlink-evm v0.3.4-0.20250915101441-709f87f7d401 @@ -477,9 +477,9 @@ require ( github.com/smartcontractkit/ccip-owner-contracts v0.1.0 // indirect github.com/smartcontractkit/chain-selectors v1.0.71 // indirect github.com/smartcontractkit/chainlink-aptos v0.0.0-20250916164650-970686360fbf // indirect - github.com/smartcontractkit/chainlink-ccip/chains/solana v0.0.0-20250908144012-8184001834b5 // indirect - github.com/smartcontractkit/chainlink-ccip/chains/solana/gobindings v0.0.0-20250908144012-8184001834b5 // indirect - github.com/smartcontractkit/chainlink-common/pkg/chipingress v0.0.1 // indirect + github.com/smartcontractkit/chainlink-ccip/chains/solana v0.0.0-20250910210251-724af8ee41ad // indirect + github.com/smartcontractkit/chainlink-ccip/chains/solana/gobindings v0.0.0-20250910210251-724af8ee41ad // indirect + github.com/smartcontractkit/chainlink-common/pkg/chipingress v0.0.4 // indirect github.com/smartcontractkit/chainlink-feeds v0.1.2-0.20250227211209-7cd000095135 // indirect github.com/smartcontractkit/chainlink-framework/capabilities v0.0.0-20250818175541-3389ac08a563 // indirect github.com/smartcontractkit/chainlink-framework/chains v0.0.0-20250717121125-2350c82883e2 // indirect @@ -492,7 +492,7 @@ require ( github.com/smartcontractkit/chainlink-protos/storage-service v0.3.0 // indirect github.com/smartcontractkit/chainlink-protos/svr v1.1.0 // indirect github.com/smartcontractkit/chainlink-protos/workflows/go v0.0.0-20250912140847-cbfb1710ac76 // indirect - github.com/smartcontractkit/chainlink-solana v1.1.2-0.20250910230900-fa42dad2d413 // indirect + github.com/smartcontractkit/chainlink-solana v1.1.2-0.20250924164340-6369099dd7d6 // indirect github.com/smartcontractkit/chainlink-sui v0.0.0-20250916193659-4becc28a467f // indirect github.com/smartcontractkit/chainlink-testing-framework/framework/components/fake v0.10.0 // indirect github.com/smartcontractkit/chainlink-testing-framework/parrot v0.6.2 // indirect diff --git a/core/scripts/go.sum b/core/scripts/go.sum index 6da7c85fd82..e78e6d95077 100644 --- a/core/scripts/go.sum +++ b/core/scripts/go.sum @@ -1591,16 +1591,16 @@ github.com/smartcontractkit/chainlink-aptos v0.0.0-20250916164650-970686360fbf h github.com/smartcontractkit/chainlink-aptos v0.0.0-20250916164650-970686360fbf/go.mod h1:tEjqontct1/5cKHm4q75nopZa1rwzaQZwd9U9wn0uZE= github.com/smartcontractkit/chainlink-automation v0.8.1 h1:sTc9LKpBvcKPc1JDYAmgBc2xpDKBco/Q4h4ydl6+UUU= github.com/smartcontractkit/chainlink-automation v0.8.1/go.mod h1:Iij36PvWZ6blrdC5A/nrQUBuf3MH3JvsBB9sSyc9W08= -github.com/smartcontractkit/chainlink-ccip v0.1.1-solana.0.20250911201806-5a095deaeb52 h1:q0rx7lax/Wi0GK3+fTn22sx4zp4HPPu+2m5fcE12Rn8= -github.com/smartcontractkit/chainlink-ccip v0.1.1-solana.0.20250911201806-5a095deaeb52/go.mod h1:4djmYiCYf9BfpNcuhANzh/umrMKfhOQRGfnk1ZnL5Io= -github.com/smartcontractkit/chainlink-ccip/chains/solana v0.0.0-20250908144012-8184001834b5 h1:GmJQqNrWn5pNc8YTei6l2TOSYjK2fRd4+edFZIifCrU= -github.com/smartcontractkit/chainlink-ccip/chains/solana v0.0.0-20250908144012-8184001834b5/go.mod h1:Ve1xD71bl193YIZQEoJMmBqLGQJdNs29bwbuObwvbhQ= -github.com/smartcontractkit/chainlink-ccip/chains/solana/gobindings v0.0.0-20250908144012-8184001834b5 h1:QhcYGEhRLInr1/qh/3RJiVdvJ0nxBHKhPe65WLbSBnU= -github.com/smartcontractkit/chainlink-ccip/chains/solana/gobindings v0.0.0-20250908144012-8184001834b5/go.mod h1:xtZNi6pOKdC3sLvokDvXOhgHzT+cyBqH/gWwvxTxqrg= -github.com/smartcontractkit/chainlink-common v0.9.5-0.20250917190204-8817bb81d880 h1:gbUrnSRp1PdPHQtYyZ5geQXV7ReY1/QZcxInU5ivR1Q= -github.com/smartcontractkit/chainlink-common v0.9.5-0.20250917190204-8817bb81d880/go.mod h1:EKFUYgf8IsArVMF8lzXNyIhdH6lM8mhyvztCSouZ+G8= -github.com/smartcontractkit/chainlink-common/pkg/chipingress v0.0.1 h1:ca2z5OXgnbBPQRxpwXwBLJsUA1+cAp5ncfW4Ssvd6eY= -github.com/smartcontractkit/chainlink-common/pkg/chipingress v0.0.1/go.mod h1:NZv/qKYGFRnkjOYBouajnDfFoZ+WDa6H2KNmSf1dnKc= +github.com/smartcontractkit/chainlink-ccip v0.1.1-solana.0.20250910210251-724af8ee41ad h1:d5i6DP5kHf4fg/YLuwxwVQ2U10UON88B51dnYD5ClX0= +github.com/smartcontractkit/chainlink-ccip v0.1.1-solana.0.20250910210251-724af8ee41ad/go.mod h1:4djmYiCYf9BfpNcuhANzh/umrMKfhOQRGfnk1ZnL5Io= +github.com/smartcontractkit/chainlink-ccip/chains/solana v0.0.0-20250910210251-724af8ee41ad h1:ckD0YGvMrAHs1hWP/HEAsnmPQ5s9wy3BTdUUwCAkK1w= +github.com/smartcontractkit/chainlink-ccip/chains/solana v0.0.0-20250910210251-724af8ee41ad/go.mod h1:Ve1xD71bl193YIZQEoJMmBqLGQJdNs29bwbuObwvbhQ= +github.com/smartcontractkit/chainlink-ccip/chains/solana/gobindings v0.0.0-20250910210251-724af8ee41ad h1:1mM6KMT0cXQmHGpPkNQyVtwB6uBXNRMoSyPvTSPUkIk= +github.com/smartcontractkit/chainlink-ccip/chains/solana/gobindings v0.0.0-20250910210251-724af8ee41ad/go.mod h1:xtZNi6pOKdC3sLvokDvXOhgHzT+cyBqH/gWwvxTxqrg= +github.com/smartcontractkit/chainlink-common v0.9.6-0.20250924155255-91f3f788735b h1:PeGzJpycGGRbR1u5TefH/CXngBEvVmlVMCY6pTzm9RU= +github.com/smartcontractkit/chainlink-common v0.9.6-0.20250924155255-91f3f788735b/go.mod h1:1r3aM96KHAESfnayJ3BTHCkP1qJS1BEG1r4czeoaXlA= +github.com/smartcontractkit/chainlink-common/pkg/chipingress v0.0.4 h1:hvqATtrZ0iMRTI80cpBot/3JFbjz2j+2tvpfooVhRHw= +github.com/smartcontractkit/chainlink-common/pkg/chipingress v0.0.4/go.mod h1:eKGyfTKzr0/PeR7qKN4l2FcW9p+HzyKUwAfGhm/5YZc= github.com/smartcontractkit/chainlink-common/pkg/monitoring v0.0.0-20250415235644-8703639403c7 h1:9wh1G+WbXwPVqf0cfSRSgwIcaXTQgvYezylEAfwmrbw= github.com/smartcontractkit/chainlink-common/pkg/monitoring v0.0.0-20250415235644-8703639403c7/go.mod h1:yaDOAZF6MNB+NGYpxGCUc+owIdKrjvFW0JODdTcQ3V0= github.com/smartcontractkit/chainlink-data-streams v0.1.2 h1:g/UmFJa/E1Zmc7NO20ob5SijxQen51DhnqTLr2f7BEc= @@ -1639,8 +1639,8 @@ github.com/smartcontractkit/chainlink-protos/svr v1.1.0 h1:79Z9N9dMbMVRGaLoDPAQ+ github.com/smartcontractkit/chainlink-protos/svr v1.1.0/go.mod h1:TcOliTQU6r59DwG4lo3U+mFM9WWyBHGuFkkxQpvSujo= github.com/smartcontractkit/chainlink-protos/workflows/go v0.0.0-20250912140847-cbfb1710ac76 h1:IVaB9Nbaqteno+kW64J45q0yS8xJjnzLWO1P7kibolk= github.com/smartcontractkit/chainlink-protos/workflows/go v0.0.0-20250912140847-cbfb1710ac76/go.mod h1:HIpGvF6nKCdtZ30xhdkKWGM9+4Z4CVqJH8ZBL1FTEiY= -github.com/smartcontractkit/chainlink-solana v1.1.2-0.20250910230900-fa42dad2d413 h1:9HieHSTV3r8pRgwm6afiaH7EJDU3v+wVrRtDRFTKy+4= -github.com/smartcontractkit/chainlink-solana v1.1.2-0.20250910230900-fa42dad2d413/go.mod h1:LSZMvQYbdK20+21S68/lcTNHStehHPF1X764PICkrRU= +github.com/smartcontractkit/chainlink-solana v1.1.2-0.20250924164340-6369099dd7d6 h1:qJhILP53vAYZLVW955fL5pbygaTMs472WKT9Izo3C5A= +github.com/smartcontractkit/chainlink-solana v1.1.2-0.20250924164340-6369099dd7d6/go.mod h1:gUG7rvdza4MH95X9zHgEn6ZQ/xUIKktLzQ3R2A7yMAs= github.com/smartcontractkit/chainlink-sui v0.0.0-20250916193659-4becc28a467f h1:7saUNbu+edzDgRPedNFfTsx5+5RL40r1r0pgISoh8Hs= github.com/smartcontractkit/chainlink-sui v0.0.0-20250916193659-4becc28a467f/go.mod h1:CTR5agBB07sCpRltBkHmnkCZ+g8sXRafCJge/Hqr7aM= github.com/smartcontractkit/chainlink-testing-framework/framework v0.10.24 h1:i8+fR76yn0yxAFAkdhy7BgIB2VJgwec9BqnSPp6fZ7M= diff --git a/deployment/go.mod b/deployment/go.mod index 8b37d6fe862..8840b216acf 100644 --- a/deployment/go.mod +++ b/deployment/go.mod @@ -36,10 +36,10 @@ require ( github.com/smartcontractkit/ccip-owner-contracts v0.1.0 github.com/smartcontractkit/chain-selectors v1.0.71 github.com/smartcontractkit/chainlink-aptos v0.0.0-20250916164650-970686360fbf - github.com/smartcontractkit/chainlink-ccip v0.1.1-solana.0.20250911201806-5a095deaeb52 - github.com/smartcontractkit/chainlink-ccip/chains/solana v0.0.0-20250908144012-8184001834b5 - github.com/smartcontractkit/chainlink-ccip/chains/solana/gobindings v0.0.0-20250908144012-8184001834b5 - github.com/smartcontractkit/chainlink-common v0.9.5-0.20250917190204-8817bb81d880 + github.com/smartcontractkit/chainlink-ccip v0.1.1-solana.0.20250910210251-724af8ee41ad + github.com/smartcontractkit/chainlink-ccip/chains/solana v0.0.0-20250910210251-724af8ee41ad + github.com/smartcontractkit/chainlink-ccip/chains/solana/gobindings v0.0.0-20250910210251-724af8ee41ad + github.com/smartcontractkit/chainlink-common v0.9.6-0.20250924155255-91f3f788735b github.com/smartcontractkit/chainlink-deployments-framework v0.49.0 github.com/smartcontractkit/chainlink-evm v0.3.4-0.20250915101441-709f87f7d401 github.com/smartcontractkit/chainlink-evm/gethwrappers v0.0.0-20250827130336-5922343458be @@ -47,7 +47,7 @@ require ( github.com/smartcontractkit/chainlink-protos/cre/go v0.0.0-20250911124514-5874cc6d62b2 github.com/smartcontractkit/chainlink-protos/job-distributor v0.13.1 github.com/smartcontractkit/chainlink-protos/orchestrator v0.10.0 - github.com/smartcontractkit/chainlink-solana v1.1.2-0.20250910230900-fa42dad2d413 + github.com/smartcontractkit/chainlink-solana v1.1.2-0.20250924164340-6369099dd7d6 github.com/smartcontractkit/chainlink-testing-framework/framework v0.10.24 github.com/smartcontractkit/chainlink-testing-framework/lib v1.54.5 github.com/smartcontractkit/chainlink-ton v0.0.0-20250923115307-8be0359fbce5 @@ -400,7 +400,7 @@ require ( github.com/sigurn/crc16 v0.0.0-20211026045750-20ab5afb07e3 // indirect github.com/sirupsen/logrus v1.9.3 // indirect github.com/smartcontractkit/chainlink-automation v0.8.1 // indirect - github.com/smartcontractkit/chainlink-common/pkg/chipingress v0.0.1 // indirect + github.com/smartcontractkit/chainlink-common/pkg/chipingress v0.0.4 // indirect github.com/smartcontractkit/chainlink-data-streams v0.1.2 // indirect github.com/smartcontractkit/chainlink-feeds v0.1.2-0.20250227211209-7cd000095135 // indirect github.com/smartcontractkit/chainlink-framework/capabilities v0.0.0-20250818175541-3389ac08a563 // indirect diff --git a/deployment/go.sum b/deployment/go.sum index 0bdc0232c8d..63abed8f10a 100644 --- a/deployment/go.sum +++ b/deployment/go.sum @@ -1328,16 +1328,16 @@ github.com/smartcontractkit/chainlink-aptos v0.0.0-20250916164650-970686360fbf h github.com/smartcontractkit/chainlink-aptos v0.0.0-20250916164650-970686360fbf/go.mod h1:tEjqontct1/5cKHm4q75nopZa1rwzaQZwd9U9wn0uZE= github.com/smartcontractkit/chainlink-automation v0.8.1 h1:sTc9LKpBvcKPc1JDYAmgBc2xpDKBco/Q4h4ydl6+UUU= github.com/smartcontractkit/chainlink-automation v0.8.1/go.mod h1:Iij36PvWZ6blrdC5A/nrQUBuf3MH3JvsBB9sSyc9W08= -github.com/smartcontractkit/chainlink-ccip v0.1.1-solana.0.20250911201806-5a095deaeb52 h1:q0rx7lax/Wi0GK3+fTn22sx4zp4HPPu+2m5fcE12Rn8= -github.com/smartcontractkit/chainlink-ccip v0.1.1-solana.0.20250911201806-5a095deaeb52/go.mod h1:4djmYiCYf9BfpNcuhANzh/umrMKfhOQRGfnk1ZnL5Io= -github.com/smartcontractkit/chainlink-ccip/chains/solana v0.0.0-20250908144012-8184001834b5 h1:GmJQqNrWn5pNc8YTei6l2TOSYjK2fRd4+edFZIifCrU= -github.com/smartcontractkit/chainlink-ccip/chains/solana v0.0.0-20250908144012-8184001834b5/go.mod h1:Ve1xD71bl193YIZQEoJMmBqLGQJdNs29bwbuObwvbhQ= -github.com/smartcontractkit/chainlink-ccip/chains/solana/gobindings v0.0.0-20250908144012-8184001834b5 h1:QhcYGEhRLInr1/qh/3RJiVdvJ0nxBHKhPe65WLbSBnU= -github.com/smartcontractkit/chainlink-ccip/chains/solana/gobindings v0.0.0-20250908144012-8184001834b5/go.mod h1:xtZNi6pOKdC3sLvokDvXOhgHzT+cyBqH/gWwvxTxqrg= -github.com/smartcontractkit/chainlink-common v0.9.5-0.20250917190204-8817bb81d880 h1:gbUrnSRp1PdPHQtYyZ5geQXV7ReY1/QZcxInU5ivR1Q= -github.com/smartcontractkit/chainlink-common v0.9.5-0.20250917190204-8817bb81d880/go.mod h1:EKFUYgf8IsArVMF8lzXNyIhdH6lM8mhyvztCSouZ+G8= -github.com/smartcontractkit/chainlink-common/pkg/chipingress v0.0.1 h1:ca2z5OXgnbBPQRxpwXwBLJsUA1+cAp5ncfW4Ssvd6eY= -github.com/smartcontractkit/chainlink-common/pkg/chipingress v0.0.1/go.mod h1:NZv/qKYGFRnkjOYBouajnDfFoZ+WDa6H2KNmSf1dnKc= +github.com/smartcontractkit/chainlink-ccip v0.1.1-solana.0.20250910210251-724af8ee41ad h1:d5i6DP5kHf4fg/YLuwxwVQ2U10UON88B51dnYD5ClX0= +github.com/smartcontractkit/chainlink-ccip v0.1.1-solana.0.20250910210251-724af8ee41ad/go.mod h1:4djmYiCYf9BfpNcuhANzh/umrMKfhOQRGfnk1ZnL5Io= +github.com/smartcontractkit/chainlink-ccip/chains/solana v0.0.0-20250910210251-724af8ee41ad h1:ckD0YGvMrAHs1hWP/HEAsnmPQ5s9wy3BTdUUwCAkK1w= +github.com/smartcontractkit/chainlink-ccip/chains/solana v0.0.0-20250910210251-724af8ee41ad/go.mod h1:Ve1xD71bl193YIZQEoJMmBqLGQJdNs29bwbuObwvbhQ= +github.com/smartcontractkit/chainlink-ccip/chains/solana/gobindings v0.0.0-20250910210251-724af8ee41ad h1:1mM6KMT0cXQmHGpPkNQyVtwB6uBXNRMoSyPvTSPUkIk= +github.com/smartcontractkit/chainlink-ccip/chains/solana/gobindings v0.0.0-20250910210251-724af8ee41ad/go.mod h1:xtZNi6pOKdC3sLvokDvXOhgHzT+cyBqH/gWwvxTxqrg= +github.com/smartcontractkit/chainlink-common v0.9.6-0.20250924155255-91f3f788735b h1:PeGzJpycGGRbR1u5TefH/CXngBEvVmlVMCY6pTzm9RU= +github.com/smartcontractkit/chainlink-common v0.9.6-0.20250924155255-91f3f788735b/go.mod h1:1r3aM96KHAESfnayJ3BTHCkP1qJS1BEG1r4czeoaXlA= +github.com/smartcontractkit/chainlink-common/pkg/chipingress v0.0.4 h1:hvqATtrZ0iMRTI80cpBot/3JFbjz2j+2tvpfooVhRHw= +github.com/smartcontractkit/chainlink-common/pkg/chipingress v0.0.4/go.mod h1:eKGyfTKzr0/PeR7qKN4l2FcW9p+HzyKUwAfGhm/5YZc= github.com/smartcontractkit/chainlink-common/pkg/monitoring v0.0.0-20250415235644-8703639403c7 h1:9wh1G+WbXwPVqf0cfSRSgwIcaXTQgvYezylEAfwmrbw= github.com/smartcontractkit/chainlink-common/pkg/monitoring v0.0.0-20250415235644-8703639403c7/go.mod h1:yaDOAZF6MNB+NGYpxGCUc+owIdKrjvFW0JODdTcQ3V0= github.com/smartcontractkit/chainlink-data-streams v0.1.2 h1:g/UmFJa/E1Zmc7NO20ob5SijxQen51DhnqTLr2f7BEc= @@ -1376,8 +1376,8 @@ github.com/smartcontractkit/chainlink-protos/svr v1.1.0 h1:79Z9N9dMbMVRGaLoDPAQ+ github.com/smartcontractkit/chainlink-protos/svr v1.1.0/go.mod h1:TcOliTQU6r59DwG4lo3U+mFM9WWyBHGuFkkxQpvSujo= github.com/smartcontractkit/chainlink-protos/workflows/go v0.0.0-20250912140847-cbfb1710ac76 h1:IVaB9Nbaqteno+kW64J45q0yS8xJjnzLWO1P7kibolk= github.com/smartcontractkit/chainlink-protos/workflows/go v0.0.0-20250912140847-cbfb1710ac76/go.mod h1:HIpGvF6nKCdtZ30xhdkKWGM9+4Z4CVqJH8ZBL1FTEiY= -github.com/smartcontractkit/chainlink-solana v1.1.2-0.20250910230900-fa42dad2d413 h1:9HieHSTV3r8pRgwm6afiaH7EJDU3v+wVrRtDRFTKy+4= -github.com/smartcontractkit/chainlink-solana v1.1.2-0.20250910230900-fa42dad2d413/go.mod h1:LSZMvQYbdK20+21S68/lcTNHStehHPF1X764PICkrRU= +github.com/smartcontractkit/chainlink-solana v1.1.2-0.20250924164340-6369099dd7d6 h1:qJhILP53vAYZLVW955fL5pbygaTMs472WKT9Izo3C5A= +github.com/smartcontractkit/chainlink-solana v1.1.2-0.20250924164340-6369099dd7d6/go.mod h1:gUG7rvdza4MH95X9zHgEn6ZQ/xUIKktLzQ3R2A7yMAs= github.com/smartcontractkit/chainlink-sui v0.0.0-20250916193659-4becc28a467f h1:7saUNbu+edzDgRPedNFfTsx5+5RL40r1r0pgISoh8Hs= github.com/smartcontractkit/chainlink-sui v0.0.0-20250916193659-4becc28a467f/go.mod h1:CTR5agBB07sCpRltBkHmnkCZ+g8sXRafCJge/Hqr7aM= github.com/smartcontractkit/chainlink-testing-framework/framework v0.10.24 h1:i8+fR76yn0yxAFAkdhy7BgIB2VJgwec9BqnSPp6fZ7M= diff --git a/go.mod b/go.mod index ca06aa1796c..676fc09e97e 100644 --- a/go.mod +++ b/go.mod @@ -81,10 +81,10 @@ require ( github.com/smartcontractkit/chain-selectors v1.0.70 github.com/smartcontractkit/chainlink-aptos v0.0.0-20250916164650-970686360fbf github.com/smartcontractkit/chainlink-automation v0.8.1 - github.com/smartcontractkit/chainlink-ccip v0.1.1-solana.0.20250911201806-5a095deaeb52 - github.com/smartcontractkit/chainlink-ccip/chains/solana v0.0.0-20250908144012-8184001834b5 - github.com/smartcontractkit/chainlink-ccip/chains/solana/gobindings v0.0.0-20250908144012-8184001834b5 - github.com/smartcontractkit/chainlink-common v0.9.5-0.20250917190204-8817bb81d880 + github.com/smartcontractkit/chainlink-ccip v0.1.1-solana.0.20250910210251-724af8ee41ad + github.com/smartcontractkit/chainlink-ccip/chains/solana v0.0.0-20250910210251-724af8ee41ad + github.com/smartcontractkit/chainlink-ccip/chains/solana/gobindings v0.0.0-20250910210251-724af8ee41ad + github.com/smartcontractkit/chainlink-common v0.9.6-0.20250924155255-91f3f788735b github.com/smartcontractkit/chainlink-data-streams v0.1.2 github.com/smartcontractkit/chainlink-evm v0.3.4-0.20250915101441-709f87f7d401 github.com/smartcontractkit/chainlink-evm/gethwrappers v0.0.0-20250827130336-5922343458be @@ -98,7 +98,7 @@ require ( github.com/smartcontractkit/chainlink-protos/orchestrator v0.10.0 github.com/smartcontractkit/chainlink-protos/storage-service v0.3.0 github.com/smartcontractkit/chainlink-protos/workflows/go v0.0.0-20250912140847-cbfb1710ac76 - github.com/smartcontractkit/chainlink-solana v1.1.2-0.20250910230900-fa42dad2d413 + github.com/smartcontractkit/chainlink-solana v1.1.2-0.20250924164340-6369099dd7d6 github.com/smartcontractkit/chainlink-sui v0.0.0-20250916145228-cc9dd5b92c88 github.com/smartcontractkit/chainlink-ton v0.0.0-20250923115307-8be0359fbce5 github.com/smartcontractkit/chainlink-tron/relayer v0.0.11-0.20250815105909-75499abc4335 @@ -344,7 +344,7 @@ require ( github.com/sasha-s/go-deadlock v0.3.5 // indirect github.com/sethvargo/go-retry v0.2.4 // indirect github.com/shirou/gopsutil v3.21.11+incompatible // indirect - github.com/smartcontractkit/chainlink-common/pkg/chipingress v0.0.1 // indirect + github.com/smartcontractkit/chainlink-common/pkg/chipingress v0.0.4 // indirect github.com/smartcontractkit/chainlink-framework/metrics v0.0.0-20250717121125-2350c82883e2 // indirect github.com/smartcontractkit/chainlink-protos/rmn/v1.6/go v0.0.0-20250131130834-15e0d4cde2a6 // indirect github.com/smartcontractkit/chainlink-protos/svr v1.1.0 // indirect diff --git a/go.sum b/go.sum index 34cfae5cb89..3a89a50b671 100644 --- a/go.sum +++ b/go.sum @@ -1107,16 +1107,16 @@ github.com/smartcontractkit/chainlink-aptos v0.0.0-20250916164650-970686360fbf h github.com/smartcontractkit/chainlink-aptos v0.0.0-20250916164650-970686360fbf/go.mod h1:tEjqontct1/5cKHm4q75nopZa1rwzaQZwd9U9wn0uZE= github.com/smartcontractkit/chainlink-automation v0.8.1 h1:sTc9LKpBvcKPc1JDYAmgBc2xpDKBco/Q4h4ydl6+UUU= github.com/smartcontractkit/chainlink-automation v0.8.1/go.mod h1:Iij36PvWZ6blrdC5A/nrQUBuf3MH3JvsBB9sSyc9W08= -github.com/smartcontractkit/chainlink-ccip v0.1.1-solana.0.20250911201806-5a095deaeb52 h1:q0rx7lax/Wi0GK3+fTn22sx4zp4HPPu+2m5fcE12Rn8= -github.com/smartcontractkit/chainlink-ccip v0.1.1-solana.0.20250911201806-5a095deaeb52/go.mod h1:4djmYiCYf9BfpNcuhANzh/umrMKfhOQRGfnk1ZnL5Io= -github.com/smartcontractkit/chainlink-ccip/chains/solana v0.0.0-20250908144012-8184001834b5 h1:GmJQqNrWn5pNc8YTei6l2TOSYjK2fRd4+edFZIifCrU= -github.com/smartcontractkit/chainlink-ccip/chains/solana v0.0.0-20250908144012-8184001834b5/go.mod h1:Ve1xD71bl193YIZQEoJMmBqLGQJdNs29bwbuObwvbhQ= -github.com/smartcontractkit/chainlink-ccip/chains/solana/gobindings v0.0.0-20250908144012-8184001834b5 h1:QhcYGEhRLInr1/qh/3RJiVdvJ0nxBHKhPe65WLbSBnU= -github.com/smartcontractkit/chainlink-ccip/chains/solana/gobindings v0.0.0-20250908144012-8184001834b5/go.mod h1:xtZNi6pOKdC3sLvokDvXOhgHzT+cyBqH/gWwvxTxqrg= -github.com/smartcontractkit/chainlink-common v0.9.5-0.20250917190204-8817bb81d880 h1:gbUrnSRp1PdPHQtYyZ5geQXV7ReY1/QZcxInU5ivR1Q= -github.com/smartcontractkit/chainlink-common v0.9.5-0.20250917190204-8817bb81d880/go.mod h1:EKFUYgf8IsArVMF8lzXNyIhdH6lM8mhyvztCSouZ+G8= -github.com/smartcontractkit/chainlink-common/pkg/chipingress v0.0.1 h1:ca2z5OXgnbBPQRxpwXwBLJsUA1+cAp5ncfW4Ssvd6eY= -github.com/smartcontractkit/chainlink-common/pkg/chipingress v0.0.1/go.mod h1:NZv/qKYGFRnkjOYBouajnDfFoZ+WDa6H2KNmSf1dnKc= +github.com/smartcontractkit/chainlink-ccip v0.1.1-solana.0.20250910210251-724af8ee41ad h1:d5i6DP5kHf4fg/YLuwxwVQ2U10UON88B51dnYD5ClX0= +github.com/smartcontractkit/chainlink-ccip v0.1.1-solana.0.20250910210251-724af8ee41ad/go.mod h1:4djmYiCYf9BfpNcuhANzh/umrMKfhOQRGfnk1ZnL5Io= +github.com/smartcontractkit/chainlink-ccip/chains/solana v0.0.0-20250910210251-724af8ee41ad h1:ckD0YGvMrAHs1hWP/HEAsnmPQ5s9wy3BTdUUwCAkK1w= +github.com/smartcontractkit/chainlink-ccip/chains/solana v0.0.0-20250910210251-724af8ee41ad/go.mod h1:Ve1xD71bl193YIZQEoJMmBqLGQJdNs29bwbuObwvbhQ= +github.com/smartcontractkit/chainlink-ccip/chains/solana/gobindings v0.0.0-20250910210251-724af8ee41ad h1:1mM6KMT0cXQmHGpPkNQyVtwB6uBXNRMoSyPvTSPUkIk= +github.com/smartcontractkit/chainlink-ccip/chains/solana/gobindings v0.0.0-20250910210251-724af8ee41ad/go.mod h1:xtZNi6pOKdC3sLvokDvXOhgHzT+cyBqH/gWwvxTxqrg= +github.com/smartcontractkit/chainlink-common v0.9.6-0.20250924155255-91f3f788735b h1:PeGzJpycGGRbR1u5TefH/CXngBEvVmlVMCY6pTzm9RU= +github.com/smartcontractkit/chainlink-common v0.9.6-0.20250924155255-91f3f788735b/go.mod h1:1r3aM96KHAESfnayJ3BTHCkP1qJS1BEG1r4czeoaXlA= +github.com/smartcontractkit/chainlink-common/pkg/chipingress v0.0.4 h1:hvqATtrZ0iMRTI80cpBot/3JFbjz2j+2tvpfooVhRHw= +github.com/smartcontractkit/chainlink-common/pkg/chipingress v0.0.4/go.mod h1:eKGyfTKzr0/PeR7qKN4l2FcW9p+HzyKUwAfGhm/5YZc= github.com/smartcontractkit/chainlink-common/pkg/monitoring v0.0.0-20250415235644-8703639403c7 h1:9wh1G+WbXwPVqf0cfSRSgwIcaXTQgvYezylEAfwmrbw= github.com/smartcontractkit/chainlink-common/pkg/monitoring v0.0.0-20250415235644-8703639403c7/go.mod h1:yaDOAZF6MNB+NGYpxGCUc+owIdKrjvFW0JODdTcQ3V0= github.com/smartcontractkit/chainlink-data-streams v0.1.2 h1:g/UmFJa/E1Zmc7NO20ob5SijxQen51DhnqTLr2f7BEc= @@ -1151,8 +1151,8 @@ github.com/smartcontractkit/chainlink-protos/svr v1.1.0 h1:79Z9N9dMbMVRGaLoDPAQ+ github.com/smartcontractkit/chainlink-protos/svr v1.1.0/go.mod h1:TcOliTQU6r59DwG4lo3U+mFM9WWyBHGuFkkxQpvSujo= github.com/smartcontractkit/chainlink-protos/workflows/go v0.0.0-20250912140847-cbfb1710ac76 h1:IVaB9Nbaqteno+kW64J45q0yS8xJjnzLWO1P7kibolk= github.com/smartcontractkit/chainlink-protos/workflows/go v0.0.0-20250912140847-cbfb1710ac76/go.mod h1:HIpGvF6nKCdtZ30xhdkKWGM9+4Z4CVqJH8ZBL1FTEiY= -github.com/smartcontractkit/chainlink-solana v1.1.2-0.20250910230900-fa42dad2d413 h1:9HieHSTV3r8pRgwm6afiaH7EJDU3v+wVrRtDRFTKy+4= -github.com/smartcontractkit/chainlink-solana v1.1.2-0.20250910230900-fa42dad2d413/go.mod h1:LSZMvQYbdK20+21S68/lcTNHStehHPF1X764PICkrRU= +github.com/smartcontractkit/chainlink-solana v1.1.2-0.20250924164340-6369099dd7d6 h1:qJhILP53vAYZLVW955fL5pbygaTMs472WKT9Izo3C5A= +github.com/smartcontractkit/chainlink-solana v1.1.2-0.20250924164340-6369099dd7d6/go.mod h1:gUG7rvdza4MH95X9zHgEn6ZQ/xUIKktLzQ3R2A7yMAs= github.com/smartcontractkit/chainlink-sui v0.0.0-20250916145228-cc9dd5b92c88 h1:L2mllixqv7DOgkSnd4GDBuRz6UzYujrhETqRJNZOxOk= github.com/smartcontractkit/chainlink-sui v0.0.0-20250916145228-cc9dd5b92c88/go.mod h1:CTR5agBB07sCpRltBkHmnkCZ+g8sXRafCJge/Hqr7aM= github.com/smartcontractkit/chainlink-ton v0.0.0-20250923115307-8be0359fbce5 h1:bpuj+Uwfz3eIoWAz++dxmx4PKmmAReqgkpZaibN8KlI= diff --git a/integration-tests/go.mod b/integration-tests/go.mod index e9c286ab9d7..a5413409b64 100644 --- a/integration-tests/go.mod +++ b/integration-tests/go.mod @@ -47,10 +47,10 @@ require ( github.com/smartcontractkit/chain-selectors v1.0.71 github.com/smartcontractkit/chainlink-aptos v0.0.0-20250916164650-970686360fbf github.com/smartcontractkit/chainlink-automation v0.8.1 - github.com/smartcontractkit/chainlink-ccip v0.1.1-solana.0.20250911201806-5a095deaeb52 - github.com/smartcontractkit/chainlink-ccip/chains/solana v0.0.0-20250908144012-8184001834b5 - github.com/smartcontractkit/chainlink-ccip/chains/solana/gobindings v0.0.0-20250908144012-8184001834b5 - github.com/smartcontractkit/chainlink-common v0.9.5-0.20250917190204-8817bb81d880 + github.com/smartcontractkit/chainlink-ccip v0.1.1-solana.0.20250910210251-724af8ee41ad + github.com/smartcontractkit/chainlink-ccip/chains/solana v0.0.0-20250910210251-724af8ee41ad + github.com/smartcontractkit/chainlink-ccip/chains/solana/gobindings v0.0.0-20250910210251-724af8ee41ad + github.com/smartcontractkit/chainlink-common v0.9.6-0.20250924155255-91f3f788735b github.com/smartcontractkit/chainlink-deployments-framework v0.49.0 github.com/smartcontractkit/chainlink-evm v0.3.4-0.20250915101441-709f87f7d401 github.com/smartcontractkit/chainlink-evm/gethwrappers v0.0.0-20250827130336-5922343458be @@ -482,7 +482,7 @@ require ( github.com/sirupsen/logrus v1.9.3 // indirect github.com/smartcontractkit/ccip-contract-examples/chains/evm v0.0.0-20250826190403-aed7f5f33cde // indirect github.com/smartcontractkit/ccip-owner-contracts v0.1.0 // indirect - github.com/smartcontractkit/chainlink-common/pkg/chipingress v0.0.1 // indirect + github.com/smartcontractkit/chainlink-common/pkg/chipingress v0.0.4 // indirect github.com/smartcontractkit/chainlink-data-streams v0.1.2 // indirect github.com/smartcontractkit/chainlink-feeds v0.1.2-0.20250227211209-7cd000095135 // indirect github.com/smartcontractkit/chainlink-framework/capabilities v0.0.0-20250818175541-3389ac08a563 // indirect @@ -497,7 +497,7 @@ require ( github.com/smartcontractkit/chainlink-protos/storage-service v0.3.0 // indirect github.com/smartcontractkit/chainlink-protos/svr v1.1.0 // indirect github.com/smartcontractkit/chainlink-protos/workflows/go v0.0.0-20250912140847-cbfb1710ac76 // indirect - github.com/smartcontractkit/chainlink-solana v1.1.2-0.20250910230900-fa42dad2d413 // indirect + github.com/smartcontractkit/chainlink-solana v1.1.2-0.20250924164340-6369099dd7d6 // indirect github.com/smartcontractkit/chainlink-sui v0.0.0-20250916193659-4becc28a467f // indirect github.com/smartcontractkit/chainlink-testing-framework/framework v0.10.24 // indirect github.com/smartcontractkit/chainlink-ton/deployment v0.0.0-20250923115307-8be0359fbce5 // indirect diff --git a/integration-tests/go.sum b/integration-tests/go.sum index 8fcc1c1d6c2..965efe70911 100644 --- a/integration-tests/go.sum +++ b/integration-tests/go.sum @@ -1574,16 +1574,16 @@ github.com/smartcontractkit/chainlink-aptos v0.0.0-20250916164650-970686360fbf h github.com/smartcontractkit/chainlink-aptos v0.0.0-20250916164650-970686360fbf/go.mod h1:tEjqontct1/5cKHm4q75nopZa1rwzaQZwd9U9wn0uZE= github.com/smartcontractkit/chainlink-automation v0.8.1 h1:sTc9LKpBvcKPc1JDYAmgBc2xpDKBco/Q4h4ydl6+UUU= github.com/smartcontractkit/chainlink-automation v0.8.1/go.mod h1:Iij36PvWZ6blrdC5A/nrQUBuf3MH3JvsBB9sSyc9W08= -github.com/smartcontractkit/chainlink-ccip v0.1.1-solana.0.20250911201806-5a095deaeb52 h1:q0rx7lax/Wi0GK3+fTn22sx4zp4HPPu+2m5fcE12Rn8= -github.com/smartcontractkit/chainlink-ccip v0.1.1-solana.0.20250911201806-5a095deaeb52/go.mod h1:4djmYiCYf9BfpNcuhANzh/umrMKfhOQRGfnk1ZnL5Io= -github.com/smartcontractkit/chainlink-ccip/chains/solana v0.0.0-20250908144012-8184001834b5 h1:GmJQqNrWn5pNc8YTei6l2TOSYjK2fRd4+edFZIifCrU= -github.com/smartcontractkit/chainlink-ccip/chains/solana v0.0.0-20250908144012-8184001834b5/go.mod h1:Ve1xD71bl193YIZQEoJMmBqLGQJdNs29bwbuObwvbhQ= -github.com/smartcontractkit/chainlink-ccip/chains/solana/gobindings v0.0.0-20250908144012-8184001834b5 h1:QhcYGEhRLInr1/qh/3RJiVdvJ0nxBHKhPe65WLbSBnU= -github.com/smartcontractkit/chainlink-ccip/chains/solana/gobindings v0.0.0-20250908144012-8184001834b5/go.mod h1:xtZNi6pOKdC3sLvokDvXOhgHzT+cyBqH/gWwvxTxqrg= -github.com/smartcontractkit/chainlink-common v0.9.5-0.20250917190204-8817bb81d880 h1:gbUrnSRp1PdPHQtYyZ5geQXV7ReY1/QZcxInU5ivR1Q= -github.com/smartcontractkit/chainlink-common v0.9.5-0.20250917190204-8817bb81d880/go.mod h1:EKFUYgf8IsArVMF8lzXNyIhdH6lM8mhyvztCSouZ+G8= -github.com/smartcontractkit/chainlink-common/pkg/chipingress v0.0.1 h1:ca2z5OXgnbBPQRxpwXwBLJsUA1+cAp5ncfW4Ssvd6eY= -github.com/smartcontractkit/chainlink-common/pkg/chipingress v0.0.1/go.mod h1:NZv/qKYGFRnkjOYBouajnDfFoZ+WDa6H2KNmSf1dnKc= +github.com/smartcontractkit/chainlink-ccip v0.1.1-solana.0.20250910210251-724af8ee41ad h1:d5i6DP5kHf4fg/YLuwxwVQ2U10UON88B51dnYD5ClX0= +github.com/smartcontractkit/chainlink-ccip v0.1.1-solana.0.20250910210251-724af8ee41ad/go.mod h1:4djmYiCYf9BfpNcuhANzh/umrMKfhOQRGfnk1ZnL5Io= +github.com/smartcontractkit/chainlink-ccip/chains/solana v0.0.0-20250910210251-724af8ee41ad h1:ckD0YGvMrAHs1hWP/HEAsnmPQ5s9wy3BTdUUwCAkK1w= +github.com/smartcontractkit/chainlink-ccip/chains/solana v0.0.0-20250910210251-724af8ee41ad/go.mod h1:Ve1xD71bl193YIZQEoJMmBqLGQJdNs29bwbuObwvbhQ= +github.com/smartcontractkit/chainlink-ccip/chains/solana/gobindings v0.0.0-20250910210251-724af8ee41ad h1:1mM6KMT0cXQmHGpPkNQyVtwB6uBXNRMoSyPvTSPUkIk= +github.com/smartcontractkit/chainlink-ccip/chains/solana/gobindings v0.0.0-20250910210251-724af8ee41ad/go.mod h1:xtZNi6pOKdC3sLvokDvXOhgHzT+cyBqH/gWwvxTxqrg= +github.com/smartcontractkit/chainlink-common v0.9.6-0.20250924155255-91f3f788735b h1:PeGzJpycGGRbR1u5TefH/CXngBEvVmlVMCY6pTzm9RU= +github.com/smartcontractkit/chainlink-common v0.9.6-0.20250924155255-91f3f788735b/go.mod h1:1r3aM96KHAESfnayJ3BTHCkP1qJS1BEG1r4czeoaXlA= +github.com/smartcontractkit/chainlink-common/pkg/chipingress v0.0.4 h1:hvqATtrZ0iMRTI80cpBot/3JFbjz2j+2tvpfooVhRHw= +github.com/smartcontractkit/chainlink-common/pkg/chipingress v0.0.4/go.mod h1:eKGyfTKzr0/PeR7qKN4l2FcW9p+HzyKUwAfGhm/5YZc= github.com/smartcontractkit/chainlink-common/pkg/monitoring v0.0.0-20250415235644-8703639403c7 h1:9wh1G+WbXwPVqf0cfSRSgwIcaXTQgvYezylEAfwmrbw= github.com/smartcontractkit/chainlink-common/pkg/monitoring v0.0.0-20250415235644-8703639403c7/go.mod h1:yaDOAZF6MNB+NGYpxGCUc+owIdKrjvFW0JODdTcQ3V0= github.com/smartcontractkit/chainlink-data-streams v0.1.2 h1:g/UmFJa/E1Zmc7NO20ob5SijxQen51DhnqTLr2f7BEc= @@ -1622,8 +1622,8 @@ github.com/smartcontractkit/chainlink-protos/svr v1.1.0 h1:79Z9N9dMbMVRGaLoDPAQ+ github.com/smartcontractkit/chainlink-protos/svr v1.1.0/go.mod h1:TcOliTQU6r59DwG4lo3U+mFM9WWyBHGuFkkxQpvSujo= github.com/smartcontractkit/chainlink-protos/workflows/go v0.0.0-20250912140847-cbfb1710ac76 h1:IVaB9Nbaqteno+kW64J45q0yS8xJjnzLWO1P7kibolk= github.com/smartcontractkit/chainlink-protos/workflows/go v0.0.0-20250912140847-cbfb1710ac76/go.mod h1:HIpGvF6nKCdtZ30xhdkKWGM9+4Z4CVqJH8ZBL1FTEiY= -github.com/smartcontractkit/chainlink-solana v1.1.2-0.20250910230900-fa42dad2d413 h1:9HieHSTV3r8pRgwm6afiaH7EJDU3v+wVrRtDRFTKy+4= -github.com/smartcontractkit/chainlink-solana v1.1.2-0.20250910230900-fa42dad2d413/go.mod h1:LSZMvQYbdK20+21S68/lcTNHStehHPF1X764PICkrRU= +github.com/smartcontractkit/chainlink-solana v1.1.2-0.20250924164340-6369099dd7d6 h1:qJhILP53vAYZLVW955fL5pbygaTMs472WKT9Izo3C5A= +github.com/smartcontractkit/chainlink-solana v1.1.2-0.20250924164340-6369099dd7d6/go.mod h1:gUG7rvdza4MH95X9zHgEn6ZQ/xUIKktLzQ3R2A7yMAs= github.com/smartcontractkit/chainlink-sui v0.0.0-20250916193659-4becc28a467f h1:7saUNbu+edzDgRPedNFfTsx5+5RL40r1r0pgISoh8Hs= github.com/smartcontractkit/chainlink-sui v0.0.0-20250916193659-4becc28a467f/go.mod h1:CTR5agBB07sCpRltBkHmnkCZ+g8sXRafCJge/Hqr7aM= github.com/smartcontractkit/chainlink-testing-framework/framework v0.10.24 h1:i8+fR76yn0yxAFAkdhy7BgIB2VJgwec9BqnSPp6fZ7M= diff --git a/integration-tests/load/go.mod b/integration-tests/load/go.mod index 34213a54bbf..2c9180b92c8 100644 --- a/integration-tests/load/go.mod +++ b/integration-tests/load/go.mod @@ -29,10 +29,10 @@ require ( github.com/slack-go/slack v0.15.0 github.com/smartcontractkit/chain-selectors v1.0.71 github.com/smartcontractkit/chainlink-aptos v0.0.0-20250916164650-970686360fbf - github.com/smartcontractkit/chainlink-ccip v0.1.1-solana.0.20250911201806-5a095deaeb52 - github.com/smartcontractkit/chainlink-ccip/chains/solana v0.0.0-20250908144012-8184001834b5 - github.com/smartcontractkit/chainlink-ccip/chains/solana/gobindings v0.0.0-20250908144012-8184001834b5 - github.com/smartcontractkit/chainlink-common v0.9.5-0.20250917190204-8817bb81d880 + github.com/smartcontractkit/chainlink-ccip v0.1.1-solana.0.20250910210251-724af8ee41ad + github.com/smartcontractkit/chainlink-ccip/chains/solana v0.0.0-20250910210251-724af8ee41ad + github.com/smartcontractkit/chainlink-ccip/chains/solana/gobindings v0.0.0-20250910210251-724af8ee41ad + github.com/smartcontractkit/chainlink-common v0.9.6-0.20250924155255-91f3f788735b github.com/smartcontractkit/chainlink-deployments-framework v0.49.0 github.com/smartcontractkit/chainlink-evm v0.3.4-0.20250915101441-709f87f7d401 github.com/smartcontractkit/chainlink-evm/gethwrappers v0.0.0-20250827130336-5922343458be @@ -471,7 +471,7 @@ require ( github.com/smartcontractkit/ccip-contract-examples/chains/evm v0.0.0-20250826190403-aed7f5f33cde // indirect github.com/smartcontractkit/ccip-owner-contracts v0.1.0 // indirect github.com/smartcontractkit/chainlink-automation v0.8.1 // indirect - github.com/smartcontractkit/chainlink-common/pkg/chipingress v0.0.1 // indirect + github.com/smartcontractkit/chainlink-common/pkg/chipingress v0.0.4 // indirect github.com/smartcontractkit/chainlink-data-streams v0.1.2 // indirect github.com/smartcontractkit/chainlink-feeds v0.1.2-0.20250227211209-7cd000095135 // indirect github.com/smartcontractkit/chainlink-framework/capabilities v0.0.0-20250818175541-3389ac08a563 // indirect @@ -487,7 +487,7 @@ require ( github.com/smartcontractkit/chainlink-protos/storage-service v0.3.0 // indirect github.com/smartcontractkit/chainlink-protos/svr v1.1.0 // indirect github.com/smartcontractkit/chainlink-protos/workflows/go v0.0.0-20250912140847-cbfb1710ac76 // indirect - github.com/smartcontractkit/chainlink-solana v1.1.2-0.20250910230900-fa42dad2d413 // indirect + github.com/smartcontractkit/chainlink-solana v1.1.2-0.20250924164340-6369099dd7d6 // indirect github.com/smartcontractkit/chainlink-sui v0.0.0-20250916193659-4becc28a467f // indirect github.com/smartcontractkit/chainlink-testing-framework/lib/grafana v1.51.0 // indirect github.com/smartcontractkit/chainlink-testing-framework/parrot v0.6.2 // indirect diff --git a/integration-tests/load/go.sum b/integration-tests/load/go.sum index 9772aa35a3b..63f4a114739 100644 --- a/integration-tests/load/go.sum +++ b/integration-tests/load/go.sum @@ -1553,16 +1553,16 @@ github.com/smartcontractkit/chainlink-aptos v0.0.0-20250916164650-970686360fbf h github.com/smartcontractkit/chainlink-aptos v0.0.0-20250916164650-970686360fbf/go.mod h1:tEjqontct1/5cKHm4q75nopZa1rwzaQZwd9U9wn0uZE= github.com/smartcontractkit/chainlink-automation v0.8.1 h1:sTc9LKpBvcKPc1JDYAmgBc2xpDKBco/Q4h4ydl6+UUU= github.com/smartcontractkit/chainlink-automation v0.8.1/go.mod h1:Iij36PvWZ6blrdC5A/nrQUBuf3MH3JvsBB9sSyc9W08= -github.com/smartcontractkit/chainlink-ccip v0.1.1-solana.0.20250911201806-5a095deaeb52 h1:q0rx7lax/Wi0GK3+fTn22sx4zp4HPPu+2m5fcE12Rn8= -github.com/smartcontractkit/chainlink-ccip v0.1.1-solana.0.20250911201806-5a095deaeb52/go.mod h1:4djmYiCYf9BfpNcuhANzh/umrMKfhOQRGfnk1ZnL5Io= -github.com/smartcontractkit/chainlink-ccip/chains/solana v0.0.0-20250908144012-8184001834b5 h1:GmJQqNrWn5pNc8YTei6l2TOSYjK2fRd4+edFZIifCrU= -github.com/smartcontractkit/chainlink-ccip/chains/solana v0.0.0-20250908144012-8184001834b5/go.mod h1:Ve1xD71bl193YIZQEoJMmBqLGQJdNs29bwbuObwvbhQ= -github.com/smartcontractkit/chainlink-ccip/chains/solana/gobindings v0.0.0-20250908144012-8184001834b5 h1:QhcYGEhRLInr1/qh/3RJiVdvJ0nxBHKhPe65WLbSBnU= -github.com/smartcontractkit/chainlink-ccip/chains/solana/gobindings v0.0.0-20250908144012-8184001834b5/go.mod h1:xtZNi6pOKdC3sLvokDvXOhgHzT+cyBqH/gWwvxTxqrg= -github.com/smartcontractkit/chainlink-common v0.9.5-0.20250917190204-8817bb81d880 h1:gbUrnSRp1PdPHQtYyZ5geQXV7ReY1/QZcxInU5ivR1Q= -github.com/smartcontractkit/chainlink-common v0.9.5-0.20250917190204-8817bb81d880/go.mod h1:EKFUYgf8IsArVMF8lzXNyIhdH6lM8mhyvztCSouZ+G8= -github.com/smartcontractkit/chainlink-common/pkg/chipingress v0.0.1 h1:ca2z5OXgnbBPQRxpwXwBLJsUA1+cAp5ncfW4Ssvd6eY= -github.com/smartcontractkit/chainlink-common/pkg/chipingress v0.0.1/go.mod h1:NZv/qKYGFRnkjOYBouajnDfFoZ+WDa6H2KNmSf1dnKc= +github.com/smartcontractkit/chainlink-ccip v0.1.1-solana.0.20250910210251-724af8ee41ad h1:d5i6DP5kHf4fg/YLuwxwVQ2U10UON88B51dnYD5ClX0= +github.com/smartcontractkit/chainlink-ccip v0.1.1-solana.0.20250910210251-724af8ee41ad/go.mod h1:4djmYiCYf9BfpNcuhANzh/umrMKfhOQRGfnk1ZnL5Io= +github.com/smartcontractkit/chainlink-ccip/chains/solana v0.0.0-20250910210251-724af8ee41ad h1:ckD0YGvMrAHs1hWP/HEAsnmPQ5s9wy3BTdUUwCAkK1w= +github.com/smartcontractkit/chainlink-ccip/chains/solana v0.0.0-20250910210251-724af8ee41ad/go.mod h1:Ve1xD71bl193YIZQEoJMmBqLGQJdNs29bwbuObwvbhQ= +github.com/smartcontractkit/chainlink-ccip/chains/solana/gobindings v0.0.0-20250910210251-724af8ee41ad h1:1mM6KMT0cXQmHGpPkNQyVtwB6uBXNRMoSyPvTSPUkIk= +github.com/smartcontractkit/chainlink-ccip/chains/solana/gobindings v0.0.0-20250910210251-724af8ee41ad/go.mod h1:xtZNi6pOKdC3sLvokDvXOhgHzT+cyBqH/gWwvxTxqrg= +github.com/smartcontractkit/chainlink-common v0.9.6-0.20250924155255-91f3f788735b h1:PeGzJpycGGRbR1u5TefH/CXngBEvVmlVMCY6pTzm9RU= +github.com/smartcontractkit/chainlink-common v0.9.6-0.20250924155255-91f3f788735b/go.mod h1:1r3aM96KHAESfnayJ3BTHCkP1qJS1BEG1r4czeoaXlA= +github.com/smartcontractkit/chainlink-common/pkg/chipingress v0.0.4 h1:hvqATtrZ0iMRTI80cpBot/3JFbjz2j+2tvpfooVhRHw= +github.com/smartcontractkit/chainlink-common/pkg/chipingress v0.0.4/go.mod h1:eKGyfTKzr0/PeR7qKN4l2FcW9p+HzyKUwAfGhm/5YZc= github.com/smartcontractkit/chainlink-common/pkg/monitoring v0.0.0-20250415235644-8703639403c7 h1:9wh1G+WbXwPVqf0cfSRSgwIcaXTQgvYezylEAfwmrbw= github.com/smartcontractkit/chainlink-common/pkg/monitoring v0.0.0-20250415235644-8703639403c7/go.mod h1:yaDOAZF6MNB+NGYpxGCUc+owIdKrjvFW0JODdTcQ3V0= github.com/smartcontractkit/chainlink-data-streams v0.1.2 h1:g/UmFJa/E1Zmc7NO20ob5SijxQen51DhnqTLr2f7BEc= @@ -1601,8 +1601,8 @@ github.com/smartcontractkit/chainlink-protos/svr v1.1.0 h1:79Z9N9dMbMVRGaLoDPAQ+ github.com/smartcontractkit/chainlink-protos/svr v1.1.0/go.mod h1:TcOliTQU6r59DwG4lo3U+mFM9WWyBHGuFkkxQpvSujo= github.com/smartcontractkit/chainlink-protos/workflows/go v0.0.0-20250912140847-cbfb1710ac76 h1:IVaB9Nbaqteno+kW64J45q0yS8xJjnzLWO1P7kibolk= github.com/smartcontractkit/chainlink-protos/workflows/go v0.0.0-20250912140847-cbfb1710ac76/go.mod h1:HIpGvF6nKCdtZ30xhdkKWGM9+4Z4CVqJH8ZBL1FTEiY= -github.com/smartcontractkit/chainlink-solana v1.1.2-0.20250910230900-fa42dad2d413 h1:9HieHSTV3r8pRgwm6afiaH7EJDU3v+wVrRtDRFTKy+4= -github.com/smartcontractkit/chainlink-solana v1.1.2-0.20250910230900-fa42dad2d413/go.mod h1:LSZMvQYbdK20+21S68/lcTNHStehHPF1X764PICkrRU= +github.com/smartcontractkit/chainlink-solana v1.1.2-0.20250924164340-6369099dd7d6 h1:qJhILP53vAYZLVW955fL5pbygaTMs472WKT9Izo3C5A= +github.com/smartcontractkit/chainlink-solana v1.1.2-0.20250924164340-6369099dd7d6/go.mod h1:gUG7rvdza4MH95X9zHgEn6ZQ/xUIKktLzQ3R2A7yMAs= github.com/smartcontractkit/chainlink-sui v0.0.0-20250916193659-4becc28a467f h1:7saUNbu+edzDgRPedNFfTsx5+5RL40r1r0pgISoh8Hs= github.com/smartcontractkit/chainlink-sui v0.0.0-20250916193659-4becc28a467f/go.mod h1:CTR5agBB07sCpRltBkHmnkCZ+g8sXRafCJge/Hqr7aM= github.com/smartcontractkit/chainlink-testing-framework/framework v0.10.24 h1:i8+fR76yn0yxAFAkdhy7BgIB2VJgwec9BqnSPp6fZ7M= diff --git a/plugins/plugins.public.yaml b/plugins/plugins.public.yaml index d6cf87205d3..14e922b0b5d 100644 --- a/plugins/plugins.public.yaml +++ b/plugins/plugins.public.yaml @@ -35,7 +35,7 @@ plugins: solana: - moduleURI: "github.com/smartcontractkit/chainlink-solana" - gitRef: "v1.1.2-0.20250910230900-fa42dad2d413" + gitRef: "v1.1.2-0.20250924164340-6369099dd7d6" installPath: "./pkg/solana/cmd/chainlink-solana" starknet: diff --git a/system-tests/lib/go.mod b/system-tests/lib/go.mod index 11ef938439c..89903798c37 100644 --- a/system-tests/lib/go.mod +++ b/system-tests/lib/go.mod @@ -33,13 +33,13 @@ require ( github.com/rs/zerolog v1.33.0 github.com/scylladb/go-reflectx v1.0.1 github.com/smartcontractkit/chain-selectors v1.0.71 - github.com/smartcontractkit/chainlink-common v0.9.5-0.20250917190204-8817bb81d880 + github.com/smartcontractkit/chainlink-common v0.9.6-0.20250924155255-91f3f788735b github.com/smartcontractkit/chainlink-deployments-framework v0.49.0 github.com/smartcontractkit/chainlink-evm v0.3.4-0.20250915101441-709f87f7d401 github.com/smartcontractkit/chainlink-evm/gethwrappers v0.0.0-20250827130336-5922343458be github.com/smartcontractkit/chainlink-protos/cre/go v0.0.0-20250911124514-5874cc6d62b2 github.com/smartcontractkit/chainlink-protos/job-distributor v0.13.1 - github.com/smartcontractkit/chainlink-solana v1.1.2-0.20250910230900-fa42dad2d413 + github.com/smartcontractkit/chainlink-solana v1.1.2-0.20250924164340-6369099dd7d6 github.com/smartcontractkit/chainlink-testing-framework/framework v0.10.24 github.com/smartcontractkit/chainlink-testing-framework/framework/components/dockercompose v0.1.14-0.20250912141514-907781001913 github.com/smartcontractkit/chainlink-testing-framework/framework/components/fake v0.10.0 @@ -449,10 +449,10 @@ require ( github.com/smartcontractkit/ccip-owner-contracts v0.1.0 // indirect github.com/smartcontractkit/chainlink-aptos v0.0.0-20250916164650-970686360fbf // indirect github.com/smartcontractkit/chainlink-automation v0.8.1 // indirect - github.com/smartcontractkit/chainlink-ccip v0.1.1-solana.0.20250911201806-5a095deaeb52 // indirect - github.com/smartcontractkit/chainlink-ccip/chains/solana v0.0.0-20250908144012-8184001834b5 // indirect - github.com/smartcontractkit/chainlink-ccip/chains/solana/gobindings v0.0.0-20250908144012-8184001834b5 // indirect - github.com/smartcontractkit/chainlink-common/pkg/chipingress v0.0.1 // indirect + github.com/smartcontractkit/chainlink-ccip v0.1.1-solana.0.20250910210251-724af8ee41ad // indirect + github.com/smartcontractkit/chainlink-ccip/chains/solana v0.0.0-20250910210251-724af8ee41ad // indirect + github.com/smartcontractkit/chainlink-ccip/chains/solana/gobindings v0.0.0-20250910210251-724af8ee41ad // indirect + github.com/smartcontractkit/chainlink-common/pkg/chipingress v0.0.4 // indirect github.com/smartcontractkit/chainlink-data-streams v0.1.2 // indirect github.com/smartcontractkit/chainlink-feeds v0.1.2-0.20250227211209-7cd000095135 // indirect github.com/smartcontractkit/chainlink-framework/capabilities v0.0.0-20250818175541-3389ac08a563 // indirect diff --git a/system-tests/lib/go.sum b/system-tests/lib/go.sum index 9c8ad49279d..8b8f4f2f7ab 100644 --- a/system-tests/lib/go.sum +++ b/system-tests/lib/go.sum @@ -1569,16 +1569,16 @@ github.com/smartcontractkit/chainlink-aptos v0.0.0-20250916164650-970686360fbf h github.com/smartcontractkit/chainlink-aptos v0.0.0-20250916164650-970686360fbf/go.mod h1:tEjqontct1/5cKHm4q75nopZa1rwzaQZwd9U9wn0uZE= github.com/smartcontractkit/chainlink-automation v0.8.1 h1:sTc9LKpBvcKPc1JDYAmgBc2xpDKBco/Q4h4ydl6+UUU= github.com/smartcontractkit/chainlink-automation v0.8.1/go.mod h1:Iij36PvWZ6blrdC5A/nrQUBuf3MH3JvsBB9sSyc9W08= -github.com/smartcontractkit/chainlink-ccip v0.1.1-solana.0.20250911201806-5a095deaeb52 h1:q0rx7lax/Wi0GK3+fTn22sx4zp4HPPu+2m5fcE12Rn8= -github.com/smartcontractkit/chainlink-ccip v0.1.1-solana.0.20250911201806-5a095deaeb52/go.mod h1:4djmYiCYf9BfpNcuhANzh/umrMKfhOQRGfnk1ZnL5Io= -github.com/smartcontractkit/chainlink-ccip/chains/solana v0.0.0-20250908144012-8184001834b5 h1:GmJQqNrWn5pNc8YTei6l2TOSYjK2fRd4+edFZIifCrU= -github.com/smartcontractkit/chainlink-ccip/chains/solana v0.0.0-20250908144012-8184001834b5/go.mod h1:Ve1xD71bl193YIZQEoJMmBqLGQJdNs29bwbuObwvbhQ= -github.com/smartcontractkit/chainlink-ccip/chains/solana/gobindings v0.0.0-20250908144012-8184001834b5 h1:QhcYGEhRLInr1/qh/3RJiVdvJ0nxBHKhPe65WLbSBnU= -github.com/smartcontractkit/chainlink-ccip/chains/solana/gobindings v0.0.0-20250908144012-8184001834b5/go.mod h1:xtZNi6pOKdC3sLvokDvXOhgHzT+cyBqH/gWwvxTxqrg= -github.com/smartcontractkit/chainlink-common v0.9.5-0.20250917190204-8817bb81d880 h1:gbUrnSRp1PdPHQtYyZ5geQXV7ReY1/QZcxInU5ivR1Q= -github.com/smartcontractkit/chainlink-common v0.9.5-0.20250917190204-8817bb81d880/go.mod h1:EKFUYgf8IsArVMF8lzXNyIhdH6lM8mhyvztCSouZ+G8= -github.com/smartcontractkit/chainlink-common/pkg/chipingress v0.0.1 h1:ca2z5OXgnbBPQRxpwXwBLJsUA1+cAp5ncfW4Ssvd6eY= -github.com/smartcontractkit/chainlink-common/pkg/chipingress v0.0.1/go.mod h1:NZv/qKYGFRnkjOYBouajnDfFoZ+WDa6H2KNmSf1dnKc= +github.com/smartcontractkit/chainlink-ccip v0.1.1-solana.0.20250910210251-724af8ee41ad h1:d5i6DP5kHf4fg/YLuwxwVQ2U10UON88B51dnYD5ClX0= +github.com/smartcontractkit/chainlink-ccip v0.1.1-solana.0.20250910210251-724af8ee41ad/go.mod h1:4djmYiCYf9BfpNcuhANzh/umrMKfhOQRGfnk1ZnL5Io= +github.com/smartcontractkit/chainlink-ccip/chains/solana v0.0.0-20250910210251-724af8ee41ad h1:ckD0YGvMrAHs1hWP/HEAsnmPQ5s9wy3BTdUUwCAkK1w= +github.com/smartcontractkit/chainlink-ccip/chains/solana v0.0.0-20250910210251-724af8ee41ad/go.mod h1:Ve1xD71bl193YIZQEoJMmBqLGQJdNs29bwbuObwvbhQ= +github.com/smartcontractkit/chainlink-ccip/chains/solana/gobindings v0.0.0-20250910210251-724af8ee41ad h1:1mM6KMT0cXQmHGpPkNQyVtwB6uBXNRMoSyPvTSPUkIk= +github.com/smartcontractkit/chainlink-ccip/chains/solana/gobindings v0.0.0-20250910210251-724af8ee41ad/go.mod h1:xtZNi6pOKdC3sLvokDvXOhgHzT+cyBqH/gWwvxTxqrg= +github.com/smartcontractkit/chainlink-common v0.9.6-0.20250924155255-91f3f788735b h1:PeGzJpycGGRbR1u5TefH/CXngBEvVmlVMCY6pTzm9RU= +github.com/smartcontractkit/chainlink-common v0.9.6-0.20250924155255-91f3f788735b/go.mod h1:1r3aM96KHAESfnayJ3BTHCkP1qJS1BEG1r4czeoaXlA= +github.com/smartcontractkit/chainlink-common/pkg/chipingress v0.0.4 h1:hvqATtrZ0iMRTI80cpBot/3JFbjz2j+2tvpfooVhRHw= +github.com/smartcontractkit/chainlink-common/pkg/chipingress v0.0.4/go.mod h1:eKGyfTKzr0/PeR7qKN4l2FcW9p+HzyKUwAfGhm/5YZc= github.com/smartcontractkit/chainlink-common/pkg/monitoring v0.0.0-20250415235644-8703639403c7 h1:9wh1G+WbXwPVqf0cfSRSgwIcaXTQgvYezylEAfwmrbw= github.com/smartcontractkit/chainlink-common/pkg/monitoring v0.0.0-20250415235644-8703639403c7/go.mod h1:yaDOAZF6MNB+NGYpxGCUc+owIdKrjvFW0JODdTcQ3V0= github.com/smartcontractkit/chainlink-data-streams v0.1.2 h1:g/UmFJa/E1Zmc7NO20ob5SijxQen51DhnqTLr2f7BEc= @@ -1617,8 +1617,8 @@ github.com/smartcontractkit/chainlink-protos/svr v1.1.0 h1:79Z9N9dMbMVRGaLoDPAQ+ github.com/smartcontractkit/chainlink-protos/svr v1.1.0/go.mod h1:TcOliTQU6r59DwG4lo3U+mFM9WWyBHGuFkkxQpvSujo= github.com/smartcontractkit/chainlink-protos/workflows/go v0.0.0-20250912140847-cbfb1710ac76 h1:IVaB9Nbaqteno+kW64J45q0yS8xJjnzLWO1P7kibolk= github.com/smartcontractkit/chainlink-protos/workflows/go v0.0.0-20250912140847-cbfb1710ac76/go.mod h1:HIpGvF6nKCdtZ30xhdkKWGM9+4Z4CVqJH8ZBL1FTEiY= -github.com/smartcontractkit/chainlink-solana v1.1.2-0.20250910230900-fa42dad2d413 h1:9HieHSTV3r8pRgwm6afiaH7EJDU3v+wVrRtDRFTKy+4= -github.com/smartcontractkit/chainlink-solana v1.1.2-0.20250910230900-fa42dad2d413/go.mod h1:LSZMvQYbdK20+21S68/lcTNHStehHPF1X764PICkrRU= +github.com/smartcontractkit/chainlink-solana v1.1.2-0.20250924164340-6369099dd7d6 h1:qJhILP53vAYZLVW955fL5pbygaTMs472WKT9Izo3C5A= +github.com/smartcontractkit/chainlink-solana v1.1.2-0.20250924164340-6369099dd7d6/go.mod h1:gUG7rvdza4MH95X9zHgEn6ZQ/xUIKktLzQ3R2A7yMAs= github.com/smartcontractkit/chainlink-sui v0.0.0-20250916193659-4becc28a467f h1:7saUNbu+edzDgRPedNFfTsx5+5RL40r1r0pgISoh8Hs= github.com/smartcontractkit/chainlink-sui v0.0.0-20250916193659-4becc28a467f/go.mod h1:CTR5agBB07sCpRltBkHmnkCZ+g8sXRafCJge/Hqr7aM= github.com/smartcontractkit/chainlink-testing-framework/framework v0.10.24 h1:i8+fR76yn0yxAFAkdhy7BgIB2VJgwec9BqnSPp6fZ7M= diff --git a/system-tests/tests/go.mod b/system-tests/tests/go.mod index 1f0ad8e32c2..dda34260a57 100644 --- a/system-tests/tests/go.mod +++ b/system-tests/tests/go.mod @@ -36,14 +36,14 @@ require ( github.com/prometheus/common v0.65.0 github.com/rs/zerolog v1.33.0 github.com/shopspring/decimal v1.4.0 - github.com/smartcontractkit/chainlink-common v0.9.5-0.20250917190204-8817bb81d880 + github.com/smartcontractkit/chainlink-common v0.9.6-0.20250924155255-91f3f788735b github.com/smartcontractkit/chainlink-data-streams v0.1.2 github.com/smartcontractkit/chainlink-deployments-framework v0.49.0 github.com/smartcontractkit/chainlink-evm/gethwrappers v0.0.0-20250917110014-65bff6568f77 github.com/smartcontractkit/chainlink-protos/cre/go v0.0.0-20250911124514-5874cc6d62b2 github.com/smartcontractkit/chainlink-protos/job-distributor v0.13.1 github.com/smartcontractkit/chainlink-protos/workflows/go v0.0.0-20250912140847-cbfb1710ac76 - github.com/smartcontractkit/chainlink-solana v1.1.2-0.20250910230900-fa42dad2d413 + github.com/smartcontractkit/chainlink-solana v1.1.2-0.20250924164340-6369099dd7d6 github.com/smartcontractkit/chainlink-testing-framework/framework v0.10.24 github.com/smartcontractkit/chainlink-testing-framework/framework/components/fake v0.10.0 github.com/smartcontractkit/chainlink-testing-framework/havoc v1.50.7 @@ -532,10 +532,10 @@ require ( github.com/smartcontractkit/chain-selectors v1.0.71 // indirect github.com/smartcontractkit/chainlink-aptos v0.0.0-20250916164650-970686360fbf // indirect github.com/smartcontractkit/chainlink-automation v0.8.1 // indirect - github.com/smartcontractkit/chainlink-ccip v0.1.1-solana.0.20250911201806-5a095deaeb52 // indirect - github.com/smartcontractkit/chainlink-ccip/chains/solana v0.0.0-20250908144012-8184001834b5 // indirect - github.com/smartcontractkit/chainlink-ccip/chains/solana/gobindings v0.0.0-20250908144012-8184001834b5 // indirect - github.com/smartcontractkit/chainlink-common/pkg/chipingress v0.0.1 // indirect + github.com/smartcontractkit/chainlink-ccip v0.1.1-solana.0.20250910210251-724af8ee41ad // indirect + github.com/smartcontractkit/chainlink-ccip/chains/solana v0.0.0-20250910210251-724af8ee41ad // indirect + github.com/smartcontractkit/chainlink-ccip/chains/solana/gobindings v0.0.0-20250910210251-724af8ee41ad // indirect + github.com/smartcontractkit/chainlink-common/pkg/chipingress v0.0.4 // indirect github.com/smartcontractkit/chainlink-evm v0.3.4-0.20250915101441-709f87f7d401 // indirect github.com/smartcontractkit/chainlink-feeds v0.1.2-0.20250227211209-7cd000095135 // indirect github.com/smartcontractkit/chainlink-framework/capabilities v0.0.0-20250818175541-3389ac08a563 // indirect diff --git a/system-tests/tests/go.sum b/system-tests/tests/go.sum index c5d246e29a3..77a0c2e6b6e 100644 --- a/system-tests/tests/go.sum +++ b/system-tests/tests/go.sum @@ -1772,16 +1772,16 @@ github.com/smartcontractkit/chainlink-aptos v0.0.0-20250916164650-970686360fbf h github.com/smartcontractkit/chainlink-aptos v0.0.0-20250916164650-970686360fbf/go.mod h1:tEjqontct1/5cKHm4q75nopZa1rwzaQZwd9U9wn0uZE= github.com/smartcontractkit/chainlink-automation v0.8.1 h1:sTc9LKpBvcKPc1JDYAmgBc2xpDKBco/Q4h4ydl6+UUU= github.com/smartcontractkit/chainlink-automation v0.8.1/go.mod h1:Iij36PvWZ6blrdC5A/nrQUBuf3MH3JvsBB9sSyc9W08= -github.com/smartcontractkit/chainlink-ccip v0.1.1-solana.0.20250911201806-5a095deaeb52 h1:q0rx7lax/Wi0GK3+fTn22sx4zp4HPPu+2m5fcE12Rn8= -github.com/smartcontractkit/chainlink-ccip v0.1.1-solana.0.20250911201806-5a095deaeb52/go.mod h1:4djmYiCYf9BfpNcuhANzh/umrMKfhOQRGfnk1ZnL5Io= -github.com/smartcontractkit/chainlink-ccip/chains/solana v0.0.0-20250908144012-8184001834b5 h1:GmJQqNrWn5pNc8YTei6l2TOSYjK2fRd4+edFZIifCrU= -github.com/smartcontractkit/chainlink-ccip/chains/solana v0.0.0-20250908144012-8184001834b5/go.mod h1:Ve1xD71bl193YIZQEoJMmBqLGQJdNs29bwbuObwvbhQ= -github.com/smartcontractkit/chainlink-ccip/chains/solana/gobindings v0.0.0-20250908144012-8184001834b5 h1:QhcYGEhRLInr1/qh/3RJiVdvJ0nxBHKhPe65WLbSBnU= -github.com/smartcontractkit/chainlink-ccip/chains/solana/gobindings v0.0.0-20250908144012-8184001834b5/go.mod h1:xtZNi6pOKdC3sLvokDvXOhgHzT+cyBqH/gWwvxTxqrg= -github.com/smartcontractkit/chainlink-common v0.9.5-0.20250917190204-8817bb81d880 h1:gbUrnSRp1PdPHQtYyZ5geQXV7ReY1/QZcxInU5ivR1Q= -github.com/smartcontractkit/chainlink-common v0.9.5-0.20250917190204-8817bb81d880/go.mod h1:EKFUYgf8IsArVMF8lzXNyIhdH6lM8mhyvztCSouZ+G8= -github.com/smartcontractkit/chainlink-common/pkg/chipingress v0.0.1 h1:ca2z5OXgnbBPQRxpwXwBLJsUA1+cAp5ncfW4Ssvd6eY= -github.com/smartcontractkit/chainlink-common/pkg/chipingress v0.0.1/go.mod h1:NZv/qKYGFRnkjOYBouajnDfFoZ+WDa6H2KNmSf1dnKc= +github.com/smartcontractkit/chainlink-ccip v0.1.1-solana.0.20250910210251-724af8ee41ad h1:d5i6DP5kHf4fg/YLuwxwVQ2U10UON88B51dnYD5ClX0= +github.com/smartcontractkit/chainlink-ccip v0.1.1-solana.0.20250910210251-724af8ee41ad/go.mod h1:4djmYiCYf9BfpNcuhANzh/umrMKfhOQRGfnk1ZnL5Io= +github.com/smartcontractkit/chainlink-ccip/chains/solana v0.0.0-20250910210251-724af8ee41ad h1:ckD0YGvMrAHs1hWP/HEAsnmPQ5s9wy3BTdUUwCAkK1w= +github.com/smartcontractkit/chainlink-ccip/chains/solana v0.0.0-20250910210251-724af8ee41ad/go.mod h1:Ve1xD71bl193YIZQEoJMmBqLGQJdNs29bwbuObwvbhQ= +github.com/smartcontractkit/chainlink-ccip/chains/solana/gobindings v0.0.0-20250910210251-724af8ee41ad h1:1mM6KMT0cXQmHGpPkNQyVtwB6uBXNRMoSyPvTSPUkIk= +github.com/smartcontractkit/chainlink-ccip/chains/solana/gobindings v0.0.0-20250910210251-724af8ee41ad/go.mod h1:xtZNi6pOKdC3sLvokDvXOhgHzT+cyBqH/gWwvxTxqrg= +github.com/smartcontractkit/chainlink-common v0.9.6-0.20250924155255-91f3f788735b h1:PeGzJpycGGRbR1u5TefH/CXngBEvVmlVMCY6pTzm9RU= +github.com/smartcontractkit/chainlink-common v0.9.6-0.20250924155255-91f3f788735b/go.mod h1:1r3aM96KHAESfnayJ3BTHCkP1qJS1BEG1r4czeoaXlA= +github.com/smartcontractkit/chainlink-common/pkg/chipingress v0.0.4 h1:hvqATtrZ0iMRTI80cpBot/3JFbjz2j+2tvpfooVhRHw= +github.com/smartcontractkit/chainlink-common/pkg/chipingress v0.0.4/go.mod h1:eKGyfTKzr0/PeR7qKN4l2FcW9p+HzyKUwAfGhm/5YZc= github.com/smartcontractkit/chainlink-common/pkg/monitoring v0.0.0-20250415235644-8703639403c7 h1:9wh1G+WbXwPVqf0cfSRSgwIcaXTQgvYezylEAfwmrbw= github.com/smartcontractkit/chainlink-common/pkg/monitoring v0.0.0-20250415235644-8703639403c7/go.mod h1:yaDOAZF6MNB+NGYpxGCUc+owIdKrjvFW0JODdTcQ3V0= github.com/smartcontractkit/chainlink-data-streams v0.1.2 h1:g/UmFJa/E1Zmc7NO20ob5SijxQen51DhnqTLr2f7BEc= @@ -1820,8 +1820,8 @@ github.com/smartcontractkit/chainlink-protos/svr v1.1.0 h1:79Z9N9dMbMVRGaLoDPAQ+ github.com/smartcontractkit/chainlink-protos/svr v1.1.0/go.mod h1:TcOliTQU6r59DwG4lo3U+mFM9WWyBHGuFkkxQpvSujo= github.com/smartcontractkit/chainlink-protos/workflows/go v0.0.0-20250912140847-cbfb1710ac76 h1:IVaB9Nbaqteno+kW64J45q0yS8xJjnzLWO1P7kibolk= github.com/smartcontractkit/chainlink-protos/workflows/go v0.0.0-20250912140847-cbfb1710ac76/go.mod h1:HIpGvF6nKCdtZ30xhdkKWGM9+4Z4CVqJH8ZBL1FTEiY= -github.com/smartcontractkit/chainlink-solana v1.1.2-0.20250910230900-fa42dad2d413 h1:9HieHSTV3r8pRgwm6afiaH7EJDU3v+wVrRtDRFTKy+4= -github.com/smartcontractkit/chainlink-solana v1.1.2-0.20250910230900-fa42dad2d413/go.mod h1:LSZMvQYbdK20+21S68/lcTNHStehHPF1X764PICkrRU= +github.com/smartcontractkit/chainlink-solana v1.1.2-0.20250924164340-6369099dd7d6 h1:qJhILP53vAYZLVW955fL5pbygaTMs472WKT9Izo3C5A= +github.com/smartcontractkit/chainlink-solana v1.1.2-0.20250924164340-6369099dd7d6/go.mod h1:gUG7rvdza4MH95X9zHgEn6ZQ/xUIKktLzQ3R2A7yMAs= github.com/smartcontractkit/chainlink-sui v0.0.0-20250916193659-4becc28a467f h1:7saUNbu+edzDgRPedNFfTsx5+5RL40r1r0pgISoh8Hs= github.com/smartcontractkit/chainlink-sui v0.0.0-20250916193659-4becc28a467f/go.mod h1:CTR5agBB07sCpRltBkHmnkCZ+g8sXRafCJge/Hqr7aM= github.com/smartcontractkit/chainlink-testing-framework/framework v0.10.24 h1:i8+fR76yn0yxAFAkdhy7BgIB2VJgwec9BqnSPp6fZ7M=