From c3c2ebf3ed94b1cffe29143c30ae2607f3ef57ef Mon Sep 17 00:00:00 2001 From: Geert G <117188496+cll-gg@users.noreply.github.com> Date: Fri, 29 Aug 2025 16:18:57 +0100 Subject: [PATCH 1/4] DF-21815 Use seqNr as timestamp in secure mint report --- .../integration_tests/keystone/securemint_workflow_test.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/core/capabilities/integration_tests/keystone/securemint_workflow_test.go b/core/capabilities/integration_tests/keystone/securemint_workflow_test.go index 759294e80ca..a8ebbc35d14 100644 --- a/core/capabilities/integration_tests/keystone/securemint_workflow_test.go +++ b/core/capabilities/integration_tests/keystone/securemint_workflow_test.go @@ -29,7 +29,7 @@ func Test_runSecureMintWorkflow(t *testing.T) { ctx := t.Context() lggr := logger.Test(t) chainID := chainSelector(16015286601757825753) - seqNr := uint64(1) + seqNr := uint64(123456789) // setup the trigger sink that will receive the trigger event in the securemint-specific format triggerSink := framework.NewTriggerSink(t, "securemint-trigger", "1.0.0") @@ -79,7 +79,7 @@ func Test_runSecureMintWorkflow(t *testing.T) { blockNumber: blockNumber, }, } - h := newSecureMintHandler(expectedUpdates, blockNumber) // currently the secure mint aggregator uses the block number as timestamp + h := newSecureMintHandler(expectedUpdates, big.NewInt(int64(seqNr))) // currently the secure mint aggregator uses the reports' sequence number as timestamp waitForDataFeedsCacheReports(t, dataFeedsCache, h) } From b845d89d5ac7ec6f70cafeaf526813a202c6e1ee Mon Sep 17 00:00:00 2001 From: Geert G <117188496+cll-gg@users.noreply.github.com> Date: Mon, 1 Sep 2025 13:32:28 +0100 Subject: [PATCH 2/4] Use correct cl-common version --- go.mod | 2 +- go.sum | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/go.mod b/go.mod index a2ce3510e2c..a1ec59ed45f 100644 --- a/go.mod +++ b/go.mod @@ -84,7 +84,7 @@ require ( github.com/smartcontractkit/chainlink-ccip v0.1.1-solana.0.20250825135846-84f0d5167f8f github.com/smartcontractkit/chainlink-ccip/chains/solana v0.0.0-20250805210128-7f8a0f403c3a github.com/smartcontractkit/chainlink-ccip/chains/solana/gobindings v0.0.0-20250804184440-c0506474fc44 - github.com/smartcontractkit/chainlink-common v0.9.4-0.20250827130112-75577ebd4ed4 + github.com/smartcontractkit/chainlink-common v0.9.4-0.20250901094903-99c1fc59d32c github.com/smartcontractkit/chainlink-data-streams v0.1.2 github.com/smartcontractkit/chainlink-evm v0.3.2 github.com/smartcontractkit/chainlink-evm/gethwrappers v0.0.0-20250808121824-2c3544aab8f3 diff --git a/go.sum b/go.sum index baa75bea4ec..1997960f461 100644 --- a/go.sum +++ b/go.sum @@ -1086,8 +1086,8 @@ github.com/smartcontractkit/chainlink-ccip/chains/solana v0.0.0-20250805210128-7 github.com/smartcontractkit/chainlink-ccip/chains/solana v0.0.0-20250805210128-7f8a0f403c3a/go.mod h1:Ve1xD71bl193YIZQEoJMmBqLGQJdNs29bwbuObwvbhQ= github.com/smartcontractkit/chainlink-ccip/chains/solana/gobindings v0.0.0-20250804184440-c0506474fc44 h1:S00lus9RPu5JuxKRtGEET+aIUfASahHpTRV5RgPARSI= github.com/smartcontractkit/chainlink-ccip/chains/solana/gobindings v0.0.0-20250804184440-c0506474fc44/go.mod h1:xtZNi6pOKdC3sLvokDvXOhgHzT+cyBqH/gWwvxTxqrg= -github.com/smartcontractkit/chainlink-common v0.9.4-0.20250827130112-75577ebd4ed4 h1:wNYOYAiBc8YJ5hpSCk4t3AeKjcc4Bq134r/Ko9waeBk= -github.com/smartcontractkit/chainlink-common v0.9.4-0.20250827130112-75577ebd4ed4/go.mod h1:Kp54d3kbM4eGPEmJW7fcRWYUk6emXy+F5TEu5czFcH8= +github.com/smartcontractkit/chainlink-common v0.9.4-0.20250901094903-99c1fc59d32c h1:X3eSsAgLu/4MMdfnSrkvCAp1NHWG67FPT1cS7QV+jgY= +github.com/smartcontractkit/chainlink-common v0.9.4-0.20250901094903-99c1fc59d32c/go.mod h1:Kp54d3kbM4eGPEmJW7fcRWYUk6emXy+F5TEu5czFcH8= 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-common/pkg/monitoring v0.0.0-20250415235644-8703639403c7 h1:9wh1G+WbXwPVqf0cfSRSgwIcaXTQgvYezylEAfwmrbw= From 0db0f8f38444e75bee03bbf8fb8377b037c9cdef Mon Sep 17 00:00:00 2001 From: Geert G <117188496+cll-gg@users.noreply.github.com> Date: Mon, 1 Sep 2025 13:36:30 +0100 Subject: [PATCH 3/4] Run make tidy --- core/scripts/go.mod | 2 +- core/scripts/go.sum | 4 ++-- deployment/go.mod | 2 +- deployment/go.sum | 4 ++-- integration-tests/go.mod | 2 +- integration-tests/go.sum | 4 ++-- integration-tests/load/go.mod | 2 +- integration-tests/load/go.sum | 4 ++-- system-tests/lib/go.mod | 2 +- system-tests/lib/go.sum | 4 ++-- system-tests/tests/go.mod | 2 +- system-tests/tests/go.sum | 4 ++-- 12 files changed, 18 insertions(+), 18 deletions(-) diff --git a/core/scripts/go.mod b/core/scripts/go.mod index 75b39a7b64a..1853f40f63a 100644 --- a/core/scripts/go.mod +++ b/core/scripts/go.mod @@ -47,7 +47,7 @@ require ( 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.20250825135846-84f0d5167f8f - github.com/smartcontractkit/chainlink-common v0.9.4-0.20250828173926-fcae05ee4a0b + github.com/smartcontractkit/chainlink-common v0.9.4-0.20250901094903-99c1fc59d32c github.com/smartcontractkit/chainlink-data-streams v0.1.2 github.com/smartcontractkit/chainlink-deployments-framework v0.25.0 github.com/smartcontractkit/chainlink-evm v0.3.2 diff --git a/core/scripts/go.sum b/core/scripts/go.sum index 834b860ee4f..92e30e21b07 100644 --- a/core/scripts/go.sum +++ b/core/scripts/go.sum @@ -1530,8 +1530,8 @@ github.com/smartcontractkit/chainlink-ccip/chains/solana v0.0.0-20250805210128-7 github.com/smartcontractkit/chainlink-ccip/chains/solana v0.0.0-20250805210128-7f8a0f403c3a/go.mod h1:Ve1xD71bl193YIZQEoJMmBqLGQJdNs29bwbuObwvbhQ= github.com/smartcontractkit/chainlink-ccip/chains/solana/gobindings v0.0.0-20250805210128-7f8a0f403c3a h1:38dAlTPRUQHZus5dCnBnQyf/V4oYn0p2svWlbPgHDQ4= github.com/smartcontractkit/chainlink-ccip/chains/solana/gobindings v0.0.0-20250805210128-7f8a0f403c3a/go.mod h1:xtZNi6pOKdC3sLvokDvXOhgHzT+cyBqH/gWwvxTxqrg= -github.com/smartcontractkit/chainlink-common v0.9.4-0.20250828173926-fcae05ee4a0b h1:TeVcu9rFlXcFWhLyU+GZOtLXZQjMv3KQl5hqp4yOozY= -github.com/smartcontractkit/chainlink-common v0.9.4-0.20250828173926-fcae05ee4a0b/go.mod h1:Kp54d3kbM4eGPEmJW7fcRWYUk6emXy+F5TEu5czFcH8= +github.com/smartcontractkit/chainlink-common v0.9.4-0.20250901094903-99c1fc59d32c h1:X3eSsAgLu/4MMdfnSrkvCAp1NHWG67FPT1cS7QV+jgY= +github.com/smartcontractkit/chainlink-common v0.9.4-0.20250901094903-99c1fc59d32c/go.mod h1:Kp54d3kbM4eGPEmJW7fcRWYUk6emXy+F5TEu5czFcH8= 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-common/pkg/monitoring v0.0.0-20250415235644-8703639403c7 h1:9wh1G+WbXwPVqf0cfSRSgwIcaXTQgvYezylEAfwmrbw= diff --git a/deployment/go.mod b/deployment/go.mod index 6ab31d7fc33..0f11b6c2ba1 100644 --- a/deployment/go.mod +++ b/deployment/go.mod @@ -37,7 +37,7 @@ require ( github.com/smartcontractkit/chainlink-ccip v0.1.1-solana.0.20250825135846-84f0d5167f8f github.com/smartcontractkit/chainlink-ccip/chains/solana v0.0.0-20250805210128-7f8a0f403c3a github.com/smartcontractkit/chainlink-ccip/chains/solana/gobindings v0.0.0-20250805210128-7f8a0f403c3a - github.com/smartcontractkit/chainlink-common v0.9.4-0.20250828173926-fcae05ee4a0b + github.com/smartcontractkit/chainlink-common v0.9.4-0.20250901094903-99c1fc59d32c github.com/smartcontractkit/chainlink-deployments-framework v0.25.0 github.com/smartcontractkit/chainlink-evm v0.3.2 github.com/smartcontractkit/chainlink-evm/gethwrappers v0.0.0-20250827130336-5922343458be diff --git a/deployment/go.sum b/deployment/go.sum index 53d49162d7d..59cbe28054c 100644 --- a/deployment/go.sum +++ b/deployment/go.sum @@ -1256,8 +1256,8 @@ github.com/smartcontractkit/chainlink-ccip/chains/solana v0.0.0-20250805210128-7 github.com/smartcontractkit/chainlink-ccip/chains/solana v0.0.0-20250805210128-7f8a0f403c3a/go.mod h1:Ve1xD71bl193YIZQEoJMmBqLGQJdNs29bwbuObwvbhQ= github.com/smartcontractkit/chainlink-ccip/chains/solana/gobindings v0.0.0-20250805210128-7f8a0f403c3a h1:38dAlTPRUQHZus5dCnBnQyf/V4oYn0p2svWlbPgHDQ4= github.com/smartcontractkit/chainlink-ccip/chains/solana/gobindings v0.0.0-20250805210128-7f8a0f403c3a/go.mod h1:xtZNi6pOKdC3sLvokDvXOhgHzT+cyBqH/gWwvxTxqrg= -github.com/smartcontractkit/chainlink-common v0.9.4-0.20250828173926-fcae05ee4a0b h1:TeVcu9rFlXcFWhLyU+GZOtLXZQjMv3KQl5hqp4yOozY= -github.com/smartcontractkit/chainlink-common v0.9.4-0.20250828173926-fcae05ee4a0b/go.mod h1:Kp54d3kbM4eGPEmJW7fcRWYUk6emXy+F5TEu5czFcH8= +github.com/smartcontractkit/chainlink-common v0.9.4-0.20250901094903-99c1fc59d32c h1:X3eSsAgLu/4MMdfnSrkvCAp1NHWG67FPT1cS7QV+jgY= +github.com/smartcontractkit/chainlink-common v0.9.4-0.20250901094903-99c1fc59d32c/go.mod h1:Kp54d3kbM4eGPEmJW7fcRWYUk6emXy+F5TEu5czFcH8= 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-common/pkg/monitoring v0.0.0-20250415235644-8703639403c7 h1:9wh1G+WbXwPVqf0cfSRSgwIcaXTQgvYezylEAfwmrbw= diff --git a/integration-tests/go.mod b/integration-tests/go.mod index 0016074cb6c..1c1e99260ae 100644 --- a/integration-tests/go.mod +++ b/integration-tests/go.mod @@ -50,7 +50,7 @@ require ( github.com/smartcontractkit/chainlink-ccip v0.1.1-solana.0.20250825135846-84f0d5167f8f github.com/smartcontractkit/chainlink-ccip/chains/solana v0.0.0-20250805210128-7f8a0f403c3a github.com/smartcontractkit/chainlink-ccip/chains/solana/gobindings v0.0.0-20250805210128-7f8a0f403c3a - github.com/smartcontractkit/chainlink-common v0.9.4-0.20250828173926-fcae05ee4a0b + github.com/smartcontractkit/chainlink-common v0.9.4-0.20250901094903-99c1fc59d32c github.com/smartcontractkit/chainlink-deployments-framework v0.25.0 github.com/smartcontractkit/chainlink-evm v0.3.2 github.com/smartcontractkit/chainlink-evm/gethwrappers v0.0.0-20250827130336-5922343458be diff --git a/integration-tests/go.sum b/integration-tests/go.sum index 0c0adb8dbc1..30a700cf752 100644 --- a/integration-tests/go.sum +++ b/integration-tests/go.sum @@ -1518,8 +1518,8 @@ github.com/smartcontractkit/chainlink-ccip/chains/solana v0.0.0-20250805210128-7 github.com/smartcontractkit/chainlink-ccip/chains/solana v0.0.0-20250805210128-7f8a0f403c3a/go.mod h1:Ve1xD71bl193YIZQEoJMmBqLGQJdNs29bwbuObwvbhQ= github.com/smartcontractkit/chainlink-ccip/chains/solana/gobindings v0.0.0-20250805210128-7f8a0f403c3a h1:38dAlTPRUQHZus5dCnBnQyf/V4oYn0p2svWlbPgHDQ4= github.com/smartcontractkit/chainlink-ccip/chains/solana/gobindings v0.0.0-20250805210128-7f8a0f403c3a/go.mod h1:xtZNi6pOKdC3sLvokDvXOhgHzT+cyBqH/gWwvxTxqrg= -github.com/smartcontractkit/chainlink-common v0.9.4-0.20250828173926-fcae05ee4a0b h1:TeVcu9rFlXcFWhLyU+GZOtLXZQjMv3KQl5hqp4yOozY= -github.com/smartcontractkit/chainlink-common v0.9.4-0.20250828173926-fcae05ee4a0b/go.mod h1:Kp54d3kbM4eGPEmJW7fcRWYUk6emXy+F5TEu5czFcH8= +github.com/smartcontractkit/chainlink-common v0.9.4-0.20250901094903-99c1fc59d32c h1:X3eSsAgLu/4MMdfnSrkvCAp1NHWG67FPT1cS7QV+jgY= +github.com/smartcontractkit/chainlink-common v0.9.4-0.20250901094903-99c1fc59d32c/go.mod h1:Kp54d3kbM4eGPEmJW7fcRWYUk6emXy+F5TEu5czFcH8= 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-common/pkg/monitoring v0.0.0-20250415235644-8703639403c7 h1:9wh1G+WbXwPVqf0cfSRSgwIcaXTQgvYezylEAfwmrbw= diff --git a/integration-tests/load/go.mod b/integration-tests/load/go.mod index 6680f49b607..be766621c29 100644 --- a/integration-tests/load/go.mod +++ b/integration-tests/load/go.mod @@ -30,7 +30,7 @@ require ( github.com/smartcontractkit/chainlink-ccip v0.1.1-solana.0.20250825135846-84f0d5167f8f github.com/smartcontractkit/chainlink-ccip/chains/solana v0.0.0-20250805210128-7f8a0f403c3a github.com/smartcontractkit/chainlink-ccip/chains/solana/gobindings v0.0.0-20250805210128-7f8a0f403c3a - github.com/smartcontractkit/chainlink-common v0.9.4-0.20250828173926-fcae05ee4a0b + github.com/smartcontractkit/chainlink-common v0.9.4-0.20250901094903-99c1fc59d32c github.com/smartcontractkit/chainlink-deployments-framework v0.25.0 github.com/smartcontractkit/chainlink-evm v0.3.2 github.com/smartcontractkit/chainlink-evm/gethwrappers v0.0.0-20250827130336-5922343458be diff --git a/integration-tests/load/go.sum b/integration-tests/load/go.sum index 56a535df5fb..073a1650a08 100644 --- a/integration-tests/load/go.sum +++ b/integration-tests/load/go.sum @@ -1494,8 +1494,8 @@ github.com/smartcontractkit/chainlink-ccip/chains/solana v0.0.0-20250805210128-7 github.com/smartcontractkit/chainlink-ccip/chains/solana v0.0.0-20250805210128-7f8a0f403c3a/go.mod h1:Ve1xD71bl193YIZQEoJMmBqLGQJdNs29bwbuObwvbhQ= github.com/smartcontractkit/chainlink-ccip/chains/solana/gobindings v0.0.0-20250805210128-7f8a0f403c3a h1:38dAlTPRUQHZus5dCnBnQyf/V4oYn0p2svWlbPgHDQ4= github.com/smartcontractkit/chainlink-ccip/chains/solana/gobindings v0.0.0-20250805210128-7f8a0f403c3a/go.mod h1:xtZNi6pOKdC3sLvokDvXOhgHzT+cyBqH/gWwvxTxqrg= -github.com/smartcontractkit/chainlink-common v0.9.4-0.20250828173926-fcae05ee4a0b h1:TeVcu9rFlXcFWhLyU+GZOtLXZQjMv3KQl5hqp4yOozY= -github.com/smartcontractkit/chainlink-common v0.9.4-0.20250828173926-fcae05ee4a0b/go.mod h1:Kp54d3kbM4eGPEmJW7fcRWYUk6emXy+F5TEu5czFcH8= +github.com/smartcontractkit/chainlink-common v0.9.4-0.20250901094903-99c1fc59d32c h1:X3eSsAgLu/4MMdfnSrkvCAp1NHWG67FPT1cS7QV+jgY= +github.com/smartcontractkit/chainlink-common v0.9.4-0.20250901094903-99c1fc59d32c/go.mod h1:Kp54d3kbM4eGPEmJW7fcRWYUk6emXy+F5TEu5czFcH8= 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-common/pkg/monitoring v0.0.0-20250415235644-8703639403c7 h1:9wh1G+WbXwPVqf0cfSRSgwIcaXTQgvYezylEAfwmrbw= diff --git a/system-tests/lib/go.mod b/system-tests/lib/go.mod index efe183fa008..d02d7697a2f 100644 --- a/system-tests/lib/go.mod +++ b/system-tests/lib/go.mod @@ -30,7 +30,7 @@ require ( github.com/rs/zerolog v1.33.0 github.com/scylladb/go-reflectx v1.0.1 github.com/smartcontractkit/chain-selectors v1.0.67 - github.com/smartcontractkit/chainlink-common v0.9.4-0.20250828173926-fcae05ee4a0b + github.com/smartcontractkit/chainlink-common v0.9.4-0.20250901094903-99c1fc59d32c github.com/smartcontractkit/chainlink-deployments-framework v0.25.0 github.com/smartcontractkit/chainlink-evm v0.3.2 github.com/smartcontractkit/chainlink-evm/gethwrappers v0.0.0-20250827130336-5922343458be diff --git a/system-tests/lib/go.sum b/system-tests/lib/go.sum index 3467bc62c5e..1ec62799793 100644 --- a/system-tests/lib/go.sum +++ b/system-tests/lib/go.sum @@ -1506,8 +1506,8 @@ github.com/smartcontractkit/chainlink-ccip/chains/solana v0.0.0-20250805210128-7 github.com/smartcontractkit/chainlink-ccip/chains/solana v0.0.0-20250805210128-7f8a0f403c3a/go.mod h1:Ve1xD71bl193YIZQEoJMmBqLGQJdNs29bwbuObwvbhQ= github.com/smartcontractkit/chainlink-ccip/chains/solana/gobindings v0.0.0-20250805210128-7f8a0f403c3a h1:38dAlTPRUQHZus5dCnBnQyf/V4oYn0p2svWlbPgHDQ4= github.com/smartcontractkit/chainlink-ccip/chains/solana/gobindings v0.0.0-20250805210128-7f8a0f403c3a/go.mod h1:xtZNi6pOKdC3sLvokDvXOhgHzT+cyBqH/gWwvxTxqrg= -github.com/smartcontractkit/chainlink-common v0.9.4-0.20250828173926-fcae05ee4a0b h1:TeVcu9rFlXcFWhLyU+GZOtLXZQjMv3KQl5hqp4yOozY= -github.com/smartcontractkit/chainlink-common v0.9.4-0.20250828173926-fcae05ee4a0b/go.mod h1:Kp54d3kbM4eGPEmJW7fcRWYUk6emXy+F5TEu5czFcH8= +github.com/smartcontractkit/chainlink-common v0.9.4-0.20250901094903-99c1fc59d32c h1:X3eSsAgLu/4MMdfnSrkvCAp1NHWG67FPT1cS7QV+jgY= +github.com/smartcontractkit/chainlink-common v0.9.4-0.20250901094903-99c1fc59d32c/go.mod h1:Kp54d3kbM4eGPEmJW7fcRWYUk6emXy+F5TEu5czFcH8= 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-common/pkg/monitoring v0.0.0-20250415235644-8703639403c7 h1:9wh1G+WbXwPVqf0cfSRSgwIcaXTQgvYezylEAfwmrbw= diff --git a/system-tests/tests/go.mod b/system-tests/tests/go.mod index cb124faef0d..b1a6e308461 100644 --- a/system-tests/tests/go.mod +++ b/system-tests/tests/go.mod @@ -25,7 +25,7 @@ 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.4-0.20250828173926-fcae05ee4a0b + github.com/smartcontractkit/chainlink-common v0.9.4-0.20250901094903-99c1fc59d32c github.com/smartcontractkit/chainlink-data-streams v0.1.2 github.com/smartcontractkit/chainlink-deployments-framework v0.25.0 github.com/smartcontractkit/chainlink-evm/gethwrappers v0.0.0-20250827130336-5922343458be diff --git a/system-tests/tests/go.sum b/system-tests/tests/go.sum index 72ec2972bff..b42ed60ca63 100644 --- a/system-tests/tests/go.sum +++ b/system-tests/tests/go.sum @@ -1711,8 +1711,8 @@ github.com/smartcontractkit/chainlink-ccip/chains/solana v0.0.0-20250805210128-7 github.com/smartcontractkit/chainlink-ccip/chains/solana v0.0.0-20250805210128-7f8a0f403c3a/go.mod h1:Ve1xD71bl193YIZQEoJMmBqLGQJdNs29bwbuObwvbhQ= github.com/smartcontractkit/chainlink-ccip/chains/solana/gobindings v0.0.0-20250805210128-7f8a0f403c3a h1:38dAlTPRUQHZus5dCnBnQyf/V4oYn0p2svWlbPgHDQ4= github.com/smartcontractkit/chainlink-ccip/chains/solana/gobindings v0.0.0-20250805210128-7f8a0f403c3a/go.mod h1:xtZNi6pOKdC3sLvokDvXOhgHzT+cyBqH/gWwvxTxqrg= -github.com/smartcontractkit/chainlink-common v0.9.4-0.20250828173926-fcae05ee4a0b h1:TeVcu9rFlXcFWhLyU+GZOtLXZQjMv3KQl5hqp4yOozY= -github.com/smartcontractkit/chainlink-common v0.9.4-0.20250828173926-fcae05ee4a0b/go.mod h1:Kp54d3kbM4eGPEmJW7fcRWYUk6emXy+F5TEu5czFcH8= +github.com/smartcontractkit/chainlink-common v0.9.4-0.20250901094903-99c1fc59d32c h1:X3eSsAgLu/4MMdfnSrkvCAp1NHWG67FPT1cS7QV+jgY= +github.com/smartcontractkit/chainlink-common v0.9.4-0.20250901094903-99c1fc59d32c/go.mod h1:Kp54d3kbM4eGPEmJW7fcRWYUk6emXy+F5TEu5czFcH8= 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-common/pkg/monitoring v0.0.0-20250415235644-8703639403c7 h1:9wh1G+WbXwPVqf0cfSRSgwIcaXTQgvYezylEAfwmrbw= From 324228b251884824ef0443eb844a96f7ed0c575f Mon Sep 17 00:00:00 2001 From: Geert G <117188496+cll-gg@users.noreply.github.com> Date: Mon, 1 Sep 2025 13:38:44 +0100 Subject: [PATCH 4/4] add changeset --- .changeset/pink-cities-judge.md | 5 +++++ 1 file changed, 5 insertions(+) create mode 100644 .changeset/pink-cities-judge.md diff --git a/.changeset/pink-cities-judge.md b/.changeset/pink-cities-judge.md new file mode 100644 index 00000000000..fca02bd021f --- /dev/null +++ b/.changeset/pink-cities-judge.md @@ -0,0 +1,5 @@ +--- +"chainlink": patch +--- + +#updated Use seqNr as timestamp in sm report