Skip to content

Commit

Permalink
Fixed Solana ChainWriter config and updated dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
amit-momin committed Mar 4, 2025
1 parent c22048e commit 8c70b6b
Show file tree
Hide file tree
Showing 16 changed files with 77 additions and 80 deletions.
5 changes: 1 addition & 4 deletions core/capabilities/ccip/ccipsolana/executecodec_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -208,8 +208,6 @@ func Test_DecodingExecuteReport(t *testing.T) {
}, nil)
t.Run("decode on-chain execute report", func(t *testing.T) {
chainSel := cciptypes.ChainSelector(rand.Uint64())
onRampAddr, err := solanago.NewRandomPrivateKey()
require.NoError(t, err)

destGasAmount := uint32(10)
tokenAmount := big.NewInt(rand.Int63())
Expand All @@ -233,13 +231,12 @@ func Test_DecodingExecuteReport(t *testing.T) {
DestGasAmount: destGasAmount,
},
},
OnRampAddress: onRampAddr.PublicKey().Bytes(),
},
}

var extraArgsBuf bytes.Buffer
encoder := agbinary.NewBorshEncoder(&extraArgsBuf)
err = extraArgs.MarshalWithEncoder(encoder)
err := extraArgs.MarshalWithEncoder(encoder)
require.NoError(t, err)

var buf bytes.Buffer
Expand Down
2 changes: 1 addition & 1 deletion core/capabilities/ccip/ccipsolana/msghasher.go
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@ func (h *MessageHasherV1) Hash(_ context.Context, msg cciptypes.Message) (ccipty
return [32]byte{}, fmt.Errorf("failed to decode ExtraArgs: %w", err)
}

hash, err := ccip.HashAnyToSVMMessage(anyToSolanaMessage, msg.Header.OnRamp, msgAccounts)
hash, err := ccip.HashAnyToSVMMessage(anyToSolanaMessage, msgAccounts)
return [32]byte(hash), err
}

Expand Down
2 changes: 1 addition & 1 deletion core/capabilities/ccip/ccipsolana/msghasher_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ func TestMessageHasher_Any2SVM(t *testing.T) {
msgHasher := NewMessageHasherV1(logger.Test(t), mockExtraDataCodec)
actualHash, err := msgHasher.Hash(testutils.Context(t), any2AnyMsg)
require.NoError(t, err)
expectedHash, err := ccip.HashAnyToSVMMessage(any2SolanaMsg, any2AnyMsg.Header.OnRamp, msgAccounts)
expectedHash, err := ccip.HashAnyToSVMMessage(any2SolanaMsg, msgAccounts)
require.NoError(t, err)
require.Equal(t, expectedHash, actualHash[:32])
}
Expand Down
4 changes: 2 additions & 2 deletions core/capabilities/ccip/configs/solana/chain_writer.go
Original file line number Diff line number Diff line change
Expand Up @@ -488,7 +488,7 @@ func getBillingTokenConfig(offrampProgramAddress string) chainwriter.Lookup {
PublicKey: getFeeQuoterProgramAccount(offrampProgramAddress),
Seeds: []chainwriter.Seed{
{Static: []byte("fee_billing_token_config")},
{Dynamic: chainwriter.Lookup{AccountLookup: &chainwriter.AccountLookup{Location: "Info.TokenPrices.TokenID"}}},
{Dynamic: chainwriter.Lookup{AccountLookup: &chainwriter.AccountLookup{Location: "Info.TokenPriceUpdates.TokenID"}}},
},
IsSigner: false,
IsWritable: true,
Expand All @@ -504,7 +504,7 @@ func getChainConfigGasPriceConfig(offrampProgramAddress string) chainwriter.Look
PublicKey: getFeeQuoterProgramAccount(offrampProgramAddress),
Seeds: []chainwriter.Seed{
{Static: []byte("dest_chain")},
{Dynamic: chainwriter.Lookup{AccountLookup: &chainwriter.AccountLookup{Location: "Info.GasPrices.ChainSel"}}},
{Dynamic: chainwriter.Lookup{AccountLookup: &chainwriter.AccountLookup{Location: "Info.GasPriceUpdates.ChainSel"}}},
},
IsSigner: false,
IsWritable: true,
Expand Down
8 changes: 4 additions & 4 deletions deployment/go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -31,14 +31,14 @@ require (
github.com/sethvargo/go-retry v0.2.4
github.com/smartcontractkit/ccip-owner-contracts v0.1.0
github.com/smartcontractkit/chain-selectors v1.0.43
github.com/smartcontractkit/chainlink-ccip v0.0.0-20250228192734-cb6d70c3a866
github.com/smartcontractkit/chainlink-ccip/chains/solana v0.0.0-20250225130625-4a632b0b1e61
github.com/smartcontractkit/chainlink-common v0.4.2-0.20250228151513-8777dbcefd5c
github.com/smartcontractkit/chainlink-ccip v0.0.0-20250302020946-0f2d5f4a8326
github.com/smartcontractkit/chainlink-ccip/chains/solana v0.0.0-20250302020946-0f2d5f4a8326
github.com/smartcontractkit/chainlink-common v0.4.2-0.20250227203031-2537a8c226bb
github.com/smartcontractkit/chainlink-framework/multinode v0.0.0-20250211162441-3d6cea220efb
github.com/smartcontractkit/chainlink-integrations/evm v0.0.0-20250227174346-ab609729dc5d
github.com/smartcontractkit/chainlink-protos/job-distributor v0.9.0
github.com/smartcontractkit/chainlink-protos/orchestrator v0.5.0
github.com/smartcontractkit/chainlink-solana v1.1.2-0.20250225213110-ccfb7026763d
github.com/smartcontractkit/chainlink-solana v1.1.2-0.20250228231533-c20246255e2b
github.com/smartcontractkit/chainlink-testing-framework/framework v0.5.3
github.com/smartcontractkit/chainlink-testing-framework/lib v1.50.22
github.com/smartcontractkit/libocr v0.0.0-20250220133800-f3b940c4f298
Expand Down
16 changes: 8 additions & 8 deletions deployment/go.sum
Original file line number Diff line number Diff line change
Expand Up @@ -1164,12 +1164,12 @@ github.com/smartcontractkit/chain-selectors v1.0.43 h1:1RapF0FqxRbcLzPd6bLVywn7p
github.com/smartcontractkit/chain-selectors v1.0.43/go.mod h1:xsKM0aN3YGcQKTPRPDDtPx2l4mlTN1Djmg0VVXV40b8=
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.0.0-20250228192734-cb6d70c3a866 h1:kL1OlMlwzIu0b89Q4MeMm53DBtUQtd6h2MrZ7Qh7AMQ=
github.com/smartcontractkit/chainlink-ccip v0.0.0-20250228192734-cb6d70c3a866/go.mod h1:AhqYIeGF2k94J+/gzRx5dQttlgUdZid2N6E4HlHVIVA=
github.com/smartcontractkit/chainlink-ccip/chains/solana v0.0.0-20250225130625-4a632b0b1e61 h1:2saR+YBXkAscytGaohN8b30PDGjZzSv/GltTGyG66Ag=
github.com/smartcontractkit/chainlink-ccip/chains/solana v0.0.0-20250225130625-4a632b0b1e61/go.mod h1:Bmwq4lNb5tE47sydN0TKetcLEGbgl+VxHEWp4S0LI60=
github.com/smartcontractkit/chainlink-common v0.4.2-0.20250228151513-8777dbcefd5c h1:pI4Y9C+EXpZmAcmvcvrCA4REWSyvCO3LQw4pGU1a/4M=
github.com/smartcontractkit/chainlink-common v0.4.2-0.20250228151513-8777dbcefd5c/go.mod h1:YQuXIqQpmpAqstWV0LHaDTJ5nsSWuip5ivEM+Fisb+4=
github.com/smartcontractkit/chainlink-ccip v0.0.0-20250302020946-0f2d5f4a8326 h1:elKA1+xg5nCcsVyLXo1E+9XvHEjuQYxXFt4wPLRV7Mo=
github.com/smartcontractkit/chainlink-ccip v0.0.0-20250302020946-0f2d5f4a8326/go.mod h1:AhqYIeGF2k94J+/gzRx5dQttlgUdZid2N6E4HlHVIVA=
github.com/smartcontractkit/chainlink-ccip/chains/solana v0.0.0-20250302020946-0f2d5f4a8326 h1:KRL3qg6ceUxB+F66UOF6Le4fDylf5UkDb5ii9yjAtbk=
github.com/smartcontractkit/chainlink-ccip/chains/solana v0.0.0-20250302020946-0f2d5f4a8326/go.mod h1:ARwstg2HUGjtuZgG/IwxpYk4QdQtcqX69V95FUtlHdE=
github.com/smartcontractkit/chainlink-common v0.4.2-0.20250227203031-2537a8c226bb h1:y3yZ7DNYzqeJnub0e1LPj+e8lUUXTuS8vFKQWYfRbP8=
github.com/smartcontractkit/chainlink-common v0.4.2-0.20250227203031-2537a8c226bb/go.mod h1:YQuXIqQpmpAqstWV0LHaDTJ5nsSWuip5ivEM+Fisb+4=
github.com/smartcontractkit/chainlink-data-streams v0.1.1-0.20250228145850-f846693a6fd5 h1:cJpPJ5hEwc6vlMoxmATS60uWPUi62ydnTVBabu6WKEE=
github.com/smartcontractkit/chainlink-data-streams v0.1.1-0.20250228145850-f846693a6fd5/go.mod h1:2yUpKW1/jFxpozO/Zkh3fKDzI0jthXoEcU2xuDq+vlo=
github.com/smartcontractkit/chainlink-feeds v0.1.2-0.20250227211209-7cd000095135 h1:8u9xUrC+yHrTDexOKDd+jrA6LCzFFHeX1G82oj2fsSI=
Expand All @@ -1188,8 +1188,8 @@ github.com/smartcontractkit/chainlink-protos/rmn/v1.6/go v0.0.0-20250131130834-1
github.com/smartcontractkit/chainlink-protos/rmn/v1.6/go v0.0.0-20250131130834-15e0d4cde2a6/go.mod h1:FRwzI3hGj4CJclNS733gfcffmqQ62ONCkbGi49s658w=
github.com/smartcontractkit/chainlink-protos/svr v0.0.0-20250123084029-58cce9b32112 h1:c77Gi/APraqwbBO8fbd/5JY2wW+MSIpYg8Uma9MEZFE=
github.com/smartcontractkit/chainlink-protos/svr v0.0.0-20250123084029-58cce9b32112/go.mod h1:TcOliTQU6r59DwG4lo3U+mFM9WWyBHGuFkkxQpvSujo=
github.com/smartcontractkit/chainlink-solana v1.1.2-0.20250225213110-ccfb7026763d h1:ckXgLtYpMJw5mro/TjRWmkLFGykNdvhvXqmskbF0wMk=
github.com/smartcontractkit/chainlink-solana v1.1.2-0.20250225213110-ccfb7026763d/go.mod h1:zlzii+FxYq0YLdESBei19MAtyuaHpwDldb/ohhXOqw8=
github.com/smartcontractkit/chainlink-solana v1.1.2-0.20250228231533-c20246255e2b h1:40AF1CnFpr9rKP/LYVVMsCcaYXMOagUQ4d/jOERN9Fg=
github.com/smartcontractkit/chainlink-solana v1.1.2-0.20250228231533-c20246255e2b/go.mod h1:zlzii+FxYq0YLdESBei19MAtyuaHpwDldb/ohhXOqw8=
github.com/smartcontractkit/chainlink-testing-framework/framework v0.5.3 h1:CeZqFz/si4YBnYE1118mtc4FBLs2Za1qohYAeLZTI+o=
github.com/smartcontractkit/chainlink-testing-framework/framework v0.5.3/go.mod h1:9b5ugzYeKkwbxZ9yMOoxUaPiONDLC/QLCncarDFnhwk=
github.com/smartcontractkit/chainlink-testing-framework/lib v1.50.22 h1:W3doYLVoZN8VwJb/kAZsbDjW+6cgZPgNTcQHJUH9JrA=
Expand Down
12 changes: 6 additions & 6 deletions go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -75,16 +75,16 @@ require (
github.com/shopspring/decimal v1.4.0
github.com/smartcontractkit/chain-selectors v1.0.43
github.com/smartcontractkit/chainlink-automation v0.8.1
github.com/smartcontractkit/chainlink-ccip v0.0.0-20250228192734-cb6d70c3a866
github.com/smartcontractkit/chainlink-ccip/chains/solana v0.0.0-20250214202341-4190f2db1c01
github.com/smartcontractkit/chainlink-common v0.4.2-0.20250228151513-8777dbcefd5c
github.com/smartcontractkit/chainlink-data-streams v0.1.1-0.20250228145850-f846693a6fd5
github.com/smartcontractkit/chainlink-feeds v0.1.2-0.20250227211209-7cd000095135
github.com/smartcontractkit/chainlink-ccip v0.0.0-20250302020946-0f2d5f4a8326
github.com/smartcontractkit/chainlink-ccip/chains/solana v0.0.0-20250302020946-0f2d5f4a8326
github.com/smartcontractkit/chainlink-common v0.4.2-0.20250225100621-f0e1dd7b7942
github.com/smartcontractkit/chainlink-data-streams v0.1.1-0.20250224190032-809e4b8cf29e
github.com/smartcontractkit/chainlink-feeds v0.1.1
github.com/smartcontractkit/chainlink-framework/chains v0.0.0-20250227163723-3c71fefea680
github.com/smartcontractkit/chainlink-framework/multinode v0.0.0-20250211162441-3d6cea220efb
github.com/smartcontractkit/chainlink-integrations/evm v0.0.0-20250227174346-ab609729dc5d
github.com/smartcontractkit/chainlink-protos/orchestrator v0.5.0
github.com/smartcontractkit/chainlink-solana v1.1.2-0.20250225213110-ccfb7026763d
github.com/smartcontractkit/chainlink-solana v1.1.2-0.20250228231533-c20246255e2b
github.com/smartcontractkit/libocr v0.0.0-20250220133800-f3b940c4f298
github.com/smartcontractkit/tdh2/go/ocr2/decryptionplugin v0.0.0-20241009055228-33d0c0bf38de
github.com/smartcontractkit/tdh2/go/tdh2 v0.0.0-20241009055228-33d0c0bf38de
Expand Down
24 changes: 12 additions & 12 deletions go.sum
Original file line number Diff line number Diff line change
Expand Up @@ -1017,16 +1017,16 @@ github.com/smartcontractkit/chain-selectors v1.0.43 h1:1RapF0FqxRbcLzPd6bLVywn7p
github.com/smartcontractkit/chain-selectors v1.0.43/go.mod h1:xsKM0aN3YGcQKTPRPDDtPx2l4mlTN1Djmg0VVXV40b8=
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.0.0-20250228192734-cb6d70c3a866 h1:kL1OlMlwzIu0b89Q4MeMm53DBtUQtd6h2MrZ7Qh7AMQ=
github.com/smartcontractkit/chainlink-ccip v0.0.0-20250228192734-cb6d70c3a866/go.mod h1:AhqYIeGF2k94J+/gzRx5dQttlgUdZid2N6E4HlHVIVA=
github.com/smartcontractkit/chainlink-ccip/chains/solana v0.0.0-20250214202341-4190f2db1c01 h1:R3OD6Phi0ULIQ2uvHiKVWYdgpi/O1Mt46CUK1UApcXU=
github.com/smartcontractkit/chainlink-ccip/chains/solana v0.0.0-20250214202341-4190f2db1c01/go.mod h1:Bmwq4lNb5tE47sydN0TKetcLEGbgl+VxHEWp4S0LI60=
github.com/smartcontractkit/chainlink-common v0.4.2-0.20250228151513-8777dbcefd5c h1:pI4Y9C+EXpZmAcmvcvrCA4REWSyvCO3LQw4pGU1a/4M=
github.com/smartcontractkit/chainlink-common v0.4.2-0.20250228151513-8777dbcefd5c/go.mod h1:YQuXIqQpmpAqstWV0LHaDTJ5nsSWuip5ivEM+Fisb+4=
github.com/smartcontractkit/chainlink-data-streams v0.1.1-0.20250228145850-f846693a6fd5 h1:cJpPJ5hEwc6vlMoxmATS60uWPUi62ydnTVBabu6WKEE=
github.com/smartcontractkit/chainlink-data-streams v0.1.1-0.20250228145850-f846693a6fd5/go.mod h1:2yUpKW1/jFxpozO/Zkh3fKDzI0jthXoEcU2xuDq+vlo=
github.com/smartcontractkit/chainlink-feeds v0.1.2-0.20250227211209-7cd000095135 h1:8u9xUrC+yHrTDexOKDd+jrA6LCzFFHeX1G82oj2fsSI=
github.com/smartcontractkit/chainlink-feeds v0.1.2-0.20250227211209-7cd000095135/go.mod h1:NkvE4iQgiT7dMCP6U3xPELHhWhN5Xr6rHC0axRebyMU=
github.com/smartcontractkit/chainlink-ccip v0.0.0-20250302020946-0f2d5f4a8326 h1:elKA1+xg5nCcsVyLXo1E+9XvHEjuQYxXFt4wPLRV7Mo=
github.com/smartcontractkit/chainlink-ccip v0.0.0-20250302020946-0f2d5f4a8326/go.mod h1:AhqYIeGF2k94J+/gzRx5dQttlgUdZid2N6E4HlHVIVA=
github.com/smartcontractkit/chainlink-ccip/chains/solana v0.0.0-20250302020946-0f2d5f4a8326 h1:KRL3qg6ceUxB+F66UOF6Le4fDylf5UkDb5ii9yjAtbk=
github.com/smartcontractkit/chainlink-ccip/chains/solana v0.0.0-20250302020946-0f2d5f4a8326/go.mod h1:ARwstg2HUGjtuZgG/IwxpYk4QdQtcqX69V95FUtlHdE=
github.com/smartcontractkit/chainlink-common v0.4.2-0.20250225100621-f0e1dd7b7942 h1:z73HRzp3NmTS+8UQLisIUdqfW/TrFMe8hEgqHxFnpHc=
github.com/smartcontractkit/chainlink-common v0.4.2-0.20250225100621-f0e1dd7b7942/go.mod h1:YQuXIqQpmpAqstWV0LHaDTJ5nsSWuip5ivEM+Fisb+4=
github.com/smartcontractkit/chainlink-data-streams v0.1.1-0.20250224190032-809e4b8cf29e h1:QBG+Wn5rHAi4gjnBAq6x6CZj/GjWAahFjj81VhQEu6U=
github.com/smartcontractkit/chainlink-data-streams v0.1.1-0.20250224190032-809e4b8cf29e/go.mod h1:2yUpKW1/jFxpozO/Zkh3fKDzI0jthXoEcU2xuDq+vlo=
github.com/smartcontractkit/chainlink-feeds v0.1.1 h1:JzvUOM/OgGQA1sOqTXXl52R6AnNt+Wg64sVG+XSA49c=
github.com/smartcontractkit/chainlink-feeds v0.1.1/go.mod h1:55EZ94HlKCfAsUiKUTNI7QlE/3d3IwTlsU3YNa/nBb4=
github.com/smartcontractkit/chainlink-framework/chains v0.0.0-20250227163723-3c71fefea680 h1:Es/V5imh4at3NdHDWlbDMjljd24TrJQCy/+8xAVajl0=
github.com/smartcontractkit/chainlink-framework/chains v0.0.0-20250227163723-3c71fefea680/go.mod h1:tHem58EihQh63kR2LlAOKDAs9Vbghf1dJKZRGy6LG8g=
github.com/smartcontractkit/chainlink-framework/multinode v0.0.0-20250211162441-3d6cea220efb h1:LWijSyJ2lhppkFLN19EGsLHZXQ5wen2DEk1cyR0tV+o=
Expand All @@ -1039,8 +1039,8 @@ github.com/smartcontractkit/chainlink-protos/rmn/v1.6/go v0.0.0-20250131130834-1
github.com/smartcontractkit/chainlink-protos/rmn/v1.6/go v0.0.0-20250131130834-15e0d4cde2a6/go.mod h1:FRwzI3hGj4CJclNS733gfcffmqQ62ONCkbGi49s658w=
github.com/smartcontractkit/chainlink-protos/svr v0.0.0-20250123084029-58cce9b32112 h1:c77Gi/APraqwbBO8fbd/5JY2wW+MSIpYg8Uma9MEZFE=
github.com/smartcontractkit/chainlink-protos/svr v0.0.0-20250123084029-58cce9b32112/go.mod h1:TcOliTQU6r59DwG4lo3U+mFM9WWyBHGuFkkxQpvSujo=
github.com/smartcontractkit/chainlink-solana v1.1.2-0.20250225213110-ccfb7026763d h1:ckXgLtYpMJw5mro/TjRWmkLFGykNdvhvXqmskbF0wMk=
github.com/smartcontractkit/chainlink-solana v1.1.2-0.20250225213110-ccfb7026763d/go.mod h1:zlzii+FxYq0YLdESBei19MAtyuaHpwDldb/ohhXOqw8=
github.com/smartcontractkit/chainlink-solana v1.1.2-0.20250228231533-c20246255e2b h1:40AF1CnFpr9rKP/LYVVMsCcaYXMOagUQ4d/jOERN9Fg=
github.com/smartcontractkit/chainlink-solana v1.1.2-0.20250228231533-c20246255e2b/go.mod h1:zlzii+FxYq0YLdESBei19MAtyuaHpwDldb/ohhXOqw8=
github.com/smartcontractkit/grpc-proxy v0.0.0-20240830132753-a7e17fec5ab7 h1:12ijqMM9tvYVEm+nR826WsrNi6zCKpwBhuApq127wHs=
github.com/smartcontractkit/grpc-proxy v0.0.0-20240830132753-a7e17fec5ab7/go.mod h1:FX7/bVdoep147QQhsOPkYsPEXhGZjeYx6lBSaSXtZOA=
github.com/smartcontractkit/libocr v0.0.0-20250220133800-f3b940c4f298 h1:PKiqnVOTChlH4a4ljJKL3OKGRgYfIpJS4YD1daAIKks=
Expand Down
8 changes: 4 additions & 4 deletions integration-tests/go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -44,8 +44,8 @@ require (
github.com/slack-go/slack v0.15.0
github.com/smartcontractkit/chain-selectors v1.0.43
github.com/smartcontractkit/chainlink-automation v0.8.1
github.com/smartcontractkit/chainlink-ccip v0.0.0-20250228192734-cb6d70c3a866
github.com/smartcontractkit/chainlink-common v0.4.2-0.20250228151513-8777dbcefd5c
github.com/smartcontractkit/chainlink-ccip v0.0.0-20250302020946-0f2d5f4a8326
github.com/smartcontractkit/chainlink-common v0.4.2-0.20250227203031-2537a8c226bb
github.com/smartcontractkit/chainlink-integrations/evm v0.0.0-20250227174346-ab609729dc5d
github.com/smartcontractkit/chainlink-protos/job-distributor v0.9.0
github.com/smartcontractkit/chainlink-testing-framework/havoc v1.50.5
Expand Down Expand Up @@ -438,15 +438,15 @@ require (
github.com/shoenig/go-m1cpu v0.1.6 // indirect
github.com/sirupsen/logrus v1.9.3 // indirect
github.com/smartcontractkit/ccip-owner-contracts v0.1.0 // indirect
github.com/smartcontractkit/chainlink-ccip/chains/solana v0.0.0-20250225130625-4a632b0b1e61 // indirect
github.com/smartcontractkit/chainlink-ccip/chains/solana v0.0.0-20250302020946-0f2d5f4a8326 // indirect
github.com/smartcontractkit/chainlink-data-streams v0.1.1-0.20250228145850-f846693a6fd5 // indirect
github.com/smartcontractkit/chainlink-feeds v0.1.2-0.20250227211209-7cd000095135 // indirect
github.com/smartcontractkit/chainlink-framework/chains v0.0.0-20250227163723-3c71fefea680 // indirect
github.com/smartcontractkit/chainlink-framework/multinode v0.0.0-20250211162441-3d6cea220efb // indirect
github.com/smartcontractkit/chainlink-protos/orchestrator v0.5.0 // indirect
github.com/smartcontractkit/chainlink-protos/rmn/v1.6/go v0.0.0-20250131130834-15e0d4cde2a6 // indirect
github.com/smartcontractkit/chainlink-protos/svr v0.0.0-20250123084029-58cce9b32112 // indirect
github.com/smartcontractkit/chainlink-solana v1.1.2-0.20250225213110-ccfb7026763d // indirect
github.com/smartcontractkit/chainlink-solana v1.1.2-0.20250228231533-c20246255e2b // indirect
github.com/smartcontractkit/chainlink-testing-framework/framework v0.5.8-0.20250225210020-fc215b29321e // indirect
github.com/smartcontractkit/grpc-proxy v0.0.0-20240830132753-a7e17fec5ab7 // indirect
github.com/smartcontractkit/mcms v0.12.2 // indirect
Expand Down
Loading

0 comments on commit 8c70b6b

Please sign in to comment.